-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Quote:
Originally Posted by
echexxxxxxxx10
Did customers get a status update emails prior to installing this?
You never answered my other question. Of course, check spam folders too.
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Quote:
Originally Posted by
jeking
You never answered my other question. Of course, check spam folders too.
Now it works correctly, I had to change the settings for how to send emails. thank you very much for helping
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Despite I downloaded Ty Package Tracker Version 3.1.6.
After I installed, it still gave me notification that Ty Package Tracker Version 3.1.5 installed successfully.
I wonder if this just just numbering error?
(Yes, I installed on ZC 1.5.6a).
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Quote:
Originally Posted by
PanZC2020
Despite I downloaded Ty Package Tracker Version 3.1.6.
After I installed, it still gave me notification that Ty Package Tracker Version 3.1.5 installed successfully.
I wonder if this just just numbering error?
(Yes, I installed on ZC 1.5.6a).
Yes, just a numbering error. I missed updating the version number. I'll catch it next release.
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
recently we have this issue with this plug in.
ZC 1.5.6a
Ty Package Tracker Version 3.1.6.
Here is the Logs:
[08-Mar-2019 09:22:44 America/New_York] Request URI: /index.php?main_page=down_for_maintenance, IP address: 40.77.167.20
#1 sizeof() called at [/homepages/29/xxxxx/htdocs/DIY2019/includes/templates/template_default/sideboxes/tpl_track_orders.php:19]
#2 require(/homepages/29/xxxxx/htdocs/DIY2019/includes/templates/template_default/sideboxes/tpl_track_orders.php) called at [/homepages/29/xxxxx/htdocs/DIY2019/includes/modules/sideboxes/track_orders.php:55]
#3 require(/homepages/29/xxxxx/htdocs/DIY2019/includes/modules/sideboxes/track_orders.php) called at [/homepages/29/xxxxx/htdocs/DIY2019/includes/modules/column_right.php:32]
#4 require(/homepages/29/xxxxx/htdocs/DIY2019/includes/modules/column_right.php) called at [/homepages/29/xxxxx/htdocs/DIY2019/includes/templates/responsive_classic/common/tpl_main_page.php:200]
#5 require(/homepages/29/xxxxx/htdocs/DIY2019/includes/templates/responsive_classic/common/tpl_main_page.php) called at [/homepages/29/xxxxx/htdocs/DIY2019/index.php:97]
--> PHP Warning: sizeof(): Parameter must be an array or an object that implements Countable in /homepages/29/xxxxx/htdocs/DIY2019/includes/templates/template_default/sideboxes/tpl_track_orders.php on line 19.
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Quote:
Originally Posted by
dsc7050
recently we have this issue with this plug in.
ZC 1.5.6a
Ty Package Tracker Version 3.1.6.
Here is the Logs:
[08-Mar-2019 09:22:44 America/New_York] Request URI: /index.php?main_page=down_for_maintenance, IP address: 40.77.167.20
#1 sizeof() called at [/homepages/29/xxxxx/htdocs/DIY2019/includes/templates/template_default/sideboxes/tpl_track_orders.php:19]
#2 require(/homepages/29/xxxxx/htdocs/DIY2019/includes/templates/template_default/sideboxes/tpl_track_orders.php) called at [/homepages/29/xxxxx/htdocs/DIY2019/includes/modules/sideboxes/track_orders.php:55]
#3 require(/homepages/29/xxxxx/htdocs/DIY2019/includes/modules/sideboxes/track_orders.php) called at [/homepages/29/xxxxx/htdocs/DIY2019/includes/modules/column_right.php:32]
#4 require(/homepages/29/xxxxx/htdocs/DIY2019/includes/modules/column_right.php) called at [/homepages/29/xxxxx/htdocs/DIY2019/includes/templates/responsive_classic/common/tpl_main_page.php:200]
#5 require(/homepages/29/xxxxx/htdocs/DIY2019/includes/templates/responsive_classic/common/tpl_main_page.php) called at [/homepages/29/xxxxx/htdocs/DIY2019/index.php:97]
--> PHP Warning: sizeof(): Parameter must be an array or an object that implements Countable in /homepages/29/xxxxx/htdocs/DIY2019/includes/templates/template_default/sideboxes/tpl_track_orders.php on line 19.
What PHP version?
Is this just an error in the logs or also on the front-end?
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Quote:
Originally Posted by
jeking
What PHP version?
Is this just an error in the logs or also on the front-end?
PHP Version 7.2.15
just in the logs folder..Front-end no problem.
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
In includes/templates/template_default/sideboxes/tpl_track_orders.php
replace line 19
Code:
if (sizeof($customer_orders)==0) {
with
Code:
if (is_array($customer_orders) && (sizeof($customer_orders)==0) {
I have *not* tested this so keep a backup of the original file and test the results after the change.
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Quote:
Originally Posted by
jeking
In includes/templates/template_default/sideboxes/tpl_track_orders.php
replace line 19
Code:
if (sizeof($customer_orders)==0) {
with
Code:
if (is_array($customer_orders) && (sizeof($customer_orders)==0) {
I have *not* tested this so keep a backup of the original file and test the results after the change.
Thanks..once i change the code, it's stop show error on the logs folder, but on the Front-end not showing up the (Track order), also i check the layout box controller, the tracking_order.php Left/Right column status is ON, single Column status: ON.
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Quote:
Originally Posted by
dsc7050
Thanks..once i change the code, it's stop show error on the logs folder, but on the Front-end not showing up the (Track order), also i check the layout box controller, the tracking_order.php Left/Right column status is ON, single Column status: ON.
Ok, revert to the old file and I'll take a look as soon as I can.