我在Blue Host中的共享服务器上托管了一个项目,在AdminPostController的store和update方法中,我有一个函数将图像保存在public_path中,但是在尝试保存时会产生以下错误:< / p>
var id = what ever id is on state
这是我的商店方法:
Intervention\Image\Exception\NotWritableException
Can't write image data to path (/home4/directoryname/public/directoryname/uploads/posts/1516313973.jpg)
这是我的更新方法:
public function store(Request $request)
{
$posts = new Post();
$posts->title = $request->input('title');
$posts->slug = str_slug($request->get('title'));
$posts->content = $request->input('content');
$posts->category_id = $request->input('category_id');
$posts->user_id = $request->input('user_id');
$posts->blockquote = $request->input('blockquote');
$posts->blockquote_sign = $request->input('blockquote_sign');
$posts->save();
// Handle the client upload image id avatar
if($request->hasFile('avatar')){
$avatar = $request->file('avatar');
$filename = time() . '.' . $avatar->getClientOriginalExtension();
Image::make($avatar)->resize(500, 300)->save( public_path('uploads/posts/' . $filename ) );
$posts->avatar = $filename;
$posts->save();
}
return redirect()->route('contenido.index')
->with('success','Publicación creada correctamente!!!');
}
这是这些方法的路线资源:
public function update(Request $request, $id)
{
$updated = Post::findorFail($id);
$post = $request->all();
$updated->fill($post)->save();
if($request->hasFile('avatar')){
$avatar = $request->file('avatar');
$filename = time() . '.' . $avatar->getClientOriginalExtension();
Image::make($avatar)->resize(500, 300)->save( public_path('uploads/posts/' . $filename ) );
$updated->avatar = $filename;
$updated->save();
}
return redirect()->route('contenido.index')
->with('success','Publicación actualizada correctamente!!!');
}
我正在阅读不同的地方,目前我还没有找到解决方案,有人可以指导我吗?
这就是服务器上文件的结构。
答案 0 :(得分:1)
Laravel 5默认使用公用文件夹作为主目录,而我的服务器使用另一个。因此,我设置了另一个主目录。
我只需要执行以下操作:
1 - 编辑位于Laravel 5项目公共文件夹中的index.php。
2 - 找到以下行:
$app = require_once __DIR__.'/../bootstrap/app.php';
3 - 在该行下方添加以下行:
$app->bind('path.public', function() {
return __DIR__;
});
4 - 现在将项目的公共目录重命名为public_html。
对index.php文件的上述编辑将指示您的Laravel项目使用此文件的直接父目录作为项目的公共目录。
您可以在此出版物中找到更多信息: https://laracasts.com/discuss/channels/general-discussion/where-do-you-set-public-directory-laravel-5