Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter EB

    (@eiabergm)

    If I use the browser upload (not flash), it just stops when the file is uploaded. No errors, nothing, with > 8M files.

    Thread Starter EB

    (@eiabergm)

    So … to be absolutely sure, I just re-installed the WP, then added following to the .htaccess:

    php_value upload_max_filesize 81388608
    php_value post_max_size 161388608
    php_value max_execution_time 1500
    php_value max_input_time 1500
    php_value memory_limit 161388608
    # BEGIN WordPress
    
    # END WordPress
    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>

    The problem appears, so it can not be related to any plugin or corrupted WP-files.

    Thread Starter EB

    (@eiabergm)

    Please… there are many unsolved threads about this problem. What could cause this?

    Here is one thread, which leads to another threads:

    Thread Starter EB

    (@eiabergm)

    Thread Starter EB

    (@eiabergm)

    Problem solved! Finally.

    So. The key was to modify the php.ini file. On my server I can make custom .ini files to a folder _custom_php_settings.

    What I did not know was, that the settings have to be set in every folder, where they are needed. In this case the file called upload.php is processing the uploaded files.

    Upload.php can be found from wp-admin -folder, so I copied the new .ini -settings there. Problem solved. The same should work with the .htaccess -file.

    My php.ini file:

    post_max_size = 100M
    upload_max_filesize = 50M
    memory_limit = 100M

    :e

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Uploading fails to HTTP Error or login screen with files over 8MB.’ is closed to new replies.