Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Modules not listed in admin panel


alphasource

Recommended Posts

Posted

Hi everyone,

 

I have just installed a fresh copy of osc on my test server and everything seems to be running fine except that when go to the admin panel and click on modules I see 'payment', 'Shipping' and 'Order Total' but when I click on 'payment' nothing is displayed on the right hand side of the screen. From my understanding when you click on 'payment', all the individual modules of the 'payment' package should be displayed on the right hand side of the screen, is this correct? if so can someone please show me how do I go about fixing this little problem of mine?

 

Thank you,

Alphasource

Posted
Hi everyone,

 

I have just installed a fresh copy of osc on my test server and everything seems to be running fine except that when go to the admin panel and click on modules I see 'payment', 'Shipping' and 'Order Total' but when I click on 'payment' nothing is displayed on the right hand side of the screen. From my understanding when you click on 'payment', all the individual modules of the 'payment' package should be displayed on the right hand side of the screen, is this correct? if so can someone please show me how do I go about fixing this little problem of mine?

 

Thank you,

Alphasource

 

That's most likely caused by a problem with your configure file admin/includes/configure.php.

Do, or do not. There is no try.

 

Order Editor 5.0.6 "Ultra Violet" is now available!

For support or to post comments, suggestions, etc, please visit the Order Editor support thread.

Posted
That's most likely caused by a problem with your configure file admin/includes/configure.php.

 

my files structure in the web server is c:\inetpub\wwwroot\oscommerce\catalog ...

my configure.php in admin/includes/ looks like this

 

// define our webserver variables

// FS = Filesystem (physical)

// WS = Webserver (virtual)

define('HTTP_SERVER', 'http://localhost/oscommerce/catalog/'); // 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', '/admin/');

define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN);

define('DIR_WS_CATALOG', '/catalog/');

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 . '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/');

 

I dont know exactly what to change in the configure.php to fix this module problem, could someone please help me

 

Thank you,

Alphasource

Posted

Get a backup and then try the changes below. Don't panic if it doesn't work; you can always just change it back. :)

 

Change

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)

to

define('DIR_FS_DOCUMENT_ROOT', 'C:/inetpub/wwwroot/oscommerce/catalog/'); // where your pages are  located on the server.

 

Then change

define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN);

to

define('DIR_FS_ADMIN', 'C:/inetpub/wwwroot/oscommerce/catalog/admin/');

 

Then change

define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG);

to

define('DIR_FS_CATALOG', 'C:/inetpub/wwwroot/oscommerce/catalog/');

Do, or do not. There is no try.

 

Order Editor 5.0.6 "Ultra Violet" is now available!

For support or to post comments, suggestions, etc, please visit the Order Editor support thread.

Archived

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

×
×
  • Create New...