Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Trouble accessing admin page


gkrehbiel

Recommended Posts

Posted

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

Posted

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...