再接着上面的那个
后来百度的时候在这【https://www.cnblogs.com/baker95935/p/7668776.html】看到了这么一句“前提是检查完了
.env和config/database.php”
于是我把"config/database.php"中的配置信息改成跟.env中的一样的,就可以了
后来百度的时候在这【https://www.cnblogs.com/baker95935/p/7668776.html】看到了这么一句“前提是检查完了
.env和config/database.php”
于是我把"config/database.php"中的配置信息改成跟.env中的一样的,就可以了
2018-03-24
接着上面的那个
我也卡了很久,后来折腾了一会终于有点反应了,报错如下
[Illuminate\Database\QueryException]
SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using pas
sword: NO) (SQL: select * from information_schema.tables where table_schema
= laravel_test1 and table_name = migrations)
我也卡了很久,后来折腾了一会终于有点反应了,报错如下
[Illuminate\Database\QueryException]
SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using pas
sword: NO) (SQL: select * from information_schema.tables where table_schema
= laravel_test1 and table_name = migrations)
2018-03-24
关于前面有个问题:使用命令hp artisan migrate,没有效果,也不报错,什么都没有,无法完成迁移
注意看下端口啊,然后修改一下.env中配置什么的,然后如果有报错了,就好弄了
注意看下端口啊,然后修改一下.env中配置什么的,然后如果有报错了,就好弄了
2018-03-24
composer config -g repo.packagist
会提示
There is no packagist repository defined
正确的写法是
composer config -gl
[repositories.packagist.org.url] https://packagist.phpcomposer.com
会提示
There is no packagist repository defined
正确的写法是
composer config -gl
[repositories.packagist.org.url] https://packagist.phpcomposer.com
2018-03-18
最赞回答 / 故事的角色1757
还需要安装依赖文件,根目录下执行命令 : composer install, 但是如果PHP版本太低会报错laravel framework需要高版本的PHP,升级相应PHP版本即可!
2018-03-17