problem with osc/admin

Dave Reinieren

New member
Joined
Oct 8, 2009
Messages
1
Dear support,
regarding:
NS1:ns1.surprisedesign.nl
NS1 IP: 85.12.18.117
NS2:ns2.surprisedesign.nl
NS2 IP: 85.12.18.118

www.sheep-1.nl/osc/admin
www.stamps-1.eu/osc/admin


We do seem to have a problem:

We try to open the "working-site" ( admin) but we do receive this message:

1146 - Table 'sheep1_db1.configuration' doesn't exist

select configuration_key as cfgKey, configuration_value as cfgValue from configuration

[TEP STOP]

We don't know how to solve this problem, can you please help us?



Kind regards,
Dave
 
I think you are mistaken this is not support for your hosting provider.
 
You are missing your sessions table, I would suspect others maybe missing as well. Go to phpmyadmin and check you database.

If the sessions table is missing, backup your DB and try this;

Code:
CREATE TABLE IF NOT EXISTS `sessions` (
  `sesskey` varchar(32) NOT NULL,
  `expiry` int(11) unsigned NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY  (`sesskey`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

or remove store session in mysql in your configure.php
 
Back
Top