• Resolved alexnl

    (@alexnl)


    I was having trouble uploading anything larger than 5MB. After doing some research I found out I needed to increase my max_execution_time in php.ini

    I found the following solution:

    Add to .htaccess the following lines and adjust the numbers as needed.

    <IfModule mod_php5.c>
    php_value post_max_size 200M
    php_value upload_max_filesize 200M
    php_value memory_limit 300M
    php_value max_execution_time 259200
    php_value max_input_time 259200
    php_value session.gc_maxlifetime 1200
    </IfModule>

    After this I was able upload large files without any issues.

    http://wordpress.org/plugins/simple-dropbox-upload-form/

  • The topic ‘Filesize upload issues [FIX]’ is closed to new replies.