使用composer init 报错The Process class relies on proc_open, which is not available on your PHP installation.
2017-05-31
disk()参数名字要和 filesystems.php中添加的配置项 名字要一致 eg:
'upFiles'=>[
'driver'=>'local',
'root'=>storage_path('app/uploads'),
]
那你就得 Storage::disk('upFiles')->put($upFile,file_get_contents($path));
'upFiles'=>[
'driver'=>'local',
'root'=>storage_path('app/uploads'),
]
那你就得 Storage::disk('upFiles')->put($upFile,file_get_contents($path));
2017-05-29
我只导入了2个表 另外一个密码的没有 谁发一下 SQLSTATE[42S02]: Base table or view not found: 1146 Table 'laravel.password_resets' doesn't exist (SQL: delete from `password_resets` where `email` = 47804236@qq.com)
2017-05-21