Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Payment modules missing


webnology

Recommended Posts

Hello guys,

 

I installled OSC, working fine. However, in my admin area, I don't see any payment modules, although they are present on the server. If I checkout as a customer in the shop, I can't choose a payment method either. Can anybody help me here, please ?

 

Many thanks,

Michel

Link to comment
Share on other sites

Hello guys,

 

I installled OSC, working fine. However, in my admin area, I don't see any payment modules, although they are present on the server. If I checkout as a customer in the shop, I can't choose a payment method either. Can anybody help me here, please ?

 

Many thanks,

Michel

 

You will need to install one or more before they become active. You will want to look under modules/payment in your admin area. Select the payment option you wish to use and in the right hand column there will be an install button. Click that and fill in the various options, then save it. You will want to do some testing after that to make sure its all working the way it should. Then you are on your way.

 

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.

Link to comment
Share on other sites

Thanks Tina, but it is in he admin area that I don't see azny payment modules, so I can't install them. On the server, they are present, but not visible in the admin area; aNY OTHER SUGGESTIONS ,

 

m

 

By default the system reads the modules/payment folder to populate that area of the admin tool. I'm not sure what your problem might be. However that's where I would start looking.

 

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.

Link to comment
Share on other sites

Thanks Tina, but it is in he admin area that I don't see azny payment modules, so I can't install them. On the server, they are present, but not visible in the admin area; aNY OTHER SUGGESTIONS ,

 

m

 

 

If they are located in the correct folder but not showing up in the admin the chances are you have the paths in your admin/includes/configure.php file set incorrectly

The Knowledge Base is a wonderful thing.

Do you have a problem? Have you checked out Common Problems?

There are many very useful osC Contributions

Are you having trouble with a installed contribution? Have you checked out the support thread found Here

BACKUP BACKUP BACKUP!!! You did backup, right??

Link to comment
Share on other sites

  • 10 months later...
If they are located in the correct folder but not showing up in the admin the chances are you have the paths in your admin/includes/configure.php file set incorrectly

 

Would file permissions produce this effect? I'm having the same trouble. My site has been up for over a year and all was fine until recently. All the modules are present on the server, paths are correct, they're placed in the correct folders, previously installed and working, now not shown on either the admin or catalog portions of the site. No error is given - only this statement where the modules should be shown on the modules admin page: "Module Directory: calalog/includes/modules/payment/" The same message is displayed on the payment, shipping & order total pages.

 

Your thouhts & help would be appreciated

Link to comment
Share on other sites

  • 1 month later...
Would file permissions produce this effect? I'm having the same trouble. My site has been up for over a year and all was fine until recently. All the modules are present on the server, paths are correct, they're placed in the correct folders, previously installed and working, now not shown on either the admin or catalog portions of the site. No error is given - only this statement where the modules should be shown on the modules admin page: "Module Directory: calalog/includes/modules/payment/" The same message is displayed on the payment, shipping & order total pages.

 

Your thouhts & help would be appreciated

 

Did you find a solution? I'm having identical problems. Missing in the admin area. Please help.

Link to comment
Share on other sites

I was able to fix this myself today. I looked at the exact path that the module page was giving me in the admin console. I went into my configure.php file and made sure the path to the module directory was correct. It was not. I adjusted it on the configure.php and now the payment, shipping and totals are showing up.

 

In mine, the includes/ directory was missing from the configure.php file so I had to add it.

Link to comment
Share on other sites

I checked that. This was working before the server migration and now it won't. These are my settings:

 

in admin/configure.php and in admin/includes/configure.php:

define('DIR_WS_CATALOG', '/');

define('DIR_FS_CATALOG', '/var/www/html/');

define('DIR_WS_INCLUDES', 'includes/');

define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');

define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');

 

are these similar to yours?

 

Thanks for your help.

Link to comment
Share on other sites

  • 2 weeks later...

I have actually put in the full path and still not getting it to work:

 

define('DIR_FS_CATALOG_MODULES', '/Library/WebServer/Documents/bestbiltong/includes/modules/');

 

 

I've chmodded 777 on the whole bestbiltong directory without luck

 

Also having probs with backups and images

Link to comment
Share on other sites

  • 8 months later...
Sorry that should be in both /includes/configure.php and /admin/includes/configure.php

 

The module page is listing each of the three modules as

Module Directory: /var/www/html/includes/modules/order_total/

 

Hey i have a similar problem.

can you fix this?

 

 

sales/admin/configure.php

 

define('HTTP_SERVER', 'http://www.xyz.com');

define('HTTP_CATALOG_SERVER', 'http://www.xyz.com');

define('HTTPS_CATALOG_SERVER', 'http://www.xyz.com');

define('ENABLE_SSL_CATALOG', 'false');

define('DIR_FS_DOCUMENT_ROOT', '/web/vhosts/xyz.com/httpdocs/sales/');

define('DIR_WS_ADMIN', '/sales/admin/');

define('DIR_FS_ADMIN', '/web/vhosts/xyz.com/httpdocs/sales/admin/');

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

define('DIR_FS_CATALOG', '/web/vhosts/xyz.com/httpdocs/sales/');

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

 

 

/sales/configure.php

 

define('HTTP_SERVER', 'http://www.xyz.com');

define('HTTPS_SERVER', 'http://www.xyz.com');

define('ENABLE_SSL', false);

define('HTTP_COOKIE_DOMAIN', 'www.xyz.com');

define('HTTPS_COOKIE_DOMAIN', 'www.xyz.com');

define('HTTP_COOKIE_PATH', '/sales/');

define('HTTPS_COOKIE_PATH', '/sales/');

define('DIR_WS_HTTP_CATALOG', '/sales/');

define('DIR_WS_HTTPS_CATALOG', '/sales/');

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

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_DOWNLOAD_PUBLIC', 'pub/');

define('DIR_FS_CATALOG', '/web/vhosts/xyz.com/httpdocs/sales/');

define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

But the admin modules section only says

"Module Directory: /web/vhosts/xyz.com/httpdocs/sales/includes/modules/payment/"

 

There is a install button, but nothing happens when i click that, the modules are also installed in the respective folders, yet nothing is showing up.

 

All was good but suddenly, the modules section is not working, shopping cart works but without shipping, ordertotal and payment modules options.

 

Please help

Link to comment
Share on other sites

  • 4 months later...
Fix it. I needed to change the path

from define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');

 

to define('DIR_FS_CATALOG_MODULES', '../includes/modules/');

 

Thanks, this works also with my problem :lol: www.eopen.fi

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...