• Resolved udrae

    (@udrae)


    Hello,

    Ive encountered error “The uploaded file exceeds the maximum upload size of your server.” – but post_max_size and upload_max_filesize are set to 1G (wp shows it correctly in media upload and site info, I tried to upload same file in to media and it worked), what is more strange is that the error shows on broswers other than Chrome (in chrome I can send forms normally). I tried to disable cache and security plugins nothing helps, all plugins and wp are up to date, php version is 8.2. Could you point me where the problem could be?

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Glen Don Mongaya

    (@glenwpcoder)

    Hi @udrae ,

    Thanks for reaching out.

    It seems the issue occurred on all browsers, I tested it and I can replicate the issue.

    The issue is related to error 500 when a plugin requesting to AJAX and return an invalid or error response. (screenshot: https://ibb.co/hsVMr7S)

    Can you please check if there’s any error.log or debug.log file in your public_html or wp-content folder? and send it to me.

    Try also to add this in your wp-config.php file.

    define( 'WP_DEBUG', true );
    define( 'WP_DEBUG_LOG', true );

    Please let me know.

    Plugin Author Glen Don Mongaya

    (@glenwpcoder)

    Also, please try to add this code in your theme/functions.php file and see if this will fix the issue.

     add_filter('dnd_cf7_ajax_url', function(){
    return trailingslashit( site_url() ) . '?ajax-dnd-upload=true';
    });

    add_action( 'init', function() {
    if ( isset( $_GET['ajax-dnd-upload'] ) && 'true' === $_GET['ajax-dnd-upload'] ) {
    if ( ! empty( $_REQUEST['action'] ) && is_scalar( $_REQUEST['action'] ) ) {
    if ( has_action( 'wp_ajax_' . $_REQUEST['action'] ) ) {
    do_action( 'wp_ajax_' . $_REQUEST['action'] );
    }
    }
    die('0');
    }
    });

    Please let me know.

    Thread Starter udrae

    (@udrae)

    Hello,

    Ive resolved the issue, i missed the admin-ajax.php error, after looking in to logs it turned out it was my function that was causing error in ajax and plugin could not access it, after fix all works as intended. Thank you for help and for the great plugin.

    Hi

    I have the same issue, or atleast similar: the post_max_size and upload_max_filesize are 256MB on cPanel, but it’s overridden from htaccess. WordPress and phpinfo sees it correctly and in media i can upload the file, but your plugin gives back the file exceeds server limit error.

    I guess it checks the server limit and does not take in consideration the htaccess override.

    Possible?

    Plugin Author Glen Don Mongaya

    (@glenwpcoder)

    @bszakacs thanks for reaching out.

    Please create a new topic here – https://www.ads-software.com/support/plugin/drag-and-drop-multiple-file-upload-contact-form-7/ since this thread has already been solved.

    Please also provide a link to your site where the form was added and include a screenshots of the error or issue.

    Glen

    Hi. I cannot link the page in a public thread. Can we deal with this issue other way? Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.