I get this message "Table 'myshop.language' doesn't exist". It seems that it does not create the database. I fixed the settings in config_db.inc.php, and i gave 777 permissions to config_db.inc.php, create_db.inc.php, config_db.inc.php.
Can anyone help me with that?
Thanks, Alex
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I get this message "Table 'myshop.language' doesn't exist". It seems that it does not create the database. I fixed the settings in config_db.inc.php, and i gave 777 permissions to config_db.inc.php, create_db.inc.php, config_db.inc.php.
Can anyone help me with that?
Thanks, Alex
I dont know what happens in your installtion, but easiest way is to create table by hand (in example with phpMyAdmin):
CREATE TABLE language (
ID int(8) NOT NULL auto_increment,
shortt char(2) NOT NULL default '',
longt varchar(15) NOT NULL default '',
picname varchar(20) NOT NULL default 'filler.gif',
PRIMARY KEY (ID)
) TYPE=MyISAM;
Greetings,
Andreas.