Page 47 of 100 FirstFirst ... 3745464748495797 ... LastLast
Results 461 to 470 of 998
  1. #461
    Join Date
    Mar 2010
    Posts
    3
    Plugin Contributions
    0

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    Hi,

    here is the cache:
    Code:
    [23-jan-2011 13:18:25] PHP Fatal error:  Call to undefined function: zen_db_scrub_in() in /homez.25/secretdef/www/site_dreads/galaxy/orders.php on line 89
    I changed
    Code:
    // TY TRACKER 1 BEGIN, DEFINE VALUES  ----------------------------------------------
            $track_id1 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id1']));
            $track_id2 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id2']));
            $track_id3 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id3']));
            $track_id4 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id4']));
            $track_id5 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id5']));
    		// END TY TRACKER 1 ------------------------------------------------------------------
    to:
    Code:
     	// TY TRACKER 1 BEGIN, DEFINE VALUES  ----------------------------------------------
            $track_id1 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id1']));
            $track_id2 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id2']));
            $track_id3 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id3']));
            $track_id4 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id4']));
            $track_id5 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id5']));
    		// END TY TRACKER 1 ------------------------------------------------------------------
    Now seems to work fine...

  2. #462
    Join Date
    Jan 2011
    Posts
    2
    Plugin Contributions
    0

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    Ohh man u saved my website :), with ur answer i resolved the problem i had .

    but i still need one last thing.

    i need the canapost tracking link to put it in the configuration settings.

    could anyone help me. ???

    Thanks everyone.




    Quote Originally Posted by spacecowboy View Post
    Hi,

    here is the cache:
    Code:
    [23-jan-2011 13:18:25] PHP Fatal error:  Call to undefined function: zen_db_scrub_in() in /homez.25/secretdef/www/site_dreads/galaxy/orders.php on line 89
    I changed
    Code:
    // TY TRACKER 1 BEGIN, DEFINE VALUES  ----------------------------------------------
            $track_id1 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id1']));
            $track_id2 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id2']));
            $track_id3 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id3']));
            $track_id4 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id4']));
            $track_id5 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id5']));
    		// END TY TRACKER 1 ------------------------------------------------------------------
    to:
    Code:
     	// TY TRACKER 1 BEGIN, DEFINE VALUES  ----------------------------------------------
            $track_id1 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id1']));
            $track_id2 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id2']));
            $track_id3 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id3']));
            $track_id4 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id4']));
            $track_id5 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id5']));
    		// END TY TRACKER 1 ------------------------------------------------------------------
    Now seems to work fine...

  3. #463
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    If you would read through the support thread BEFORE posting questions, you would have seen that the solution to this issue was posted already with the corrected file..

    http://www.zen-cart.com/forum/showth...=36126&page=44


    Quote Originally Posted by spacecowboy View Post
    Hi,

    here is the cache:
    Code:
    [23-jan-2011 13:18:25] PHP Fatal error:  Call to undefined function: zen_db_scrub_in() in /homez.25/secretdef/www/site_dreads/galaxy/orders.php on line 89
    I changed
    Code:
    // TY TRACKER 1 BEGIN, DEFINE VALUES  ----------------------------------------------
            $track_id1 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id1']));
            $track_id2 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id2']));
            $track_id3 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id3']));
            $track_id4 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id4']));
            $track_id5 = str_replace(" ", "", zen_db_scrub_in($_POST['track_id5']));
            // END TY TRACKER 1 ------------------------------------------------------------------
    to:
    Code:
         // TY TRACKER 1 BEGIN, DEFINE VALUES  ----------------------------------------------
            $track_id1 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id1']));
            $track_id2 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id2']));
            $track_id3 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id3']));
            $track_id4 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id4']));
            $track_id5 = str_replace(" ", "", zen_db_prepare_input($_POST['track_id5']));
            // END TY TRACKER 1 ------------------------------------------------------------------
    Now seems to work fine...
    Quote Originally Posted by alzoubei View Post
    Ohh man u saved my website :), with ur answer i resolved the problem i had .

    but i still need one last thing.

    i need the canapost tracking link to put it in the configuration settings.

    could anyone help me. ???

    Thanks everyone.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  4. #464
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    Does anyone know if there's a way to set up this mod to auto update with a cronjob?

  5. #465
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    Quote Originally Posted by joyjoy View Post
    Does anyone know if there's a way to set up this mod to auto update with a cronjob?
    What would you be looking to auto update??
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  6. #466
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    The tracking status? Sounds like you'd need a mega brain to figure that out...or if it's even possible. But since you're so brilliant, I figure I'd ask.

    I was wondering if it could be set up the way that the update currency is set up. It runs on a cronjob to your settings and updates with the information it retreives.

  7. #467
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    Quote Originally Posted by joyjoy View Post
    The tracking status? Sounds like you'd need a mega brain to figure that out...or if it's even possible. But since you're so brilliant, I figure I'd ask.

    I was wondering if it could be set up the way that the update currency is set up. It runs on a cronjob to your settings and updates with the information it retreives.
    I'm still not sure I understand what you are trying to automate or HOW it's related to this module. With regards to this module, the ONLY way that the tracking data is updated is if you explicitly enter it.. You can't automate the manual entry of tracking data.. Automation of tracking data requires that the tracking data is grabbed from an external source automatically and stored in the DB which would allow this module to grab the tracking data and apply it to a specific order..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  8. #468
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    The 2nd part there was right.

    I was just wondering if there is any way that this mod could be set up to retreive information from external source automatically and store it in the DB which would allow this module to grab the tracking data and apply it to a specific order.

    Thank you.

  9. #469
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    Quote Originally Posted by joyjoy View Post
    The 2nd part there was right.

    I was just wondering if there is any way that this mod could be set up to retreive information from external source automatically and store it in the DB which would allow this module to grab the tracking data and apply it to a specific order.

    Thank you.
    I'm sure it could be done with LOTS AND LOTS of custom programming to the various supported shipping modules to retrieve and store this information (assuming of course that this information is stored in an accessible source and the shipping carriers provide a means to query and retrieve this this data)

    I have no plans to add that level of functionality into this module.. Too many unknowns in terms of feasibility, too many dependent requirements that would/could break if the carriers API's changed, and to do this right it would really need to be done to support three carriers with differing API's (the method used to executed this for one carrier may not apply to the next, and/or this functionality may not be support by all carriers)..

    Too complex to make it a worthwhile adventure to take on for a FREE module IMHO.. If you really want this capability, you should investigate paying a developer to create the custom code needed for the carrier's your store supports..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  10. #470
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    Okay, I'm not too familiar with this stuff but I assumed it would be a complicated task. I was just curious.

    Thank you!

 

 
Page 47 of 100 FirstFirst ... 3745464748495797 ... LastLast

Similar Threads

  1. v150 Is there a FedEx plugin to quote on package size and postal code/zone?
    By Music Man in forum Addon Shipping Modules
    Replies: 7
    Last Post: 3 Aug 2014, 10:30 PM
  2. UPS/DHL shipping in Europe
    By DML73 in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 29 Jan 2009, 09:43 PM
  3. what is the track your package url?
    By keylesslocks in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 29 Aug 2008, 06:49 PM
  4. going from small package to large package
    By luna_99 in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 19 Nov 2007, 02:44 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