Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Call to a member function getClientOriginalName() on a non-object

I'm trying to make an image uploader, but it always give me this error

Call to a member function getClientOriginalName() on a non-object

here is my code controller code

public function uploadImageProcess(){

    $destinatonPath = '';
    $filename = '';

    $file = Input::file('image');
    $destinationPath = public_path().'/assets/images/';
    $filename = str_random(6).'_'.$file->getClientOriginalName();
    $uploadSuccess = $file->move($destinationPath, $filename);

    if(Input::hasFile('image')){
        $images = new Images;

        $images->title = Input::get('title');
        $images->path = '/assets/images/' . $filename;
        $image->user_id = Auth::user()->id;

        Session::flash('success_insert','<strong>Upload success</strong>');
        return Redirect::to('user/dashboard');
    }
}

and here is the upload form

<form role="form" action="{{URL::to('user/poster/upload_process')}}" method="post">
    <label>Judul Poster</label>
    <input class="form-control" type="text" name="title">
    <label>Poster</label>
    <input class="" type="file" name="image"><br/>
    <input class="btn btn-primary" type="submit" >
</form>

what's wrong with my code?

like image 325
Spadaboyz Avatar asked Nov 18 '13 05:11

Spadaboyz


3 Answers

You miss enctype attribute in your form markup.

Either do this

<form role="form" action="{{URL::to('user/poster/upload_process')}}" method="post" enctype="multipart/form-data">
...
</form>

or this...

{{ Form::open(array('url' => 'user/poster/upload_process', 'files' => true, 'method' => 'post')) }}
// ...
{{ Form::close() }}
like image 117
Andreyco Avatar answered Oct 19 '22 06:10

Andreyco


This is just because you forget to write enctype="multipart/form-data" in <form> tag.

This error happen just when you forget this:

<form class="form form-horizontal" method="post" action="{{ route('articles.store') }}" enctype="multipart/form-data">
like image 31
hamidreza ghanbari Avatar answered Oct 19 '22 04:10

hamidreza ghanbari


These code are right, but you didn't check values of returns of Input::file('image'). I think returns value may be is not a correct object or your class Input does not have a public function name is getClientOriginalName.

Code:

$file = Input::file('image');
var_dump($file); // if return a correct object. you will check your class Input.

Good luck.

like image 1
user3003394 Avatar answered Oct 19 '22 04:10

user3003394