Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

No Modules showing up, just path


kamkaz

Recommended Posts

First, thank you for reading. Yesterday, my payment and shipping modules just disappeared. Now all I have on that page is my path, which is correct. This is what I see

 

screenshot.jpg

 

 

I really need some help....

Link to comment
Share on other sites

Probably Your database was over written or the files in the modules folder are missing.

 

 

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.

Link to comment
Share on other sites

Probably Your database was over written or the files in the modules folder are missing.

Satish

 

The files are in that directory. As for the database, if it did get wiped out shouldn't OSC load up the modules anyways so I can reinstall them?

Link to comment
Share on other sites

check your config files in the admin directory, the same thing happened to me yesterday. Go to /admin/includes/configure.php and open the file

 

here's mine for reference:

<?php
/*
 $Id: configure.php,v 1.14 2003/02/21 16:55:24 dgw_ Exp $

 osCommerce, Open Source E-Commerce Solutions
 http://www.oscommerce.com

 Copyright (c) 2002 osCommerce

 Released under the GNU General Public License
*/

// define our webserver variables
// FS = Filesystem (physical)
// WS = Webserver (virtual)
 define('HTTP_SERVER', 'http://yourdoamin.com'); // eg, http://localhost or - https://localhost should not be NULL for productive servers
 define('HTTP_CATALOG_SERVER', '');
 define('HTTPS_CATALOG_SERVER', '');
 define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
 define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs)
 define('DIR_WS_ADMIN', '/nrw/admin/');
 define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN);
 define('DIR_WS_CATALOG', '/nrw/');
 define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG);
 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 our database connection
{Removed for posting}
?>

I'm kinda new to OsC, but I'm picking up quickly.

Link to comment
Share on other sites

I read alot of stuff about checking the DIR_FS_PATH and guess what it was. My DIR_FS_PATH!

 

The reason why I was fooled was that I trusted 'pwd' which gave me a full path of '/www/store/'. Then when I looked at the Apache Environment, DOCUMENT_ROOT value in the php.info page ( Located in Admin -> Tools -> Server Info ) the full path was more complete. Plugged that value in and it worked.

 

Thanks all for your time. Up and running again.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...