Page 93 of 99 FirstFirst ... 43839192939495 ... LastLast
Results 921 to 930 of 985
  1. #921
    Join Date
    Jun 2012
    Location
    California
    Posts
    202
    Plugin Contributions
    0

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

    Quote Originally Posted by wsworx View Post
    Hi Lat9

    I made the changes per GitHub
    I am getting a "This Page Isn't Working Right Now" and the below error in my log file when I go to LogIn:

    'PHP Parse error: syntax error, unexpected '->' (T_OBJECT_OPERATOR) in /home2/wildstee/public_html/Zcf294AkrVd6csa550FeF/includes/init_includes/init_typt_config.php on line 95'

    I looked at the file but I am no coder so I do not know how to fix it.

    Attachment 19623
    Okay I figured it out, good old Google.
    I added the dollar sign before the word sniffer

    if (!$sniffer->field_exists(TABLE_ORDERS_STATUS_HISTORY, 'track_id1')) {

    Now everything comes up and I get the " Ty Package Tracker v4.0.1-beta1 has been successfully installed." at the top of the page.
    Still testing everything else though

  2. #922
    Join Date
    Jun 2012
    Location
    California
    Posts
    202
    Plugin Contributions
    0

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

    Quote Originally Posted by wsworx View Post
    Okay I figured it out, good old Google.
    I added the dollar sign before the word sniffer

    if (!$sniffer->field_exists(TABLE_ORDERS_STATUS_HISTORY, 'track_id1')) {

    Now everything comes up and I get the " Ty Package Tracker v4.0.1-beta1 has been successfully installed." at the top of the page.
    Still testing everything else though
    Currently the " Ty Package Tracker v4.0.1-beta1 has been successfully installed." keeps showing up at the top of every page and none of the tracking info is showing up on the order pages or when I enter edit orders and I am no longer getting any DeBug files in my logs folder

  3. #923
    Join Date
    Jun 2012
    Location
    California
    Posts
    202
    Plugin Contributions
    0

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

    Quote Originally Posted by wsworx View Post
    Currently the " Ty Package Tracker v4.0.1-beta1 has been successfully installed." keeps showing up at the top of every page and none of the tracking info is showing up on the order pages or when I enter edit orders and I am no longer getting any DeBug files in my logs folder
    This is what I keep seeing now
    Click image for larger version. 

Name:	Code Issue 2.jpg 
Views:	16 
Size:	14.0 KB 
ID:	19624

  4. #924
    Join Date
    Jun 2012
    Location
    California
    Posts
    202
    Plugin Contributions
    0

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

    Quote Originally Posted by wsworx View Post
    This is what I keep seeing now
    Click image for larger version. 

Name:	Code Issue 2.jpg 
Views:	16 
Size:	14.0 KB 
ID:	19624
    Okay, I forgot to turn the TyP "Ty Package Tracker Module Switch" on
    That is now set to True and I am now seeing the tracking info in "Edit Order" but not in the regular "Order" screen
    I am continuing to see the " Ty Package Tracker v4.0.1-beta1 has been successfully installed." header at the top of every page

  5. #925
    Join Date
    Jun 2012
    Location
    California
    Posts
    202
    Plugin Contributions
    0

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

    Quote Originally Posted by wsworx View Post
    Okay, I forgot to turn the TyP "Ty Package Tracker Module Switch" on
    That is now set to True and I am now seeing the tracking info in "Edit Order" but not in the regular "Order" screen
    I am continuing to see the " Ty Package Tracker v4.0.1-beta1 has been successfully installed." header at the top of every page
    In addition to the above, when I click on a link in the Edit Order window it is adding the word "TARGET" to the end of the tracking number when it takes me to the link. In this case it is the USPS page. Of course that then causes USPS to state that no such tracking number exists.

    Click image for larger version. 

Name:	Code Issue 3.jpg 
Views:	17 
Size:	11.2 KB 
ID:	19625

  6. #926
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,493
    Plugin Contributions
    88

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

    Quote Originally Posted by wsworx View Post
    In addition to the above, when I click on a link in the Edit Order window it is adding the word "TARGET" to the end of the tracking number when it takes me to the link. In this case it is the USPS page. Of course that then causes USPS to state that no such tracking number exists.

    Click image for larger version. 

Name:	Code Issue 3.jpg 
Views:	17 
Size:	11.2 KB 
ID:	19625
    What version of EO is in use? Note that current (i.e. < v4.6.0) versions of EO still include the TyPT processing.

  7. #927
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,493
    Plugin Contributions
    88

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

    Quote Originally Posted by wsworx View Post
    In addition to the above, when I click on a link in the Edit Order window it is adding the word "TARGET" to the end of the tracking number when it takes me to the link. In this case it is the USPS page. Of course that then causes USPS to state that no such tracking number exists.

    Click image for larger version. 

Name:	Code Issue 3.jpg 
Views:	17 
Size:	11.2 KB 
ID:	19625
    Found it (arggh). In /admin/includes/classes/observers/TyPackageAdminObserver.php, towards the end of the file, find
    Code:
                $this->eo_field_display .= (constant("CARRIER_NAME_$ty") . ': <a href="' . constant("CARRIER_LINK_$ty") . $track_id . ' target="_blank" rel="noreferrer noopener">' . $track_id . '</a>&nbsp;');
    and add the missing closing double-quote:
    Code:
                $this->eo_field_display .= (constant("CARRIER_NAME_$ty") . ': <a href="' . constant("CARRIER_LINK_$ty") . $track_id . '" target="_blank" rel="noreferrer noopener">' . $track_id . '</a>&nbsp;');
    See also this (https://github.com/lat9/zen_TyPackageTracker/issues/7) GitHub issue for tracking.

  8. #928
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,493
    Plugin Contributions
    88

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

    Noting, too, that there's a fair amount of cleanup needed when upgrading from a previous version. See this (https://github.com/lat9/zen_TyPackag...ding_to_400.md) documentation for additional information.

  9. #929
    Join Date
    Jun 2012
    Location
    California
    Posts
    202
    Plugin Contributions
    0

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

    Quote Originally Posted by lat9 View Post
    Noting, too, that there's a fair amount of cleanup needed when upgrading from a previous version. See this (https://github.com/lat9/zen_TyPackag...ding_to_400.md) documentation for additional information.
    I did all of the cleanup as stated in the link previously so that shouldn't be an issue

  10. #930
    Join Date
    Jun 2012
    Location
    California
    Posts
    202
    Plugin Contributions
    0

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

    Quote Originally Posted by lat9 View Post
    What version of EO is in use? Note that current (i.e. < v4.6.0) versions of EO still include the TyPT processing.
    I have the most recent 4.5.7 available in the plugin section.
    Where do I get 4.6.0?

 

 
Page 93 of 99 FirstFirst ... 43839192939495 ... 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