@禅茶一味丿 关于Driver [] is not supported.的错误,请大家留心下你的Storage::disk('upload') 的upload字段是否与 filesystem下的自己生成驱动器的名称一致
2017-06-20
解决方案一、
laravel为了支持某些字符表情使用的是utf8mb4编码
升级mysql到5.7版本以上让他支持utf8mb4编码
解决方案二、
改database.php的配置项
//'charset' => 'utf8mb4',
//'collation' => 'utf8mb4_unicode_ci',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
laravel为了支持某些字符表情使用的是utf8mb4编码
升级mysql到5.7版本以上让他支持utf8mb4编码
解决方案二、
改database.php的配置项
//'charset' => 'utf8mb4',
//'collation' => 'utf8mb4_unicode_ci',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
2017-06-20
注意了!如果数据迁移提示 SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' alre
ady exists 这个错误, 在数据库中找不到 另外的两个要迁移的表(视频中的article,student),先将users的表先删除,然后按照链接下的方法操作一次https://zhuanlan.zhihu.com/p/25286161; 之后在运行命令迁移
ady exists 这个错误, 在数据库中找不到 另外的两个要迁移的表(视频中的article,student),先将users的表先删除,然后按照链接下的方法操作一次https://zhuanlan.zhihu.com/p/25286161; 之后在运行命令迁移
2017-06-20