好的,所以我正在尝试迁移我的数据库,我已经有了mysql,其他一切设置正确。 但当我进入我的SSH控制台并输入“php artisan migrate:install”时,我收到以下错误消息:
PHP Fatal error: Class 'Laravel\Bundle' not found in /Solder/laravel/cli/artisan.php on line 12
所以我去artisan.php找出问题是什么,这是第1-12行中的代码
<?php namespace Laravel\CLI; defined('DS') or die('No direct script access.');
use Laravel\Bundle;
use Laravel\Config;
use Laravel\Request;
/**
* Fire up the default bundle. This will ensure any dependencies that
* need to be registered in the IoC container are registered and that
* the auto-loader mappings are registered.
*/
Bundle::start( 'Bundle' );
有什么想法吗? 我也有/ Solder /设置为根文件,所以Laravel \ Bundle应该是/Solder/Laravel/bundle.php对吗? 此外,如果您需要任何其他信息,请在答案中提及,如果可以,我会提供。