Guest Posted November 27, 2008 Share Posted November 27, 2008 My host (Hostgator) recently did an update to our servers and I have been having problems since. The site is http://www.grillcharms.com/catalog/index.php On the Checkout_payment.php page is where I am having my problem now. After you enter in your CC info then try to continue the "Continue" button dosen't do anything. It works in Firefox but it does not work in IE7. You click on it and it dosen't try to load a page or anything. It's almost like there is no link being called. I was having a problem before this also...... when a customer was creating an account they would get this error when the hit continue. 1146 - Table MYDataBase.TABLE_VISITOR' doesn't exist select email from TABLE_VISITOR where email = 'myemail@yahoo.com' [TEP STOP] I wasn't sure why I was getting this now because I hadn't done any mods on the site beofre it started hapening. To fix this I simply removed the code that was calling TABLE_VISITOR. I am a newbie at PHP but it worked. Here was that code. //Simple Visitor Newsletter $visitor_query = tep_db_query("select email from " . TABLE_VISITOR . " where email = '" . $email_address . "'"); if ($visitor = tep_db_fetch_array($visitor_query)) { tep_db_query("delete from " . TABLE_VISITOR . " where email = '" . $email_address . "'"); $newsletter = 1; } //Simple Visitor Newsletter I added it back and logged into an account that I had already created and I still couldn't click on the "continue" button in Check_payment.php so I think these my be 2 seperate problems. Please Help ASAP!!!!! Thanks Brian Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.