The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.27 (Linux)
|
Error 503 on Submit - Printable Version +- Form Tools (https://forums.formtools.org) +-- Forum: Form Tools (https://forums.formtools.org/forumdisplay.php?fid=1) +--- Forum: General Discussion (https://forums.formtools.org/forumdisplay.php?fid=5) +--- Thread: Error 503 on Submit (/showthread.php?tid=5085) |
Error 503 on Submit - projektish - Mar 17th, 2015 Hi, when submitting my form for the first time I got redirected to the thank you page which is fine. When I clicked submit for the second time, I get the following error: "Service Temporarily Unavailable" (503)..The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later. Instead it would be good to get something like:"sorry you filled the form in already.." <?php require_once("../FormTools_01/global/api/api.php"); $fields = ft_api_init_form_page(1); $params = array( "submit_button" => "kontaktsenden", "next_page" => "thanks.php", "form_data" => $_POST, "finalize" => true ); ft_api_process_form($params); ?> Thanks.php: <?php require_once("../FormTools_01/global/api/api.php"); $fields = ft_api_init_form_page(); ft_api_clear_form_sessions(); ?> |