问题描述
运行时
php 工匠密钥:生成
我可以在我的 shell 中看到生成的密钥,但 app.php 中的变量 'key' 仍然为空.
使用 windows-apache-php 5.4 - mysql 在本地主机上运行.
在使用 laravel 4 beta 版本之前从未遇到过这个问题.
遇到了同样的问题...
- 打开app.php
- 删除YourSecretKey!!!"条目
- 运行 'php artisan key:generate'
在控制台中显示了一个键,但在 app.php
中什么都没有!
解决办法是……不像Laravel 3,不要删除默认的YourSecretKey
!!!在 app.php
中,只需运行命令即可.
希望这会有所帮助.
巴格瓦
When running
I can see the generated key in my shell, but the variable 'key' in app.php remains empty.
Running on localhost with windows-apache-php 5.4 - mysql.
Never had this problem before with laravel 4 beta version.
Had the same problem ...
Showed me a key in the console, but nothing in app.php
!
Solution is ... unlike Laravel 3, don't delete the default YourSecretKey
!!! in app.php
, just run the command and it will work.
Hope this helps.
Bagwaa
这篇关于laravel 4:没有用工匠生成密钥的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!