I am using easysite network wallpapers script. I have installed the script succesfully. But I am unable to get access to the admin area. The script requires to add a row into admin_login. I did it exactly but I am unable to get acces to the admin area. Command to be executed, insert into admin_login (login, password) values ('[your login]', '[your password]'); Code (markup): I entered the following command in sql window, insert into admin_login (login, password) values ('[admin]', '[pass]'); Code (markup): Is this all correct or there is some error?
Thanks for the reply but i got the following error, SQL query: INSERT INTO `admin_login` VALUES ( 'admin', 'pass' ) MySQL said: Documentation #1136 - Column count doesn't match value count at row 1 Code (markup):
column count does not match, there are more then 3 fields then besides name and password? whats the missing field?
The original query was, # Table structure for table `admin_login` # CREATE TABLE admin_login ( login varchar(20) default NULL, password varchar(20) default NULL, sessionkey int(10) unsigned default NULL ) TYPE=MyISAM; # # Dumping data for table `admin_login` # INSERT INTO admin_login VALUES ('guest','guest',''); Code (markup):