404 page, on submit
-
I’m using FSCF v. 4.0.15.
I get taken to a “404 Not Found” page when my form is submitted, otherwise the form works as it should. I use the redirect feature and after 3 seconds I am redirected. The submitted form is also delivered to my Inbox.
HERE IS THE 404 PAGE
Error 404 – Page not found!
The page you are trying to reach does not exist, or has been moved. Please use the menus or the search box to find what you are looking for.I have tried to troubleshoot the problem, unsuccessfully, by…
– disabled all other plugins
– switched to the default theme
– disabled redirect
– deactivate/activated FSCF pluginI’ve also added some code to my themes’ function.php code to integrate another FSCF with paypal. That form seems to work fine. I removed the code from functions.php, but that did not solve the issue either.
HERE IS THAT CODE
function my_action_url_ssl($form_action_url, $form_id_num) { ################################## // control which forms you want this on $all_forms = false; // set to true for process on all forms, or false to use settings below $forms = array('2'); // one or more individual forms ################################## if ( !in_array($form_id_num, $forms) && $all_forms != true) return $form_action_url; // force form action URL to be SSL $form_action_url = 'https://www.paypal.com/cgi-bin/webscr'; return $form_action_url; } //filter hook for form action URL add_filter('si_contact_form_action_url', 'my_action_url_ssl', 1, 2);
- The topic ‘404 page, on submit’ is closed to new replies.