
10-11-2006, 11:52 PM
|
|
|
Join Date: May 2005
Location: Cheyenne, wy
Posts: 1,380
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by WebmasterSimds
At first after installing this, it came up with the the error:
Database error in vBulletin 3.6.1:
Invalid SQL:
INSERT INTO session (userid,lastactivity,host) VALUE ('5431',1160595332,'127.0.0.1');
then i uploaded a ew file that was said to upload, then it worked ok, but NOW, I get this at the top just before it goes back into the post;
So how would one fix this problem?? before i totally remove it from the system
|
PHP Code:
Invalid SQL:
INSERT INTO session (userid,lastactivity,host) VALUE ('5431',1160595332,'127.0.0.1');
It's missing the "S" in values
PHP Code:
Invalid SQL:
INSERT INTO session (userid,lastactivity,host) VALUES ('5431',1160595332,'127.0.0.1');
|