I am having a real problem with a site i am developing.  I cannot seem to get the order process working, users can fill in there credit card details on checkout.html, when they click on the submit button it doesnt go anywhere it just goes back to checkout.html.  I dont get any errors in the logs, i have added some of my own logging which seems to suggest that it does not go thourgh the credit_card profile or the log_transaction. <br /><br />These are the hidden form fields as set in my page.<br /><br />        &lt;form action=&quot;[process secure=1]&quot; method=&quot;POST&quot; name=&quot;checkout_form&quot; id=&quot;checkout_form&quot;&gt;<br />        &lt;input type=hidden NAME=mv_session_id value=&quot;[data session id]&quot;&gt;<br />        &lt;input type=hidden NAME=mv_doit value=refresh&gt;<br />        &lt;input type=hidden NAME=mv_nextpage value=&quot;ord/checkout&quot;&gt;<br />        &lt;input type=hidden name=mv_check value=&quot;Save_database&quot;&gt;<br />        &lt;input type=hidden name=mv_click id=mv_click value=&quot;&quot;&gt;<br />        &lt;input type=hidden name=mv_todo id=mv_todo value=&quot;&quot;&gt;<br />        &lt;input type=&quot;hidden&quot; name=&quot;mv_order_profile&quot; id=&quot;mv_order_profile&quot; value=&quot;credit_card&quot; /&gt;        <br />        &lt;input type=hidden name=mv_click value=&quot;check_form&quot;&gt;<br /><br />javascript changes mv_todo to submit later.<br /><br />These all seem fairly standard i can confirm that the check_form function is working correctly and completes, my understanding is that next it will check the order profile, although this does not seem to happen as i have added the same logging messages in my profiles.order in the etc folder and this does not get added to the log.<br /><br />Am i missing a stage here what would be run between these two steps that would cause it to fail.<br /><br />Any suggestions are greatly appreciated<br /><br /><br />Graham Hadgraft