Hi
My little contrib to the cause.
I have setup the client side as a kiosk at my school for teachers to use.
Issue was teachers would log a job and leave the kiosk, leaving it on the thank you page.
This causes an issue that if hit refresh a duplicate ticket is created.
I took care of that will this mod
(Avoid duplicates)
This avoids the duplicates but it still sits on the thank you page so i added a JS redirect that after 5 seconds it redirects to the main site page.
<script type="text/javascript">
function delayer(){
window.location = "index.php"
}
//
</script>
<body onLoad="setTimeout('delayer()', 5000)">
I placed this in /include/client/thankyou.inc.php
above this code
<?
unset($_POST); //clear to avoid re-posting on back button??
?>
You can adjust the time by changing the 5000
Hope someone finds it useful
Thanks
Peter