MLu Posted December 6, 2009 Posted December 6, 2009 I have copied a site to my local server, so that it is completely identical except for the two configure files (they point to local server and to local database). Further to this I have installed an identical copy of the database. Basically it works fine, the shop shows correctly, the admin partly correct, but the problem seems to be that the modules (shipping, payment and total) appear as if they are not installed. The values should be taken from the configuration table, where they are correctly stored, but they don't. How could this be? Products, customers etc. show up just fine, and I have verified that the database I am running on is the correct one. So I cannot see why the modules are missing.
satish Posted December 7, 2009 Posted December 7, 2009 check Your configure FS path for catalog. Satish Ask/Skype for Free osCommerce value addon/SEO suggestion tips for your site. Check My About US For who am I and what My company does.
MLu Posted December 7, 2009 Author Posted December 7, 2009 check Your configure FS path for catalog. Satish Thanks Satish! Indeed the configure.php was the culprit. Tried to make a local install of oscommerce, and took the configures from here. Then it worked like a charm :)
satish Posted December 8, 2009 Posted December 8, 2009 Good to know that it got sorted out. Satish Ask/Skype for Free osCommerce value addon/SEO suggestion tips for your site. Check My About US For who am I and what My company does.
icecool Posted February 2, 2010 Posted February 2, 2010 Good to know that it got sorted out. Satish I am desperate. I just switched servers. moved over entire db, webfiles - email, everything. everything is working great - only thing is All my modules are gone - for example if you go to checkout - there are no shipping options, or payment options. Where have these modules gone?? - Does anyone have any ideas? Please help. Thank you, admin config looks like this <?php define('HTTP_SERVER', 'http://www.mysitename.co.za'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www.mysitename.co.za'); define('HTTPS_CATALOG_SERVER', 'http://www.mysitename.co.za/'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/usr/home/mysite/public_html/catalog/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/catalog/admin/'); // absolute path required define('DIR_FS_ADMIN', '/usr/home/mysite/public_html/catalog/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/catalog/'); // absolute path required define('DIR_FS_CATALOG', '/usr/home/mysite/public_html/catalog/'); // absolute path required define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/'); define('DIR_WS_Javascript', DIR_WS_INCLUDES . 'javascript/'); define('DB_SERVER', 'localhost'); define('DB_SERVER_USERNAME', 'xxxxx'); define('DB_SERVER_PASSWORD', 'xxxxxx'); define('DB_DATABASE', 'xxxxx'); define('USE_PCONNECT', 'false'); define('STORE_SESSIONS', 'mysql'); define(’WIN32', true); ini_set("SMTP","smtp.mysitename.co.za"); ini_set("smtp_port","25"); ini_set("sendmail_from","[email protected]"); ?>
Recommended Posts
Archived
This topic is now archived and is closed to further replies.