I was having problems redirecting my web form to my thank you page after submitting, It appears the redirect only accepts php extensions:
This works:
Code:<input id="redirect_url" name="redirect_url" value="http://www.yourdomain.com/thankyou.php" type="hidden">
This does not
Rather than editing the sugar files to accept html docs on redirect I just made a quick PHP file that opened my existing html file:Code:<input id="redirect_url" name="redirect_url" value="http://www.yourdomain.com/thankyou.html" type="hidden">
As long as your server accepts PHP this should work just finePHP Code:<?php
include("thankyou.html");
?>
Hope this helps others with the same issue.
Marcus


LinkBack URL
About LinkBacks




Reply With Quote
Bookmarks