• 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!

About the website when i create tabell its says this come read V

kuk124

Banned User
Joined
May 6, 2010
Messages
271
Reaction score
6
Location
Homeless.
PHP:
SQL-fråga:

CREATE TABLE  `accounts` (

 `id` INT NOT NULL AUTO_INCREMENT ,
 `name` VARCHAR( 32 ) NOT NULL DEFAULT  '',
 `password` VARCHAR( 255 ) NOT NULL /* VARCHAR(32) NOT NULL COMMENT 'MD5'*//* VARCHAR(40) NOT NULL COMMENT 'SHA1'*/,
 `premdays` INT NOT NULL DEFAULT 0,
 `lastday` INT UNSIGNED NOT NULL DEFAULT 0,
 `email` VARCHAR( 255 ) NOT NULL DEFAULT  '',
 `key` VARCHAR( 20 ) NOT NULL DEFAULT  '0',
 `blocked` TINYINT( 1 ) NOT NULL DEFAULTFALSE COMMENT  'internal usage',
 `warnings` INT NOT NULL DEFAULT 0,
 `group_id` INT NOT NULL DEFAULT 1,
 `vip_time` INT( 15 ) NOT NULL DEFAULT 0,
PRIMARY KEY (  `id` ) ,
UNIQUE (
`name`
)
) ENGINE = INNODB;

MySQL sa: 

#1050 - Table '`devilution`.`accounts`' already exists

Whats the problem any help ?
 
go to your phpmyadmin and select the name of the database that your server is using and delete everything that's in it, or remove and re-create ...
 
Back
Top