[HELP] Clean URL

you need to ensure your form action is set properly, try using absolute path

<form id="contactform" action="contact.php"

otherwise: what happens? error message? you need to provide more detailed information in order for anyone to help you troubleshoot. We cannot see or test anything since you have disabled clean URLs
 
Don't write anything on contact and just press submit. Is it suppose to be like that? Takes you to a different page?

contacttz.jpg
 
that is how your form is coded, contact.php is not part of the VisioList package and your error messages are not loaded into a template. So it is behaving exactly as you have coded it.
 
You placed your javascript files wrong, do this

find this in wrapper.html
Code:
<link href="style/contact.css" rel="stylesheet" type="text/css" /> <!-- AJAX Contact Form Stylesheet -->
 
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="js/jquery.jigowatt.js"></script><!-- AJAX Form Submit -->
Its above the opening head tag, so its wrong.

So, firt of, from there delete
Code:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>

Then cut the remaining to lines and place them below
Code:
<script type="text/javascript" src="js/jquery-ui-1.8.20.custom.min.js"></script>

That should fix the problem you are having
 
Back
Top