php artisan 命令未生效
php artisan commands not taking effect
当我键入 php artisan "command".
时,没有一个命令起作用
Last login: Mon Feb 16 20:17:50 on ttys000
Pro:~ nzrv$ cd ~/Sites/t
Pro:t nzrv$ php artisan --version
Pro:t nzrv$ php artisan make:controller PagesController
Pro:t nzrv$ php artisan
Pro:t nzrv$
日志文件为空,与 artisan 无关。
问题不存在于新安装的应用程序中。当我 运行 作曲家更新命令时输出:
Loading composer repositories with package information
Updating dependencies (including require-dev)
Nothing to install or update
Generating autoload files
Script php artisan clear-compiled handling the post-update-cmd event returned with an error
[RuntimeException]
Error Output:
update [--prefer-source] [--prefer-dist] [--dry-run] [--dev] [--no-dev] [--lock] [--no-plugins] [--no-custom-installers] [--no-autoloader] [--no-scripts] [--no-progress] [--with-dependencies] [-v|vv|vvv|--verbose] [-o|--optimize-autoloader] [--ignore-platform-reqs] [--prefer-stable] [--prefer-lowest] [packages1] ... [packagesN]
作曲家似乎无法 运行 clear-compiled 因为无法正常工作 artisan 而且我不知道去哪里找。
如有任何帮助,我们将不胜感激。
我无法发表评论。所以,注意这些事情:
- 您是否正在执行 laravel 文件夹中的命令?
- 您如何尝试再次执行
composer install
?
- 是否从 Laravel 的旧版本更新? http://laravel.com/docs/master/upgrade
这是配置文件的问题。
我已经安装了 breadcrumbs 包,它的配置导致了它。
return array(
'separator' => ' <img src="'.asset('img/breadcrumbsDivider.gif').'"> ',
'view' => 'frontend/breadcrumbs',
'min_depth' => 2,
'last_linkable' => false
);
我用下面的代码更改了它,它开始工作了。
return array(
'separator' => ' <img src="/img/breadcrumbsDivider.gif"> ',
'view' => 'frontend/breadcrumbs',
'min_depth' => 2,
'last_linkable' => false
);
我的申请没有区别,但 artisan。
今天我在 运行 artisan 命令时遇到了这个问题。在搜索不让 artisan 命令被执行的问题时,发现出于测试目的,我的路由文件夹中 web.php 文件中只存在 exit()
。禁用 exit()
后,一切正常。我认为这是一个奇怪的问题,但这解决了我的问题。
当我键入 php artisan "command".
时,没有一个命令起作用Last login: Mon Feb 16 20:17:50 on ttys000
Pro:~ nzrv$ cd ~/Sites/t
Pro:t nzrv$ php artisan --version
Pro:t nzrv$ php artisan make:controller PagesController
Pro:t nzrv$ php artisan
Pro:t nzrv$
日志文件为空,与 artisan 无关。
问题不存在于新安装的应用程序中。当我 运行 作曲家更新命令时输出:
Loading composer repositories with package information
Updating dependencies (including require-dev)
Nothing to install or update
Generating autoload files
Script php artisan clear-compiled handling the post-update-cmd event returned with an error
[RuntimeException]
Error Output:
update [--prefer-source] [--prefer-dist] [--dry-run] [--dev] [--no-dev] [--lock] [--no-plugins] [--no-custom-installers] [--no-autoloader] [--no-scripts] [--no-progress] [--with-dependencies] [-v|vv|vvv|--verbose] [-o|--optimize-autoloader] [--ignore-platform-reqs] [--prefer-stable] [--prefer-lowest] [packages1] ... [packagesN]
作曲家似乎无法 运行 clear-compiled 因为无法正常工作 artisan 而且我不知道去哪里找。
如有任何帮助,我们将不胜感激。
我无法发表评论。所以,注意这些事情:
- 您是否正在执行 laravel 文件夹中的命令?
- 您如何尝试再次执行
composer install
? - 是否从 Laravel 的旧版本更新? http://laravel.com/docs/master/upgrade
这是配置文件的问题。 我已经安装了 breadcrumbs 包,它的配置导致了它。
return array(
'separator' => ' <img src="'.asset('img/breadcrumbsDivider.gif').'"> ',
'view' => 'frontend/breadcrumbs',
'min_depth' => 2,
'last_linkable' => false
);
我用下面的代码更改了它,它开始工作了。
return array(
'separator' => ' <img src="/img/breadcrumbsDivider.gif"> ',
'view' => 'frontend/breadcrumbs',
'min_depth' => 2,
'last_linkable' => false
);
我的申请没有区别,但 artisan。
今天我在 运行 artisan 命令时遇到了这个问题。在搜索不让 artisan 命令被执行的问题时,发现出于测试目的,我的路由文件夹中 web.php 文件中只存在 exit()
。禁用 exit()
后,一切正常。我认为这是一个奇怪的问题,但这解决了我的问题。