使用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` = [email protected])
2017-05-21