• I receiving the following error on upload after large files reach 100%. They upload to the server but do not display as completed and wont attach to emails via your email plugin.

    I’m on a godaddy cPanel server with the following settings in my php.ini file:

    upload_max_filesize = 2500M
    post_max_size = 2600M
    memory_limit = 2700M
    file_uploads = On
    set_time_limit = 90000
    max_input_time = 90000
    max_execution_time = 90000
    max_input_vars = 10000

    I also have allowed all Mime file types and extensions for the files I’m trying to upload so that isn’t the issue:

    .psd .tif .tiff .cr2 .nef .psb

    I looked into this for a few days and haven’t found a complete fix. I have managed to edit the htaccess file with the following to allow the file to reach 100% and bypass WordPress limits for large files and upload security.

    AddType x-mapp-php5 .php

    <IfModule mod_security.c>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </IfModule>

    # Exclude the file upload and WP CRON scripts from authentication
    <FilesMatch “(async-upload\.php|wp-cron\.php|xmlrpc\.php)$”>
    Satisfy Any
    Order allow,deny
    Allow from all
    Deny from none
    </FilesMatch>

    The error now only occurs when the file has reached 100% and actually uploads to the server. That leads me to believe that the problem is just a prompt in the plugin that I can not bypass. Even though the file uploads I’m unable to download because the chunking and is going to give clients huge issues when trying to upload their files and are prompted with an error.

    WordPress version: 4.3.1
    Gravity forms version: 1.9.13
    Gravity forms advanced uploader version: 1.4

    Thanks

    https://wordpress.org/plugins/gravity-forms-advanced-file-uploader/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter dylanozanich

    (@dylanozanich)

    Seems like its happening with the normal gravity forms uploader prompting the error message:

    Error: -200, Message: HTTP Error., File: test.psd

    Guess its not just advanced uploader. Any suggestions would be great.

    Thread Starter dylanozanich

    (@dylanozanich)

    Error is happening through regular dashboard media uploader. Problem isn’t with the plugin at all.

    Incase anybody has the same problem with wordpress I’ll post the fix when I solve it.

    Currently my site blew up with this issue. Very frustrating.

    Plugin Author ben.moody

    (@benmoody)

    Hi

    I can only speak from the plugin aspect but the error you are receiving occurs when then plupload script attempts to upload file chunks to the a tmp folder on the server.

    Gravity forms does the same thing, creating a subfolder in the uploads folder.

    If you are having this issue the first thing i would do is ensure that all sub folders in the uploads folder are writable, you can contact you host to help with this

    I have this same issue – It uploads to 100%, then kicks back the error HTTP Error. Upload URL might be wrong or doesn’t exist. Even though I see it on the server. It doesn’t seem to happy too often with smaller files but larger ones it does. I’ve updated the php.ini file and so it’s not an upload limit. Any ideas? Seems like under 1gb file it works but over 1gb it doesn’t.

    Thanks!

    doesn’t seem to happen* not happy. Also in case it helps, I’m only allowing zip and ZIP files to be uploaded.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘HTTP Error. Upload URL might be wrong or doesn't exist.’ is closed to new replies.