简体   繁体   English

Laravel 页面不断加载

[英]Laravel Page Continuously Loading

I have downloaded my laravel application (careers) from cpanel and placed it in htdocs folder, when i browse localhost/careers/login the page continuously start loading.我已经从 cpanel 下载了我的 Laravel 应用程序(职业)并将其放置在 htdocs 文件夹中,当我浏览localhost/careers/login页面时,该页面不断开始加载。 There is no error reported in the logs folder.日志文件夹中没有报告错误。

I have tried all the possible commands and steps, but still same issue.我已经尝试了所有可能的命令和步骤,但仍然是同样的问题。

.env File: .env 文件:

APP_NAME="VTBPO HRM"
APP_ENV=local
APP_KEY=base64:zipDoVJPTWnMlivfnxyp6MTeqE2UanRCEaXZsWwm7pA=
APP_DEBUG=true
APP_URL=localhost

Commands/Steps I Followed:我遵循的命令/步骤:

    php artisan config:cache // clear config cache
    php artisan config:clear // clear config cache
    php artisan cache:clear // clear cache
    php artisan route:cache // clear route cache
    php artisan view:clear // clear view cache

    chmod 777 -R storage/
    php -S localhost:8000 -t public/

I have tried all these steps but still facing the same issue, i will appreciate if someone could guide me through this.我已经尝试了所有这些步骤,但仍然面临同样的问题,如果有人能指导我完成这个问题,我将不胜感激。

I think it for permission issues我认为这是许可问题

sudo chmod -R 777 your_project_directory/storage 

and

sudo chown -R www-data:www-data you_project_directory

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM