Hi,
I have an opencart site live (the version previous to the latest) and all the modules have been deleted form the 'Extensions/modules' area on the admin site.
Can someone please tell me if I can re-install these and if so how? I'm not a programmer so most of what I am doing is fairly trial and error although I love the system and am learning rapidly!
Thanks in advance.
Paul
I'd recommend the latest 0.7.9 version.
The modules aren't deleted in your version, they are just bugged in 0.7.8
The modules aren't deleted in your version, they are just bugged in 0.7.8
Hiya,
Thanks for a speedy reply but, I have made so many mods that it would be a nightmare to install new version and try to remember them all (language changes, HTML to XHTML, changes to admin and deletion of various things etc..etc...). Is there a way to get them to show again that you know of?
If I have to ask a php developer for help what would I need to tell him in order to get it sorted out?
Thanks again,
Paul
Thanks for a speedy reply but, I have made so many mods that it would be a nightmare to install new version and try to remember them all (language changes, HTML to XHTML, changes to admin and deletion of various things etc..etc...). Is there a way to get them to show again that you know of?
If I have to ask a php developer for help what would I need to tell him in order to get it sorted out?
Thanks again,
Paul
Oh, I thought you just installed 0.7.8.... If you have an earlier version but blew away the modules then you'd need to run the sql for those tables.
But first, check if you get a url like this:
or like this
If you see it the second way but still see no modules then you might need to reinstall the extensions db sql code via phpmyadmin:
But first, check if you get a url like this:
Code: Select all
http://mysite.com/admin/index.php?controller=extension[b]&[/b]type=shipping
Code: Select all
http://mysite.com/admin/index.php?controller=extension&type=shipping
Code: Select all
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('19', 'total', 'calculate', 'calculate', 'total.php', 'calculate_total');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('18', 'paypal', 'payment', 'payment', 'paypal.php', 'payment_paypal');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('1', 'flat', 'shipping', 'shipping', 'flat.php', 'shipping_flat');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('20', 'subtotal', 'calculate', 'calculate', 'subtotal.php', 'calculate_subtotal');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('21', 'tax', 'calculate', 'calculate', 'tax.php', 'calculate_tax');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('22', 'shipping', 'calculate', 'calculate', 'shipping.php', 'calculate_shipping');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('23', 'header', 'module', 'module', 'header.php', 'module_catalog_header');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('24', 'footer', 'module', 'module', 'footer.php', 'module_catalog_footer');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('25', 'category', 'module', 'module', 'category.php', 'module_catalog_category');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('26', 'information', 'module', 'module', 'information.php', 'module_catalog_information');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('27', 'review', 'module', 'module', 'review.php', 'module_catalog_review');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('28', 'cart', 'module', 'module', 'cart.php', 'module_catalog_cart');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('29', 'header', 'module', 'module', 'header.php', 'module_admin_header');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('30', 'footer', 'module', 'module', 'footer.php', 'module_admin_footer');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('31', 'menu', 'module', 'module', 'menu.php', 'module_admin_menu');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('32', 'cod', 'payment', 'payment', 'cod.php', 'payment_cod');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('33', 'language', 'module', 'module', 'language.php', 'module_catalog_language');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('34', 'search', 'module', 'module', 'search.php', 'module_catalog_search');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('35', 'currency', 'module', 'module', 'currency.php', 'module_catalog_currency');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('36', 'item', 'shipping', 'shipping', 'item.php', 'shipping_item');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('38', 'coupon', 'calculate', 'calculate', 'coupon.php', 'calculate_coupon');
INSERT INTO `extension` (`extension_id`, `code`, `type`, `directory`, `filename`, `controller`) VALUES ('39', 'zone', 'shipping', 'shipping', 'zone.php', 'shipping_zone');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('1', '1', 'Flat Rate', 'Flat Rate Shipping');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('18', '1', 'PayPal', 'PayPal Payment Gateway');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('19', '1', 'Calculate Total', 'Calculate Total');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('20', '1', 'Calculate Subtotal', 'Calculate Subtotal');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('22', '1', 'Calculate Shipping', 'Calculate Shipping');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('23', '1', 'Catalog Header', 'Catalog Header');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('24', '1', 'Catalog Footer', 'Catalog Footer');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('25', '1', 'Catalog Category', 'Catalog Category');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('26', '1', 'Catalog Information', 'Catalog Information');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('27', '1', 'Catalog Review', 'Catalog Review');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('28', '1', 'Catalog Cart', 'Catalog Cart');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('29', '1', 'Admin Header', 'Admin Header');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('32', '1', 'Cash On Delivery', 'Cash On Delivery');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('30', '1', 'Admin Footer', 'Admin Footer');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('31', '1', 'Admin Menu', 'Admin Menu');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('21', '1', 'Calculate Tax', 'Calculate Tax');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('33', '1', 'Catalog Language', 'Catalog Language');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('34', '1', 'Catalog Search', 'Catalog Search');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('35', '1', 'Catalog Currency', 'Catalog Currency');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('36', '1', 'Per Item Rate', 'Per Item Rate');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('38', '1', 'Calculate Coupon', 'Calculate Coupon');
INSERT INTO `extension_description` (`extension_id`, `language_id`, `name`, `description`) VALUES ('39', '1', 'Zone', 'Zone');
I have 0.7.8 version and i dont have any module installed. Would you help me Qphoria.
And i dont have myphp admin access to this base.
I went to download latest version and got this v, but seems like 0.7.9 is latest.
Ive entered huge number of products, and wouldnt like to enter them again, but would like to upgrade to 0.7.9 becouse of these modules.
And i dont have myphp admin access to this base.
I went to download latest version and got this v, but seems like 0.7.9 is latest.
Ive entered huge number of products, and wouldnt like to enter them again, but would like to upgrade to 0.7.9 becouse of these modules.
Last edited by Alibegovic on Fri Nov 21, 2008 10:40 pm, edited 1 time in total.
Who is online
Users browsing this forum: No registered users and 3 guests