Menu

Table 'myshop.language'

Help 2.02
Anonymous
2003-08-14
2003-08-14
  • Anonymous

    Anonymous - 2003-08-14

    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

     
    • Andreas Kansok

      Andreas Kansok - 2003-08-14

      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.

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.