Я хочу развернуть свой Laravel-Project, но он всегда показывает мне эту ошибку:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at admin to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Моя структура сервера выглядит так:
/
/protected --> All Files and Folders within the project (+ /node_modules & /vendor) except the /public-folder
/public_html --> all Files and Folders within the /public-folder
Я уже изменил разрешения для/ storage-folder и я уже изменили пути в /index.php на
require __DIR__.'/../protected/vendor/autoload.php';
и
$app = require_once __DIR__.'/../protected/bootstrap/app.php';
Любойидеи?