一、laravel5.6 Call to a member function format() on stringphp
這個出如今使用模型save()或者update()的使用linux
解決:在對應得模型文件裏面laravel
public function fromDateTime($value)app
{composer
return empty($value) ? $value : $this->getDateFormat();ide
}this
二、出現下面的錯誤,是使用create批量添加報的錯編碼
解決辦法:在對應得模型中添加spa
protected $fillable = ['name', 'age', 'sex'];orm
三、出現如下問題
Sorry, the page you are looking for could not be found.
解決:通常是沒加路由,或者路由錯誤,在或者就是沒有模板
四、The page has expired due to inactivity.Please refresh and try again.
解決方法:{{ csrf_field() }} 表單驗證
五、在linux下面app/public(若是上傳文件在這個目錄)/stotage 都給權限
六、使用composer下面安裝第三方類庫的時候出現下面問題
[RuntimeException]
/home/wwwroot/lar.simengphp.cn/vendor/psr/http-message does not exist and could not be created.
解決方法:composer dump-autoload
[ErrorException]
file_put_contents(/home/wwwroot/lar.simengphp.cn/vendor/composer/autoload_namespaces.php): failed
to open stream: Permission denied
解決方法:
以上都是linux下權限問題,項目vender沒有權限
r:read就是讀權限 --數字4表示
w:write就是寫權限 --數字2表示
x:excute就是執行權限 --數字1表示
讀、寫、運行三項權限能夠用數字表示,就是r=4,w=2,x=1。因此,-rw-r--r--用數字表示成644。
七、Class config does not exist in
緣由是個人.env裏面的參數設置有空格。。。有空格的參數必定要用雙引號包起來
八、1071 Specified key was too long; max key length is 1000 bytes (SQL: alter table `db_u
sers` add unique `users_email_unique`(`email`))
Laravel 5.4+默認使用utf8mb4字符編碼,而不是以前的utf8編碼。所以運行php artisan migrate 會出現以下錯誤:
你能夠經過調用 AppServiceProvider 中的 Schema::defaultStringLength 方法來配置它
/**
* 引導任何應用程序服務。
*
* @return void
*/
public function boot()
{
Schema::defaultStringLength(191);
}