Results 1 to 5 of 5

Live Store- Emergency - Option Type Feature Error

This is a discussion on Live Store- Emergency - Option Type Feature Error within the osCMax v1.7 Installation forums, part of the osCmax v1.7 Forums category; I had my oscmax 1.7 development store setup and fully running, BUT when I moved it over to my live ...

      
  1. #1
    Member
    Join Date
    Jan 2005
    Posts
    93
    Rep Power
    0


    Default Live Store- Emergency - Option Type Feature Error

    I had my oscmax 1.7 development store setup and fully running, BUT when I moved it over to my live server, I found that the OPTION TYPE FEATURE contribution is ONLY sending me "TEXT" in my order emails.

    In shopping_cart.php, the correct text is shown. BUT, in the "Order Process" email, only "TEXT" is sent.

    CAN ANYONE help me fix this?

  2. #2
    Member
    Join Date
    Jan 2005
    Posts
    93
    Rep Power
    0


    Default RE: Live Store- Emergency - Option Type Feature Error

    If someone can tell me with certainty which file actually SENDS the "Order Process" email to the admin and the customer, then I can try sticking the stock oscmax1.7 file back in, to see if this fixes the problem.

    So, which file actually SENDS the "Order Process" email to the admin and the customer?

  3. #3
    Member
    Join Date
    Dec 2004
    Posts
    75
    Rep Power
    8


    Default Re: RE: Live Store- Emergency - Option Type Feature Error

    Quote Originally Posted by adam71o
    If someone can tell me with certainty which file actually SENDS the "Order Process" email to the admin and the customer, then I can try sticking the stock oscmax1.7 file back in, to see if this fixes the problem.

    So, which file actually SENDS the "Order Process" email to the admin and the customer?
    I had this same problem with orders processed through paypal. It has it's own order_process file under catalog/includes/modules/paypal...

    I can't remember what I did to fix this, but I'll look for it tonight and post a solution if you are seeing this problem with Paypal as well.
    Brian Neuman
    Webmaster
    www.honeybeadjewelry.com

  4. #4
    Member
    Join Date
    Jan 2005
    Posts
    93
    Rep Power
    0


    Default RE: Re: RE: Live Store- Emergency - Option Type Feature Erro

    Any suggestions on that paypal fix?

  5. #5
    Member
    Join Date
    Dec 2004
    Posts
    75
    Rep Power
    8


    Default Re: RE: Re: RE: Live Store- Emergency - Option Type Feature

    Quote Originally Posted by adam71o
    Any suggestions on that paypal fix?
    Okay, first of all, I upgraded the Paypal IPN module included with OSCMax to version 2.9. You can find it here:

    http://www.oscommerce.com/community/contributions,1753

    There are more current versions, but 2.9 works for me and I haven't upgraded further yet.

    The file structure is totally different than that included with OSCMax, but it was so buggy, you should upgrade if you haven't.

    The changes I had to make were in the following files:

    in catalog/includes/modules/payment/paypal/classes/osC/Order.class.php:

    Change this line, around midway down, line 137:

    Code:
    $products_ordered_attributes .= "\n\t" . $attributes_values['products_options_name'] . ' ' . $attributes_values['products_options_values_name'];
    To this:

    Code:
    $products_ordered_attributes .= "\n\t" . $attributes_values['products_options_name'] . ' ' . tep_decode_specialchars($order->products[$i]['attributes'][$j]['value']);
    And in catalog/includes/modules/payment/paypal/catalog/checkout_process.inc.php:

    Change this, toward the end of the file:

    Code:
    'products_options_values' => $attributes_values['products_options_values_name'],
    to This:

    Code:
    'products_options_values' => $order->products[$i]['attributes'][$j]['value'],
    That did it for me - let me know if you have any questions...
    Brian Neuman
    Webmaster
    www.honeybeadjewelry.com

Similar Threads

  1. Back End Help for Option Type Feature 1.6
    By makemethis in forum osCmax v1.7 Discussion
    Replies: 2
    Last Post: 09-16-2005, 07:24 AM
  2. Option Type Feature
    By adam71o in forum osCMax v1.7 Installation
    Replies: 2
    Last Post: 04-24-2005, 02:08 PM
  3. Option Type feature/contribution - bug - help!!
    By jasonabc in forum osCommerce 2.2 Modification Help
    Replies: 2
    Last Post: 11-17-2004, 01:19 PM
  4. Have BTS 1.2a, want to add Option Type Feature
    By nfmg in forum osCMax v1.7 General Mods Discussion
    Replies: 1
    Last Post: 05-31-2004, 04:50 PM
  5. Option Type Feature v1.6 for MS2-MAX v1.5.5
    By michael_s in forum osCmax v1.7 Discussion
    Replies: 3
    Last Post: 01-23-2004, 01:09 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •