2010-01-06, 08:02:47
I am currently having an issue with my contact form not sending as well..
it works on my test copy www.nickburd.com/development/currietireltd.com
but it does NOT work on the live version www.currietireltd.com
I did a fresh install of the CMS on the live FTP.. still no change.
This is the EXACT code i have for my template contact form...
please advise! This is urgent, the client isn't very satisfied with this issue.
it works on my test copy www.nickburd.com/development/currietireltd.com
but it does NOT work on the live version www.currietireltd.com
I did a fresh install of the CMS on the live FTP.. still no change.
This is the EXACT code i have for my template contact form...
please advise! This is urgent, the client isn't very satisfied with this issue.
Code:
<form action="<?php get_page_url(); ?>" method="post" class="contactform" >
<?php set_contact_page(); ?>
<p><label>Name:</label><br />
<input type="text" class="text" name="contact[name]" /></p>
<p><label>Email:</label><br />
<input type="text" class="text" name="contact[email]" /></p>
<p><label>Message:</label><br />
<textarea class="text" name="contact[message]" ></textarea></p>
<div class="pot" ><input class="text" type="text" value="" name="contact[pot]" /></div>
<p><input type="submit" class="submit" value="Send Email" id="contact-submit" name="contact-submit" /></p>
</form>