Sa Roz
Sa Roz

Reputation: 63

unable to upload file greater than 2MB in laravel

I am doing a CMS in laravel and I am trying to upload a file in laravel more than 2MB and It displays that image failed to upload.

my controller code.

    $this->validate($request ,[
        'title' => 'required',
        'featured' => 'required|image',
        'content' => 'required',
        'category_id' => 'required',
        'tags' => 'required'
    ]);

    $featured = $request->featured;

    $featured_new_name = $featured->getClientOriginalName();

    $featured->move('uploads/posts', $featured_new_name);

    $post = Post::create([
        'title' => $request->title,
        'slug' => str_replace(' ', '-', $request->title),
        'featured' => 'uploads/posts/' . $featured_new_name,
        'content' => $request->content,
        'category_id' => $request->category_id,
        'user_id' => Auth::id()

    ]);   

     $post->tags()->attach($request->tags);

    Session::flash('success', 'Post Created Sucessfully.');

    return redirect()->route('posts');
    

Upvotes: 3

Views: 10896

Answers (4)

Jonathan Leon
Jonathan Leon

Reputation: 21

In my case I modified the php.ini file under CLI path, as well my php.ini file under my apache2.

You can find the php.ini file used with the following command:

# php --ini

Configuration File (php.ini) Path: /etc/php/8.0/cli
Loaded Configuration File:         /etc/php/8.0/cli/php.ini

Upvotes: 0

Hasan Hafiz Pasha
Hasan Hafiz Pasha

Reputation: 1432

Increasing the memory limit in php.ini is the best idea. if you just want to increase memory limit in this function, then use this code on your function.

ini_set('memory_limit', '4096M'); 

Upvotes: 3

Ragupathi
Ragupathi

Reputation: 599

echo phpinfo();

enter image description here

;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;

; Maximum allowed size for uploaded files
upload_max_filesize = 4M

Upvotes: 3

Dhruv Raval
Dhruv Raval

Reputation: 1583

Try increasing the following values in php.ini, for example:

memory_limit = 32M
upload_max_filesize = 24M
post_max_size = 32M

or check this link

Upvotes: 6

Related Questions