我在一个ovh网络服务器上的laravel deploiement有问题.后作
" There is no existing directory at /storage/logs and its not buildable: Permission denied"
" There is no existing directory at /storage/logs and its not buildable: Permission denied"
"There is no existing directory at /storage/logs and its not buildable: Permission denied "
"There is no existing directory at /storage/logs and its not buildable: Permission denied "
我有这个答案:
' There is no existing directory at /storage/logs and its not buildable: Permission denied'
我把所有文件放在777 chmod上,但我总是这个答案.
我做了一个 Laravel 项目。当我去部署它时,我收到以下消息:
View [back.home] not found.
Run Code Online (Sandbox Code Playgroud)
但我的观点是在我的 web.php 上定义的:
Route::get('back/home', 'Back\HomeController@index')->name('back.home');
Run Code Online (Sandbox Code Playgroud)
在我的 HomeController 上:
public function index()
{
return view('back.home');
}
Run Code Online (Sandbox Code Playgroud)
在部署之前,我做了composer和artisan命令:
php artisan cache:clearphp artisan route:clearphp artisan config:clearcomposer update我不知道为什么它不起作用。