Page 18 of 40 FirstFirst ... 8161718192028 ... LastLast
Results 171 to 180 of 393
  1. #171
    Join Date
    Aug 2009
    Posts
    13
    Plugin Contributions
    0

    Default Re: Gift Wrapping Contribution

    I just installed Gift Wrap Contribution 2-6_138 to my Zen Cart 1.3.8a and I get a blank page on checkout_shipping. When installing the module, I ran the sql script through Zen Cart Admin Install sql Patches rather than phpMyAdmin. It appears that the script executed correctly. My orders_giftwrap table has been set up with the orders_giftwrap_id, orders_products_id, orders_id and wrap field.

    Is my error in the sql table or should I be looking somewhere else? Any help would be appreciated.

  2. #172
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,294
    Plugin Contributions
    125

    Default Re: Gift Wrapping Contribution

    I have no way of knowing where the problem is. You should follow the blank page debugging instructions.
    https://www.zen-cart.com/tutorials/index.php?article=82
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  3. #173
    Join Date
    Aug 2009
    Posts
    13
    Plugin Contributions
    0

    Default Re: Gift Wrapping Contribution

    Thanks for the quick response. I wasn't aware of the debugging error logging tool.
    The debug error I get is as follows:
    [17-Sep-2009 11:33:42] PHP Fatal error: Cannot redeclare class order in /home/lcstesti/public_html/development/store/includes/classes/order.php on line 1061.

    My best guess is that it is a conflict between this module and a Gift Registry module I installed which also modified /includes/classes/order.php. I will research this further to see if I can resolve.

  4. #174
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,294
    Plugin Contributions
    125

    Default Re: Gift Wrapping Contribution

    My guess? Edit ./includes/modules/pages/checkout_shipping/header_php.php and change
    require(DIR_WS_CLASSES . 'order.php');
    to
    require_once(DIR_WS_CLASSES . 'order.php');

    Then see if there are other instances of include or require order.php and change them to include_once or require_once.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  5. #175
    Join Date
    Aug 2009
    Posts
    13
    Plugin Contributions
    0

    Default Re: Gift Wrapping Contribution

    Quote Originally Posted by swguy View Post
    My guess? Edit ./includes/modules/pages/checkout_shipping/header_php.php and change
    require(DIR_WS_CLASSES . 'order.php');
    to
    require_once(DIR_WS_CLASSES . 'order.php');

    Then see if there are other instances of include or require order.php and change them to include_once or require_once.
    Your guess better than mine! I modified ./includes/modules/pages/checkout_shipping/header_php.php from
    require(DIR_WS_CLASSES . 'order.php'); and
    require(DIR_WS_CLASSES . 'shipping.php');
    to
    require_once(DIR_WS_CLASSES . 'order.php'); and
    require_once(DIR_WS_CLASSES . 'shipping.php');

    and this resolved the blank screen issue. Thanks so much for quick response and help!

  6. #176
    Join Date
    Sep 2009
    Posts
    32
    Plugin Contributions
    0

    Default Re: Gift Wrapping Contribution

    Can Anyone help me merge two modules?
    I already have The Timezone Offset which I have to have and I would like to add the Giftwrap module. One file exists in the two mods, order.php. I have been through the forum and I can see the answer is to merge the two files but its too hectic for me. If anyone has done this can I have a copy of your file?
    Cheers
    Steve

  7. #177
    Join Date
    Oct 2009
    Posts
    17
    Plugin Contributions
    0

    Default Re: Gift Wrapping Contribution

    Quote Originally Posted by valerielat View Post

    Your guess better than mine! I modified ./includes/modules/pages/checkout_shipping/header_php.php from
    require(DIR_WS_CLASSES . 'order.php'); and
    require(DIR_WS_CLASSES . 'shipping.php');
    to
    require_once(DIR_WS_CLASSES . 'order.php'); and
    require_once(DIR_WS_CLASSES . 'shipping.php');

    and this resolved the blank screen issue. Thanks so much for quick response and help!

    Hi

    I am having the same problem I just installed Gift Wrap Contribution 2-6_138 to my Zen Cart 1.3.8a and I get a blank page on checkout_shipping. I used the Black page debug Tool and I am getting the following error
    ---------------
    PHP Fatal error: Cannot redeclare class order in /usr/local/pem/vhosts/200456/webspace/httpdocs/Shop/includes/classes/order.php on line 20
    --------------------

    require_once(DIR_WS_CLASSES . 'order.php');did not work
    Any help would be appreciated.

    Thanks
    Tony
    ##############################

  8. #178
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,294
    Plugin Contributions
    125

    Default Re: Gift Wrapping Contribution

    You have installed another mod that includes the class order after gift wrapping then.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  9. #179
    Join Date
    Oct 2009
    Posts
    17
    Plugin Contributions
    0

    Default Re: Gift Wrapping Contribution

    Quote Originally Posted by swguy View Post
    You have installed another mod that includes the class order after gift wrapping then.
    Thanks for a quick reply

    Gift wrapping was the last Mod I installed.

    However, I just noticed that when you are buying a gift certificate you do not get the blank checkout page however if you are buying a regular item or a Free shipping item you get a white screen at checkout.

    Thanks

    Tony

  10. #180
    Join Date
    Aug 2009
    Posts
    13
    Plugin Contributions
    0

    Default Re: Gift Wrapping Contribution

    Quote Originally Posted by erko View Post
    Hi Scott,

    Thanks for this contribution~

    I'm running 1.38 and stock by attributes. I had no issues installing the GW mod, and have merged my code. I have also installed the module via Admin/Modules/Order Totals.

    On the shipping page (Step 1) - everything is good and well. I see the GW checkboxes (which i can check).
    However, when I get to payment page (Step 2), the GW label + total are missing and not reflected in the order total.
    From here if I complete the checkout - the invoice totals do not reflect GW. This is also the case when i check the orders via admin.

    Any pointers to which code to look at?

    Thanks.
    erko
    Did anyone find a resolution to this problem? I don't see a resolution in the thread. I seem to be having the same issue.

 

 
Page 18 of 40 FirstFirst ... 8161718192028 ... LastLast

Similar Threads

  1. Gift Wrapping
    By Ms_X in forum General Questions
    Replies: 1
    Last Post: 23 Jan 2011, 03:05 AM
  2. Gift Wrapping Contribution
    By rascald in forum General Questions
    Replies: 0
    Last Post: 4 Jul 2009, 10:10 AM
  3. Gift Wrapping
    By Patpete in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 5 Sep 2008, 06:28 AM
  4. Gift Wrapping
    By AvieLF in forum General Questions
    Replies: 6
    Last Post: 6 Mar 2007, 01:56 AM
  5. Gift Wrapping
    By tbrides in forum General Questions
    Replies: 7
    Last Post: 3 Feb 2007, 10:12 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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR