• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Tfs error

Wipflash

Old School
Joined
Jul 27, 2010
Messages
1,101
Reaction score
87
Location
Sweden
Hi there i got this error (check console log) , but as u guys can see my config is right and xampp is on.. "/

6ae3NESet3.jpg


Regards

W
 
Last edited:
You don't have the necessary shop system tables, if you want that fixed install Gesior, or maybe that's Modern.
It's seriously giving you the errors, why don't you just read and learn from it?
 
SQL:
CREATE TABLE IF NOT EXISTS `shop_history` ADD `processed` INT(32) ;
Or smth i'm not sure.
 
Last edited:
PHP:
Error
SQL-question:

CREATE TABLE IF NOT EXISTS  `shop_history` (

`processed` (
INT
)
)
MySQL sa: 

#1064 - 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 '(INT) )' at line 1

:/
 
Last edited:
PHP:
Fel
SQL-fråga:

CREATE TABLE IF NOT EXISTS  `shop_history` (

`processed` (
INT
)
)
MySQL sa: 

#1064 - 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 '(INT) )' at line 1


:/
Try it now.
 
PHP:
Error
SQL-question:

CREATE TABLE IF NOT EXISTS  `shop_history` ADD  `processed` INT( 32 )

MySQL sa: 

#1064 - 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 'ADD `processed` INT(32)' at line 1
:p
 
PHP:
Error
SQL-question:

CREATE TABLE IF NOT EXISTS  `shop_history` ADD  `processed` INT( 32 )

MySQL sa: 

#1064 - 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 'ADD `processed` INT(32)' at line 1
:p

For crying out loud xD.

SQL:
 CREATE TABLE IF NOT EXISTS `shop_history`;
After that run:
SQL:
ALTER TABLE `shop_history` ADD `processed` INT(11);
 
xd i got this error when i inject the first code :p

PHP:
Error
SQL-question:

CREATE TABLE IF NOT EXISTS  `shop_history`

MySQL sa: 

#1113 - A table must have at least 1 column
 
xd i got this error when i inject the first code :p

PHP:
Error
SQL-question:

CREATE TABLE IF NOT EXISTS  `shop_history`

MySQL sa: 

#1113 - A table must have at least 1 column

Please, shoot me xD.

SQL:
CREATE TABLE IF NOT EXISTS `shop_history`(
processed INT(32) NOT NULL;
)
That is it I think.
 
Last edited:
Hahahahahha

PHP:
Fel
SQL-fråga:

CREATE TABLE IF NOT EXISTS  `shop_history` (

 `processed` INT( 32 ) NOT NULL
MySQL sa: 

#1064 - 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 '' at line 2
 
Hahahahahha

PHP:
Fel
SQL-fråga:

CREATE TABLE IF NOT EXISTS  `shop_history` (

 `processed` INT( 32 ) NOT NULL
MySQL sa: 

#1064 - 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 '' at line 2
Perhaps now.
 
Rolf!
PHP:
Fel
SQL-fråga:

CREATE TABLE IF NOT EXISTS  `shop_history` (

processed INT( 32 ) NOT NULL ;

MySQL sa: 

#1064 - 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 '' at line 2
 
Rolf!
PHP:
Fel
SQL-fråga:

CREATE TABLE IF NOT EXISTS  `shop_history` (

processed INT( 32 ) NOT NULL ;

MySQL sa: 

#1064 - 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 '' at line 2

Alright I give up, sorry that I couldn't help you ;/
 
Code:
DROP TABLE `shop_history`
Code:
CREATE TABLE `shop_history`
(
`id` int(11) NOT NULL auto_increment,
`to_name` varchar(255) NOT NULL default '0',
`to_account` int(11) NOT NULL default '0',
`from_nick` varchar(255) NOT NULL,
`from_account` int(11) NOT NULL default '0',
`price` int(11) NOT NULL default '0',
`offer_id` int(11) NOT NULL default '0',
`trans_state` varchar(255) NOT NULL,
`trans_start` int(11) NOT NULL default '0',
`trans_real` int(11) NOT NULL default '0',
PRIMARY KEY (`id`)
);
Code:
ALTER TABLE `shop_history` ADD `processed` int(11) NOT NULL default '0';
 
Back
Top