• filipmkd

    (@filipmkd)


    When Uploading a media file I am getting HTTP error? How should I fix that? I’m currently running v3.9.1

Viewing 7 replies - 1 through 7 (of 7 total)
  • Mark Ratledge

    (@songdogtech)

    Thread Starter filipmkd

    (@filipmkd)

    This looks it’s kinda old post. Hmmm…. I do have the same version installed on my test website, and there the upload is working correctly. I did try to upload the same image on both website and on the test website was working perfectly.

    Also, I notice that some of the images do upload and some don’t

    Thread Starter filipmkd

    (@filipmkd)

    I think I may have find reason why… Max limit on the test site is 8MB on the other is 2MB.

    Mark Ratledge

    (@songdogtech)

    Yes, it’s an old post, but still perfectly relevant.

    Max limit on the test site is 8MB on the other is 2MB.

    That will cause an error.

    Thread Starter filipmkd

    (@filipmkd)

    How could I change that?

    Mark Ratledge

    (@songdogtech)

    In php.ini or .htaccess.

    php.ini:

    max_execution_time = 120
    max_input_time = 120
    memory_limit = 64M
    post_max_size = 64M
    upload_max_filesize = 64M

    htaccess:

    php_value max_execution_time 120
    php_value max_input_time  120
    php_value memory_limit  64M
    php_value post_max_size  64M
    php_value upload_max_filesize  64M
    Thread Starter filipmkd

    (@filipmkd)

    Hmmm still getting HTTP error.

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘HTTP error’ is closed to new replies.