Page 20 of 202 FirstFirst ... 1018192021223070120 ... LastLast
Results 191 to 200 of 2020
  1. #191
    Join Date
    Sep 2004
    Posts
    1,388
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    Quote Originally Posted by wickedklown View Post
    Im pretty sure im useing US standard date format, is there a setting for that? or is this set from my server and its settings?
    i dont believe that i have any of modualy that mess with dates at all. as far as i know.

    i believe that the rest of them do show that time you stated.
    why is this happening? somtimes there are 3 of them on an order. and always there is a correct one that shows the true payment data.

    any thing you can advise for me?
    These bad dates are appareaing on the Order Details page, on the green payment lines, correct? Open admin/super_orders.php. Find this line...
    Code:
    <td class="paymentContent" align="center"><?php echo zen_datetime_short($so->payment[$a]['posted']); ?></td>
    This line and the one directly below it use the zen_datetime_short() function. Remove that function from both lines, so it looks like this...
    Code:
    <td class="paymentContent" align="center"><?php echo $so->payment[$a]['posted']; ?></td>
    <td class="paymentContent" align="center"><?php echo $so->payment[$a]['modified']; ?></td>
    Upload the file, look at an order with the offending dates, and tell me what they read as. (Dev note: The dates being displayed are now exactly what is being stored in the DB. By looking at these values we can tell if they are not being stored correctly, or if your shop's coding is at fault.)

    Quote Originally Posted by tiger View Post
    YEAY! THANK YOU BLINDSIDE - IT WORKED! Your help is epically appreciated!
    Glad to hear it.
    Frank Koehl
    "Cleverly Disguised as a Responsible Adult"

    frankkoehl.com

  2. #192
    Join Date
    Jan 2006
    Posts
    420
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by BlindSide View Post
    @crazycucumber et. al.
    Regarding e-mails not going out in the batch updater. I got way behind on the old SO support thread, so this is the first I'm hearing about this. I'll have to take a look at the code for some ideas, but is this limited to those who use a local e-mail server? (Local server is Admin > Configuration > E-mail Options > E-Mail Transport Method > "sendmail"). Can you send order update e-mails without issue from the SO order details page? ........
    .......
    Spam is always a suspect cause. If you are having this problem, make sure you are looking in spam folders. Unfortunately, this not something that I can help you with. My advice is to train your spam folders better, warn your customers when they sign up about (give them the "from" address), keep an eye on blacklists to make sure you aren't listed, and (if all else fails) change the text in the e-mail.
    My settings are set to sendmail , I will try and get SMTP set up and working and test it that way.

    Don't think it is spam , as the red cross is appearing in the update customer box etc . as if it never sent. Could it be a permissions thing ? I installed the easy Admin tool thing ( before super orders ) to create new users under admin , I have set myself and other user full perms to the super orders mod , but still no joy ! .
    Various Zen cart sites !

  3. #193

    Default Re: Super Orders 2.0

    Quote Originally Posted by BlindSide View Post
    These bad dates are appareaing on the Order Details page, on the green payment lines, correct? Open admin/super_orders.php. Find this line...
    Code:
    <td class="paymentContent" align="center"><?php echo zen_datetime_short($so->payment[$a]['posted']); ?></td>
    This line and the one directly below it use the zen_datetime_short() function. Remove that function from both lines, so it looks like this...
    Code:
    <td class="paymentContent" align="center"><?php echo $so->payment[$a]['posted']; ?></td>
    <td class="paymentContent" align="center"><?php echo $so->payment[$a]['modified']; ?></td>
    Upload the file, look at an order with the offending dates, and tell me what they read as. (Dev note: The dates being displayed are now exactly what is being stored in the DB. By looking at these values we can tell if they are not being stored correctly, or if your shop's coding is at fault.)
    by offending dates - you mean find an order that has 2 payments, one with correct data and one with $0.00. and the dates should NOT match?

    This is my most current order. This is the second payment created (YES in green payments bar) it now shows all 0's
    $0.00 0000-00-00 00:00:00 0000-00-00 00:00:00

    Unfortunitly, the manager told them to remove the other payment data that was not valid- so that is now the only one that i have showing 2 payments.

    i told them to leave them be for now, becuase i need to look at them. so when the next order comes in, ill post what it says.
    if this is a coding problem within my site, how will i track it down, and is there someone here that i can hire to fix it?
    thanks again for your time BS- im sorry to be a pain..
    Last edited by wickedklown; 10 Oct 2006 at 07:14 PM.
    Super Orders2
    Info at a glance
    export email address
    encrypted master pass
    quick updates
    recover carts
    order Tracking
    Tabbed products lite - admin edition
    Hosted with sashbox.net <- best host around...

  4. #194
    Join Date
    May 2005
    Posts
    25
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by BlindSide View Post
    @crazycucumber et. al.
    Regarding e-mails not going out in the batch updater. I got way behind on the old SO support thread, so this is the first I'm hearing about this. I'll have to take a look at the code for some ideas, but is this limited to those who use a local e-mail server? (Local server is Admin > Configuration > E-mail Options > E-Mail Transport Method > "sendmail"). Can you send order update e-mails without issue from the SO order details page?
    Confirmation that SMTP does not batch while status update emails send fine.

    Quote Originally Posted by BlindSide View Post
    @crazycucumber et. al.
    Did you check the box that appears next to the text "Point order at a different customer:"? This box must eb checked for the customer change to occur. It'sa fail safe to prevent users with fast fingers from inadvertently changing the customer.
    :) Stupid me. Uncomment the following line found in admin/super_edit.php:
    PHP Code:
    //$update['customers_id'] = $_POST['customers_id']; 
    to

    PHP Code:
    $update['customers_id'] = $_POST['customers_id']; 
    The original file comments out the above code as well Frank. Thanks for the support and the contrib! Take care,

    Bjorn

  5. #195

    Default Re: Super Orders 2.0

    Optional Edits QUESTION!

    Blindside,
    hay man
    i setup some of the optional file edits. and i noticed something about the define for super orders in place of the standard orders.php system.

    when im at the admin homepage, and i click on one of my new orders, it only takes me to the listing for new orders, it dont take me directly to that order that i selected.

    I noticed that the link isnt that same as when i call them from super_orders itself.

    is there any way to correct this? how do i change the link to go directly to a customers order.

    action=edit?oid=
    somthing like that?
    Super Orders2
    Info at a glance
    export email address
    encrypted master pass
    quick updates
    recover carts
    order Tracking
    Tabbed products lite - admin edition
    Hosted with sashbox.net <- best host around...

  6. #196
    Join Date
    Sep 2006
    Location
    United Kingdom
    Posts
    195
    Plugin Contributions
    0

    Default why is the order total still showing money is owed??

    when a customer pays by paypal and it auto updates the status of the order it appears that it si not actually applying the payment to the invoice total for this order (see below to understand what i meen as its awkward to explain)

    basically as you can see in the picture below on the part marked as (A) we have recieved a paypal ipn payment but if you look at the part marked (B) that payment has not been applied to the account or the invoice total so this meens that according to (C) there is still £18.45 oustanding

    is there any way to get this to auto update without me having to make a manual adjustment and apply the money manually??


  7. #197

    Default Re: Super Orders 2.0

    nevermind i fixed it.

    i changed the index.php under admin to add the fallowing action=edit&oid=

    around line 171 (i have a customized index page) find the code

    <div class="row"><span class="left"><a href="' . zen_href_link(FILENAME_ORDERS,

    right after that you will see:

    'oid='

    change to

    'action=edit&oid='

    that will bring up the corrisponding order in super_orders.php

    NOTE: you must have changed the OPTIONAL FILE EDIT for filenames.php in /includes/
    Super Orders2
    Info at a glance
    export email address
    encrypted master pass
    quick updates
    recover carts
    order Tracking
    Tabbed products lite - admin edition
    Hosted with sashbox.net <- best host around...

  8. #198

    Default Re: why is the order total still showing money is owed??

    Quote Originally Posted by modchipfitters.co.uk View Post
    when a customer pays by paypal and it auto updates the status of the order it appears that it si not actually applying the payment to the invoice total for this order (see below to understand what i meen as its awkward to explain)

    basically as you can see in the picture below on the part marked as (A) we have recieved a paypal ipn payment but if you look at the part marked (B) that payment has not been applied to the account or the invoice total so this meens that according to (C) there is still £18.45 oustanding

    is there any way to get this to auto update without me having to make a manual adjustment and apply the money manually??

    you will have to manualy add the paypal payment to the order for now.
    Blindside said that he already has that automated for the next release.

    all of us have to do it for now. Its pretty simple. and really you dont want paypal data to be automated if you accept e-checks via paypal. they take about a week to clear, and your sales report would be incorrect if it was auto added.

    just add the payment data into super orders and it will show you the correct ballance.

    hope that helps.
    Super Orders2
    Info at a glance
    export email address
    encrypted master pass
    quick updates
    recover carts
    order Tracking
    Tabbed products lite - admin edition
    Hosted with sashbox.net <- best host around...

  9. #199
    Join Date
    Sep 2006
    Location
    United Kingdom
    Posts
    195
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    ok thanx

    just gonna be a bit of a pain when i gotta do it for 40-50 orders a day lol

    any idea when the new release will be showing its head??

  10. #200
    Join Date
    Sep 2006
    Location
    United Kingdom
    Posts
    195
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    btw 1 other thing how can i add paypal to the drop down box when im applying a payment cause at the mo there cash cheque and various credit card types but no paypal

    heres the box that i meen
    Attached Images Attached Images  

 

 

Similar Threads

  1. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 804
    Last Post: 18 Apr 2025, 12:04 AM
  2. v139h Super Orders v3.0 Support Thread (for ZC v1.3.9)
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1018
    Last Post: 28 Apr 2014, 11:38 PM
  3. RE: Super Orders v3.0 Support Thread
    By Johnnyd in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Jun 2011, 09:28 AM
  4. Super Orders 2.0 postage marks with Super Orders
    By sketchhgal in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Mar 2009, 03:05 PM
  5. Edit Orders and Super Orders, anyone doing that?
    By swamyg1 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 4 Feb 2009, 06:03 AM

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