How to enable large file upload
System administration

How to enable large file upload

March 2, 2013

If you are reading this, your web server (with PHP as back-end technology) probably won’t upload larger files. Like 30MB or more. For this issue exist an easy solution. Just follow the following four steps:

  1. In the root folder of your website create a .htaccess file
  2. Inside this file, insert the following text (which will raise the upload file size limit to 50MB)
    php_value upload_max_filesize 50M
    php_value post_max_size 50M
    php_value max_execution_time 500
    php_value max_input_time 500
    
  3. Done (In fact there is only two steps 🙂 )

Happy file uploading 🙂

0

Follow deanpodgornik on

Comments (0)

Leave a Reply

Your email address will not be published. Required fields are marked *