PHP
wuleixxh
这个作者很懒,什么都没留下…
展开
-
Laravel 利 用事件广播和pusher开发实时通知系统的
一、如果抛出unkonw auth_key异常则需要配置 配置config/broadcasting.php 'pusher' => [ 'driver' => 'pusher', 'key' => env('PUSHER_KEY'), 'secret' => env('PUS原创 2017-08-24 17:44:25 · 1449 阅读 · 0 评论 -
Laravel Passport oauth2.0 验证不同表用户修改
如果不用Laravel自带的User表来做权限用户表,即不用默认的guard,需要修改vender\laravel\passport\src\RouteRegister.php中的对应路由函数,['middleware' => ['web', 'auth']],将auth改为auth:newGuard. $this->router->group(['middleware' => ['原创 2017-08-23 22:34:57 · 2042 阅读 · 0 评论 -
lnmp 配置laravel
首先去下载 lnmp ,然后根据需要进行安装。 要记录PHP日志 1.修改/usr/local/php/etc/php-fpm.conf中配置 没有则增加,在[www]下增加 catch_workers_output = yes 2.修改/usr/local/php/etc/php.ini中配置,没有则增加 error_log = "/usr/local/lnmp/php/var/l原创 2017-09-16 06:01:25 · 393 阅读 · 0 评论 -
在lnmp上运行和搭建laravel项目
在搭建和运行laravel项目之前你必须要有lnmp的环境,其中我这里使用的linux是redhat的,在我的博客中有介绍如何搭建lnmp,大家可以去看一下。 首先在有了lnmp环境的条件下,大家先打开自己的nginx服务器,首先需要在linux中安装composer curl -sS https://getcomposer.org/installer | php mv转载 2017-09-16 13:19:13 · 394 阅读 · 0 评论