Oct 16th, 2009, 4:55 PM
Hi Ben,
I downloaded the latest version (Form Tools Core (2.0.0-beta-20091012) and running into this exact issue.
ERROR MSG:
"Firefox has detected that the server is redirecting the request for this address in a way that will never complete."
The fix you mentioned has already been integrated into the new package:
=> Manually edit your [form tools root]/index.php file
header("location: {$g_pages[$login_page]}");
Any ideas? Thanks for your time.
I downloaded the latest version (Form Tools Core (2.0.0-beta-20091012) and running into this exact issue.
ERROR MSG:
"Firefox has detected that the server is redirecting the request for this address in a way that will never complete."
The fix you mentioned has already been integrated into the new package:
=> Manually edit your [form tools root]/index.php file
header("location: {$g_pages[$login_page]}");
Any ideas? Thanks for your time.
(Jun 10th, 2009, 7:41 PM)Ben Wrote: Hi Pete,
There was a problem with that version that's fixed in the next release which sounds *related* to this, but I didn't think the problem was so severe... still it's worth checking out.
Try manually edit your [form tools root]/index.php file. There, on line 12 you should see this line:
PHP Code:<?php
header("location: {$g_pages[$login_page]}");
Change it to this:
PHP Code:
<?php
header("location: {$g_root_url}{$g_pages[$login_page]}");
