Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

msaz87

Archived
  • Posts

    23
  • Joined

  • Last visited

Everything posted by msaz87

  1. I'm trying to configure FEC with Discount Coupons by KGT. From the files needing to be edited, it looks like there's only four that overlap between the two contribs: checkout_confirmation.php checkout_payment.php checkout_process.php logoff.php Initially I had DC working just fine and then when I installed FEC, it naturally stopped. But after editing the above files with the right DC code, it still doesn't work and I'm not sure why. Has anyone set this up before who could help? Thanks.
  2. I've tried searching for a contribution but can't seem to find one for what I'd like to do. I want to have some secret items that are only accessible by going to a specific URL. This URL could then be given out to people, etc. I've looked at hidden category contribs and such, but nothing seems to really fit what I'm going for. Does anyone have any ideas? Thanks.
  3. Changing the SQL fixed that problem, but I've run into another. I can create a new discount coupon, but it doesn't show up. This I assume is because the step of the installation where you go into admin>modules>order total and install, I don't see the Discount Coupon option. There's no error or anything of that sort and when I try to go through a purchase of an item with a created coupon, no dice there either. Any ideas? Thanks.
  4. Hi all, I've been trying to install the latest version of the contribution but am receiving the following error when I go to admin>catalog>discount coupons: I've tried to search for a solution but have come up with only ideas. The prevailing one is that I've installed old SQL tables. I installed the following: 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 ) );# MySQL returned an empty result set (i.e. zero rows). 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 ) , KEY coupons_id( coupons_id ) );# MySQL returned an empty result set (i.e. zero rows). Any help would be appreciated. Thanks.
×
×
  • Create New...