Laravel相关的一些故障解决
禁止全局csrf认证
在app/http/kernel.php中,$middleware表示全局中间件,而$routemiddleware表示针对某个路由的中间件,所以只需要把csrf在$middleware中注释掉,然后在$routemiddleware中添加'csrf' => 'app\http\middleware\verifycsrftoken'
如果要在某个路由上使用就这样:
route::group(['middleware' => 'csrf'], function(){ // csrf保护的接口 route::get('/', 'homecontroller@index'); }
处理上传文件
$file = input::file('upload_file");// 获取上传文件对象 $file->isvalid() // 检验文件是否有效 $file->getclientoriginalname(); // 获取文件原名 $file->getfilename(); // 获取上传后缓存的文件的名字 $file->getrealpath(); // 获取缓存文件的绝对路径 $file->getclientoriginalextension();// 获取上传文件的后缀 $file->getmimetype(); // 获取上传文件的mime类型 $file->getsize(); // 获取上传文件的大小
手动清理配置缓存
php artisan config:cache
插入数据的时候出现massassignmentexception in laravel错误
需要给数据表设置可访问的字段,在model里面
protected $fillable = array('字段1', '字段2');
php artisan db:seed出现[reflectionexception] claxx xxxtableseeder dows not exist错误
这是因为新增加了文件但是composer没有感知到,需要先执行composer dump-autoload
定义/修改字段类型为timestamp时出现错误:”unknown column type “timestamp” requested.”
按照[how do i make doctrine support timestamp columns?]的做法,目前最简单的方式是直接用db::statement()来写sql语句
post数据的时候出现the payload is invalid
我遇到这个情况是因为在做复杂的表单提交,直接提取x-xsrf-token的值,但是由于没有转移,导致后端token揭秘失败
保存model的时候出现错误:missing argument 2 for illuminate\database\eloquent\model::setattribute()
一般是model的几个属性没有设正确,检查这几个值incrementing/timestamps/primarykey/fillable
队列出现cannot initialize a multi/exec transaction over aggregate connections
升级到最新版laravel吧,然后将redis的扩展切换到phpredis,laravel5.3之前自带的predis不支持redis的sentinel,并且有些redis操作强依赖于predis的事务操作,各种纠结,最后都不能成功。或者自己写
class ‘symfony\bridge\psrhttpmessage\factory\httpfoundationfactory' not found
偶尔安装了某些个第三方库会出现这种幺蛾子,可以用这种方式解决composer require symfony/psr-http-message-bridge
更新表时出现ah00052: child pid 71 exit signal segmentation fault (11)
原因可能是没有设置主键而直接在该表上面更新数据,导致orm不知道到底该更新谁。并且laravel不支持复合主键。
error while reading line from server
predis需要设置read_write_timeout=0或者-1,特别是daemon任务,最好设置不超时
php fatal error: uncaught exception 'reflectionexception' with message 'class log does not exist' in /users/freek/dev/laravel/vendor/laravel/framework/src/illuminate/container/container.php
出现于5.2版本中,原因是.env文件中的配置的值,中间存在空格,如果中间有空格,需要将值用双引号包起来
class env does not exist / class request does not exist
通常出现在框架还未加载完成就报错,但是在处理错误的时候却使用了env()/request()这个功能,导致没有打印真实的错误。处理方式,一是不要使用app()->environment('...'),而是检查.env文件中是否有错误,例如包含空格的值,必须用双引号包围。我在自定义exceptionhandler中遇到过几次
the given data failed to pass validation
认证出错却不知道具体错在哪里并且状态码是500,如果有用dingo api,那么注意request不要继承use illuminate\foundation\http\formrequest而应该是use dingo\api\http\formrequest
call to undefined method sethidden
注意command的主逻辑不是fire而应该是handle
启动时报错unknown: failed to open stream: no such file or directory in unknown on line 0
可能是错误地删除了server.php文件,可以直接自己写一个:
/** * laravel - a php framework for web artisans * * @package laravel * @author taylor otwell <taylor@laravel.com> */ $uri = urldecode( parse_url($_server['request_uri'], php_url_path) ); // this file allows us to emulate apache's "mod_rewrite" functionality from the // built-in php web server. this provides a convenient way to test a laravel // application without having installed a "real" web server software here. if ($uri !== '/' && file_exists(__dir__.'/public'.$uri)) { return false; } require_once __dir__.'/public/index.php';
composer install时报错: please provide a valid cache path
需要手动创建缓存目录,在storage/framwork下面新建sessions、views、cache文件夹即可
总结
到此这篇关于laravel相关的一些故障解决的文章就介绍到这了,更多相关laravel故障解决内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: php隐藏手机号中间四位的方法