0

I upload my project in My hosting service, this is the link to My web site. please make a lock to now my problem http://paleoamerican.fr/web/app.php/. This is the tree in the host !

-This is public_html folder that I create to put all folder and file except web folder

Please help Me, they will be work tomorrow. Thanks.

M-BNCH
  • 393
  • 1
  • 3
  • 18

1 Answers1

0

If you move the www folder then you must update accordingly the paths that are in app.php. In this case

$loader = require_once __DIR__.'/../app/bootstrap.php.cache';
// ....
require_once __DIR__.'/../app/AppKernel.php';

becomes

$loader = require_once __DIR__.'/../public_html/app/bootstrap.php.cache';
// ....
require_once __DIR__.'/../public_html/app/AppKernel.php';

Follows the documentation in this regard.

Federkun
  • 36,084
  • 8
  • 78
  • 90