我正在尝试使用ssh运行以下命令 vhost文件夹
php artisan optimize
php artisan config:cache
php artisan route:cache
但是我收到以下错误
[Symfony\Component\Debug\Exception\FatalErrorException]
'continue' not in the 'loop' or 'switch' context
我应该如何去做。 由于应用程序在localhost上正常运行。但在网络服务器上运行时,我收到的错误就像
file_put_contents(E:\wamp\www\test\server-migrate\megashopping_dk_files\storage\framework\views/30b1ec2c5a454e2084c2f1b072c9370d42561717.php): failed to open stream: No such file or directory
答案 0 :(得分:0)
我曾经遇到过这个错误。看起来像是权限问题。在/var/www
运行此命令
对于Ubuntu / Debian:
chown -R www-data:www-data test
如果是CentOS:
chown -R apache:apache test
希望这有帮助!