Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Problem with Discount Coupon Contribution


HackerJack

Recommended Posts

Hello everyone,

 

I installed the Discount Coupon Add-On and created some Codes. When I tested the Add-On typing in a wrong code, I am forwarded to the checkout_confirmation.php page without any reaction. No discount is shown.

 

I made sure the Add-On is installed correctly and it is.

 

PLEASE HELP!

 

Thanks

Link to comment
Share on other sites

Hello everyone,

 

I installed the Discount Coupon Add-On and created some Codes. When I tested the Add-On typing in a wrong code, I am forwarded to the checkout_confirmation.php page without any reaction. No discount is shown.

 

I made sure the Add-On is installed correctly and it is.

 

PLEASE HELP!

 

Thanks

Is any discount being deducted? If not than the only problem is that there is no error given on the wrong number...

 

Brgds

Link to comment
Share on other sites

Nothings is being deducted at all. Neither when I enter the correct code nor when I enter the wrong code. I am forwarded to the checkout_confirmation.php page without any differences to the shop without discount coupon Add-On installed.

 

ANY IDEAS?

 

THANKS!!

Link to comment
Share on other sites

  • 2 weeks later...
Nothings is being deducted at all. Neither when I enter the correct code nor when I enter the wrong code. I am forwarded to the checkout_confirmation.php page without any differences to the shop without discount coupon Add-On installed.

 

ANY IDEAS?

 

THANKS!!

 

Hi, Jack!

Perhaps you have met the same problem like Avec...check the post here...

 

http://www.oscommerce.com/forums/index.php?showtopic=287700

 

If you still have problem...try to get me...it should not be a serious problem...

Link to comment
Share on other sites

  • 2 weeks later...

For those that have installed this, would you be so kind as to instruct a newbie on what the following direction means

 

Create the database tables

 

Run these statements via the SQL tab in phpMyAdmin.

 

 

CREATE TABLE discount_coupons (

coupons_id varchar(32) NOT NULL default '',

coupons_description varchar(64) NOT NULL default '',

coupons_discount_percent decimal(7,4) default NULL,

date_start datetime default NULL,

date_end datetime default NULL,

max_use int(3) NOT NULL default 0,

min_order decimal(15,4) NOT NULL default '0.0000',

PRIMARY KEY (coupons_id)

);

 

CREATE TABLE discount_coupons_to_orders (

discount_coupons_to_orders_id int(11) NOT NULL auto_increment,

coupons_id varchar(32) default NULL,

orders_id int(11) default 0,

PRIMARY KEY (discount_coupons_to_orders_id)

);

 

 

This statement specifically, Run these statements via the SQL tab in phpMyAdmin.

 

where do I run this? I am using the OSCommerce interface for everything.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...