| ktmtalk | October 31st, 2009 01:01 AM | Bug when logining, using Invision 1 in forums/ib.php, around line 228
Line reads:
$query = "INSERT INTO $stable (id, member_name...
Should probably be:
$query = "INSERT INTO {$Globals['dprefix']}sessions(id, member_name...
as, will produce a Mysql error: Quote:
An error was encountered during execution of the query: INSERT INTO (id, member_name, member_id, running_time, member_group, ip_address, browser, login_type) VALUES ('9e15834a1d8a6a6b8a4c6815917c2e3e','admin',1,1256968127,'4','98.195.52.215','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv',0) The query returned with an errorcode of: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(id, member_name, member_id, running_time, member_group, ip_address, browser, lo\' at line 1 If you need assistence or feel this is a \'bug\'; please report it to our support forums at: Photopost Pro Bug Reports - PhotoPost Community To turn off these emails, set =0 in your config-inc.php file.
| |