Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

modules installation


Guest

Recommended Posts

Posted

Hi There--

I see the list of all the module files in my directories, but when i go to admin there arent any there to install... i checked my config file, and it looks right (i think)... any help is appreciated... this is what my status says: Module Directory: /includes/modules/payment/

Posted
Hi There--

I see the list of all the module files in my directories, but when i go to admin there arent any there to install... i checked my config file, and it looks right (i think)... any help is appreciated... this is what my status says: Module Directory: /includes/modules/payment/

 

Post the paths portion of your admin/include/configure.php file here. Someone may notice something that may solve your problem.

 

Be well,

Tina

If you're not having fun you're not doing it right

 

Teach a person to fish rather than give them a loaf of bread or however that saying goes.

Posted

here is my code from my admin/includes/configure.php file... my catalog is in my root www directory.

 

 

 define('HTTP_CATALOG_SERVER', 'http://www.mydomain.com/');
 define('HTTPS_CATALOG_SERVER', 'http://www.mydomain.com/');
 define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module
 define('DIR_FS_DOCUMENT_ROOT', ''); // where the pages are located on the server
 define('DIR_WS_ADMIN', '/admin/'); // absolute path required
 define('DIR_FS_ADMIN', '/admin/'); // absolute pate required
 define('DIR_WS_CATALOG', ''); // absolute path required
 define('DIR_FS_CATALOG', ''); // absolute path required
 define('DIR_WS_IMAGES', 'images/');
 define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
 define('DIR_WS_CATALOG_IMAGES', '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/');

:( :(

Posted

i forgot to mention that the items under the 'modules' menu are the only things that DONT work in my admin.

Thanks in advance for the help...

:blush:

Posted
here is my code from my admin/includes/configure.php file... my catalog is in my root www directory.

 define('HTTP_CATALOG_SERVER', 'http://www.mydomain.com/');
 define('HTTPS_CATALOG_SERVER', 'http://www.mydomain.com/');
 define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module
 define('DIR_FS_DOCUMENT_ROOT', ''); // where the pages are located on the server
 define('DIR_WS_ADMIN', '/admin/'); // absolute path required
 define('DIR_FS_ADMIN', '/admin/'); // absolute pate required
 define('DIR_WS_CATALOG', ''); // absolute path required
 define('DIR_FS_CATALOG', ''); // absolute path required
 define('DIR_WS_IMAGES', 'images/');
 define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
 define('DIR_WS_CATALOG_IMAGES', '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/');

:( :(

 

Ok for one, where it says "must be absoute path", you need to have the full path on the server. It varies by server however its going to be something like this:

 

define('DIR_FS_CATALOG', '/home/yourdomain/public_html/catalog/');

 

At the very least you should have a '/' rather than '' in those places.

 

Be well,

Tina

If you're not having fun you're not doing it right

 

Teach a person to fish rather than give them a loaf of bread or however that saying goes.

Posted

OHHH I LOVE YOU!!!!! THANK YOU SO MUCH!!!!! :blink: :rolleyes: :D :thumbsup:

Posted
OHHH I LOVE YOU!!!!! THANK YOU SO MUCH!!!!! :blink: :rolleyes: :D :thumbsup:

 

Glad it's working for you now, happy to help.

 

Tina

If you're not having fun you're not doing it right

 

Teach a person to fish rather than give them a loaf of bread or however that saying goes.

Archived

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

×
×
  • Create New...