解决Whoops, looks like something went wrong

2017-06-24 15:30:17

安装laravel过程一切顺利,直到配置完虚拟主要要访问的时候发现竟然Whoops, looks like something went wrong. 不要急,下面我带领大家一步一步解决这个问题   这是由于访问laravel项目报错的,由于最新laravel默认没有开启调试模式,我们看到的信息比较少; 开启调试模式 打开项目目录下config/app.php修改:'debug' => env('APP_DEBUG', true),原本为'debug' => env('APP_DEBUG', false),   再次访问,发现报错信息变多了,重要是 No supported encrypter found. The cipher and / or ...

评论(0) 浏览(2557)

laravel 学习摘要

2017-06-24 15:23:19

  一. 路由的基本使用 一般我们写PHP代码,最基本的是要实现,URI->路由->控制器<->数据模型(model) (1)首先在route.php文件(当然也可以在其他自定义路径文件)里,如下添加一个路由: Route::get('test', function () { return "test route"; }); 1 2 3   1 2 3 (2)如果要将路由引导到控制器的话,就要这么写: Route::get('test', 'TestController@test'); 1   1 当然,你得先定义一个...

评论(0) 浏览(2550)

The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths

2017-04-27 11:51:45

composer install命令出错--> [ComposerDownloaderTransportException] Your configuration does not allow connections to http://packagist.phpcomposer.com/packages.json. See https://getcom poser.org/doc/06-config.md#secure-http for details. 解决方法:因为镜像使用用的是http,而原地址是需要https,所以配置下关掉https就好了。 { "config": { "secure-http": false ...

评论(0) 浏览(2957)

Powered by PHP 学习者(mail:517730729@qq.com)

原百度博客:http://hi.baidu.com/ssfnadn

备案号:闽ICP备17000564号-1

开源中国 PHPCHINA