Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Checkout_payment.php


Guest

Recommended Posts

Hi.

When customers come to checkout_payment.php, and have to choose

payment method, there are nothing to choose at my page.

Where and how do i implement these payment methods ??

Link to comment
Share on other sites

I dont have directory 'modules' in admin ?? Should i ??

 

You need to go to your admin center. You should find it at www.yourdomain/admin

 

Before you do anything else you need to go to the knowledge base link and read through it as it explains the admin very well.

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

Okay but there are nothing about payment there, so i am a little bit confused now.

Can someone please tell me where to put in something about payment method ??

Link to comment
Share on other sites

I have includes/modules/payment , but there are no choice opportunity at the checkout_payment page ??

 

Again you need to add them in your admin center. You need to go to your admin center then to modules then to payment and install the payment modules you want to use.

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

Now i have clicked for install payment, but what should it give ??

 

???

 

What payment processor are you planning on using for your store? That is what you need to install. The setup for each is different.

 

Are you planning on using paypal or authorize.net or ??? This is something you need to decide on first.

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

what payment module do you want to use? do you have a merchant account for accepting credit cards? will you ship cod? will you use check/money order? you need to install which ever module you are going to accept payment by. if paypal you should add paypal ipn (from contributions)

Link to comment
Share on other sites

No it is just

-for paying with visacard

and

-for paying when recieving the package

 

and then the customer has to choose one of them at the checkout_payment.php page !

Link to comment
Share on other sites

ok it should be - banktransfer instead of visacard !

so it's just some text and a couple of radio buttons that i needed !

 

If the module you want to use is not available as a choice you need to look in the contribution section and see what is available. I am sure there is a COD module but I am not sure about the bank transfer. I would think that would take some doing as banks all do things differently.

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

If the module you want to use is not available as a choice you need to look in the contribution section and see what is available. I am sure there is a COD module but I am not sure about the bank transfer. I would think that would take some doing as banks all do things differently.

 

 

Its just two checkboxes where customers can check out which payment method they want to use. And the same thing about the delivery method !!

Then i can see i my email how the customer pays and which delivery method is wnated !

Link to comment
Share on other sites

Its just  two checkboxes where customers can check out which payment method they want to use. And the same thing about the delivery method !!

Then i can see i my email how the customer pays and which delivery method is wnated !

 

So you do not actually want to collect any money you just want to find out how the customer wants to pay?? osC is setup to do everything including accepting the payment. I would just use the check/money order module and edit the text to say what you want it to say.

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

I dont have creditcard payment in my shop !

 

I just get this under admin/modules :

 

Modules dir: /customers/tilenhvertid.dk/tilenhvertid.dk/httpd.www/ tilenhvertid.dk/includes/modules/payment/

 

Its like something is wrong ??

Link to comment
Share on other sites

looks more like things are snafu'd with the configure.php file, you shuld post that here, (admin/includes/configure.ph_ without the database info, password, username

Link to comment
Share on other sites

looks more like things are snafu'd with the configure.php file, you shuld post that here, (admin/includes/configure.ph_ without the database info, password, username

 

here it is :

 

<?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 © 2002 osCommerce

 

Released under the GNU General Public License

*/

 

// define our webserver variables

// FS = Filesystem (physical)

// WS = Webserver (virtual)

define('HTTP_SERVER', 'http://tilenhvertid.dk'); // eg, http://localhost or - https://localhost should not be NULL for productive servers

define('HTTP_CATALOG_SERVER', 'http://tilenhvertid.dk');

define('HTTPS_CATALOG_SERVER', '');

define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module

 

define('DIR_FS_DOCUMENT_ROOT', '/customers/tilenhvertid.dk/tilenhvertid.dk/httpd.www/

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

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

define('DB_SERVER', 'localhost');

define('DB_SERVER_USERNAME', 'xxxxxx');

define('DB_SERVER_PASSWORD', 'xxxxxxx');

define('DB_DATABASE', 'xxxxxxxxx');

define('USE_PCONNECT', 'false');

define('STORE_SESSIONS', 'mysql');

?>

Link to comment
Share on other sites

I dont know if it has something to do with "catalog" forexample here :

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

 

I have moved all my files to the root, this means i dont have the catalog directory !

Could it explain something ??

Link to comment
Share on other sites

ok now i have downloaded oscommerce again.

Here i see these options under checkout payment. For example "cash by delivery"

Where can i change this text ???

Link to comment
Share on other sites

ok now i have downloaded oscommerce again.

Here i see these options under checkout payment. For example "cash by delivery"

Where can i change this text ???

 

The text for your payment modules can be found at

 

includes/languages/english/modules/payment/ cod.php (for the cash on delivery) the others will the other files in the same folder.

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

Okay can you tell me what this means :

 

it comes here

/admin/categories.php?selected_box=catalog

 

1054 - Unknown column 'iso_code' in 'field list'

 

select code, title, symbol_left, symbol_right, decimal_point, thousands_point, decimal_places, value, iso_code from currencies

 

[TEP STOP]

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...