gkrehbiel Posted October 16, 2008 Share Posted October 16, 2008 I have an old install of OSCommerce, which I'm trying to move to a new server. On the new server I installed OSCommerce and then pointed it to the database from the old site. I was somewhat surprised that actually worked. Or at least it did until I tried to access my admin page, when I got this error. *** 1146 - Table 'mdhb.administrators' doesn't exist select id from administrators limit 1 [TEP STOP] *** What do I need to do? Thanks, Greg Link to comment Share on other sites More sharing options...
FIMBLE Posted October 17, 2008 Share Posted October 17, 2008 Hiya, run this in your phpmyadmin DROP TABLE IF EXISTS administrators; CREATE TABLE administrators ( id int NOT NULL auto_increment, user_name varchar(32) binary NOT NULL, user_password varchar(40) NOT NULL, PRIMARY KEY (id) ); Sometimes you're the dog and sometimes the lamp post [/url] My Contributions Link to comment Share on other sites More sharing options...
gkrehbiel Posted October 18, 2008 Author Share Posted October 18, 2008 That did it. Thanks much! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.