• Resolved fhwebdesign

    (@fhwebdesign)


    Hi there,
    after submitting my form, the following stack trace is shown in console and the form is not submitted:

    Response { type: “basic”, url: “https://censored/wp-json/contact-form-7/v1/contact-forms/4143/feedback”, redirected: false, status: 404, ok: false, statusText: “Not Found”, headers: Headers, body: ReadableStream, bodyUsed: false }

    Updating the permalinks does not resolve the issue, even not to deactivate and reactivate CF7.

    Thanks for your help.

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Takayuki Miyoshi

    (@takayukister)

    What other plugins and theme do you use on the site?

    Thread Starter fhwebdesign

    (@fhwebdesign)

    Hi @takayukister ,
    thank you for your reply.
    I just disabled all plugins (except CF7, Slider Revolution and WPBakery Page Builder).
    The issue still exists.

    I wonder where the /feedback route comes from – without it, there is no 404 error.

    I also removed the .htaccess and other directives to prevent CORS blocking.

    • This reply was modified 3 years, 7 months ago by fhwebdesign.
    • This reply was modified 3 years, 7 months ago by fhwebdesign.
    Thread Starter fhwebdesign

    (@fhwebdesign)

    I just tested – even a new form gets this error.

    Thread Starter fhwebdesign

    (@fhwebdesign)

    Fixed:
    the website was served by nginx. Thus, this config has to be added to the nginx configuration:

    if (!-e $request_filename) {
    	set $test P;
    }
    if ($uri !~ ^/(plesk-stat|webstat|webstat-ssl|ftpstat|anon_ftpstat|awstats-icon|internal-nginx-static-location)) {
    	set $test "${test}C";
    }
    if ($test = PC) {
    	rewrite ^/(.*)$ /index.php?$1;
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘CF7 post status 404’ is closed to new replies.