Laravel - Artisan优化的错误

时间:2017-02-08 13:47:18

标签: php laravel ubuntu laravel-5 webserver

我正在尝试使用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

1 个答案:

答案 0 :(得分:0)

我曾经遇到过这个错误。看起来像是权限问题。在/var/www运行此命令 对于Ubuntu / Debian:

chown -R www-data:www-data test

如果是CentOS:

chown -R apache:apache test

希望这有帮助!