Jul 19th, 2011, 11:35 AM
(This post was last modified: Jul 19th, 2011, 11:47 AM by terry54661.)
Hi Ben,
Thanks for getting back to me on this it has been a great help. The error was indeed a path issue.
Correct Path..
Incorrect path..
So now I have an active recapatcha
But there is another problem! If the text is entered wrong the user will now be sent to a blank page "https://mysite.com/formtools/process.php"
Entering the correct text is redirecting just fine.
I will update as problems are solved.
To be continued...
Reason for being sent to blank page "process.php" was the line below. I removed it from my page source. Now when the wrong text is entered into recapatcha the page reloads and the user is told to re-enter the text and try again.
Removed from source code..
To be continued..
Thanks for getting back to me on this it has been a great help. The error was indeed a path issue.
Correct Path..
Code:
<?php
require_once("/home/terrymcb/public_html/mysite.com/formtools/global/api/api.php");
ft_api_start_sessions();
$fields = isset($_SESSION["form_tools_form_data"]) ?
ft_strip_tags($_SESSION["form_tools_form_data"]) : array();
?>
Incorrect path..
Code:
<?php
require_once("/public_html/mysite.com/formtools/global/api/api.php");
ft_api_start_sessions();
$fields = isset($_SESSION["form_tools_form_data"]) ?
ft_strip_tags($_SESSION["form_tools_form_data"]) : array();
?>
So now I have an active recapatcha

Entering the correct text is redirecting just fine.
I will update as problems are solved.
To be continued...
Reason for being sent to blank page "process.php" was the line below. I removed it from my page source. Now when the wrong text is entered into recapatcha the page reloads and the user is told to re-enter the text and try again.
Removed from source code..
Code:
<input type="hidden" name="form_tools_form_url" value="" />
To be continued..