
Originally Posted by
ozonlinesales
Also, i saved a copy of the admin and includes folder before i installed the addon, i have reverted back to the old folder, but its still in the database.
This is a good reason to also make database backups ...

Originally Posted by
ozonlinesales
1146 Table 'oos_zen.oos_geo_zones' doesn't exist
In your configure.php files, what do you have for these settings? Am I correct that you're using these settings? If not, what are they?
Code:
define('DB_PREFIX', 'oos_');
define('DB_DATABASE', 'oos_zen');
The error message suggests that the above information is what's in your configure.php files.
The error message also suggests that something you've done has deleted the standard geo_zones table (named oos_geo_zones if you're using oos_ as the table-prefix).
If the table is missing, then you most likely deleted it while making the various edits to the .sql file that you mentioned (both here on the forum and in PM).
Recreate the table in phpMyAdmin by:
- login to phpMyAdmin
- choose your "oos_zen" database from the list
- click on the "SQL" tab, and paste this into the query field, and click Go:
Code:
CREATE TABLE oos_geo_zones (
geo_zone_id int(11) NOT NULL auto_increment,
geo_zone_name varchar(32) NOT NULL default '',
geo_zone_description varchar(255) NOT NULL default '',
last_modified datetime default NULL,
date_added datetime NOT NULL default '0001-01-01 00:00:00',
PRIMARY KEY (geo_zone_id)
) TYPE=MyISAM;