Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls

X-Cart v4.4.3 released

 
Closed Thread
   X-Cart forums > News and Announcements
 
Thread Tools
  #31  
Old 05-12-2011, 01:54 AM
 
FiberGuy FiberGuy is offline
 

Advanced Member
  
Join Date: Jan 2007
Posts: 88
 

Default Re: X-Cart v4.4.3 released

I see upgrade packs in my file area. WOO-HOO!

=)
__________________
~Michael~
a.k.a. PermaNoob
V.4.4.3 *HELP!*
Apache/Linux OS
EWD Hosting VPS
  #32  
Old 05-12-2011, 02:09 AM
  chamberinternet's Avatar 
chamberinternet chamberinternet is offline
 

X-Wizard
  
Join Date: Sep 2005
Location: Lancashire, UK
Posts: 1,470
 

Default Re: X-Cart v4.4.3 released

Quote:
Originally Posted by FiberGuy
I see upgrade packs in my file area. WOO-HOO

Brill!
__________________
Developing in 4.7.x now (Dipping into v5 - Slowly!)
Have used 4.1.x, 4.2.x, 4.4.x, 4.5.x, 4.6.x & 4.7.x
Multiple Instances of X-Cart
MySQL 5.6.37
CentOS 7.4


Chamber Internet
- Lancashire, United Kingdom
http://www.chamberelancs.co.uk
  #33  
Old 05-12-2011, 04:24 AM
  seyfin's Avatar 
seyfin seyfin is offline
 

X-Cart team
  
Join Date: May 2004
Posts: 1,223
 

Default Re: X-Cart v4.4.3 released

The upgrade packs for X-Cart from 4.4.0-4.4.2 to v4.4.3 have been released and available for downloading in the "My licenses" section in your personal Helpdesk:

http://help.qtmsoft.com/index.php?title=Using_your_Qualiteam_Account#My_li censes
__________________
Sincerely yours,
Sergey Fomin
X-Cart team
Chief support group engineer

===

Check this out. Totally revamped X-Cart hosting
http://www.x-cart.com/hosting.html

Follow us:
https://twitter.com/x_cart / https://www.facebook.com/xcart / https://www.instagram.com/xcart
  #34  
Old 05-12-2011, 07:57 AM
 
hyena hyena is offline
 

Advanced Member
  
Join Date: Mar 2011
Posts: 33
 

Default Re: X-Cart v4.4.3 released

Ok, I unpacked the update, and ftp the whole thing to my xcart directory. But in the admin upgrade page it says No patches available. What do I need to do to make this work? Oh wait, I uploaded the containing folder, do I upload only the contents, not the main folder?

<edited to add>

good news, I got the update working, all went well. One hickup, the Patch.sql failed, I asume because I had previously used the USPS rates patch. My question now, is will this be a problem with the database, or is all good because it was already fixed with the shipping update?
__________________
Heather
XCart 5.3.2.3
  #35  
Old 05-12-2011, 09:25 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,190
 

Default Re: X-Cart v4.4.3 released

http://help.qtmsoft.com/index.php?title=X-Cart:Upgrading
__________________
Steve Stoyanov
CFLSystems.com
Web Development
  #36  
Old 05-12-2011, 03:49 PM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,190
 

Default Re: X-Cart v4.4.3 released

Ok this may be something totaly wrong with me but will post anyway, just so everybody be more cautious.
So I tried the 4.4.2-4.4.3 upgrade today. All ok, I had to manually patch/check like 5 files due to patches applied earlier. After the upgrade though some areas of the site became inoperational. For example orders.php in admin, cart.php, adding product to cart as a customer returns error. Each of this scripts ends with a screen "500 internal server error". My guess is the upgrade changed some permissions. I had to revert back to 4.4.2 from a backup and all works just fine. I will give it another try but in the meantime - anybody done 4.4.2-4.4.3 upgrade yet? Any problems?
__________________
Steve Stoyanov
CFLSystems.com
Web Development
  #37  
Old 05-12-2011, 03:51 PM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,190
 

Default Re: X-Cart v4.4.3 released

Ok next - let's start with the bugs - 4.4.3

http://forum.x-cart.com/showpost.php?p=312270&postcount=195

Reported on March 10 and here we are 2 months later this is not fixed. I am still to check with fake order if the userid=0 is fixed or not but looking at the code seems it's not fixed. Then the second part about the Advanced Statistics / Recommended Products is carried to 4.4.3 again. Am I reading this wrong or QT just ignores some reports?

This is how the upgrade "fixes" these bugs

Code:
- 'userid' => $userinfo['id'] ? $userinfo['id'] : 0, - 'membershipid' => $userinfo['membershipid'], - 'membership' => addslashes($userinfo['membership']), + 'userid' => !empty($userinfo['id']) ? $userinfo['id'] : 0, + 'membershipid' => @$userinfo['membershipid'], + 'membership' => addslashes(@$userinfo['membership']),

Again I think the 0 userid will still happen.

Code:
- if (!empty($active_modules['Recommended_Products'])) { + if ( + !empty($active_modules['Recommended_Products']) + && !empty($userinfo["id"]) + ) {

Again - why "Recommended Products"? Are they pulled off of the stats table?

So QT - does this fixes the bugs or not? Do I need to again report in the bugtracker? Or these are not bugs?
__________________
Steve Stoyanov
CFLSystems.com
Web Development
  #38  
Old 05-12-2011, 04:58 PM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,190
 

Default Re: X-Cart v4.4.3 released

An answer to my previous post #38 above:

A warning to everyone doing an upgrade to 4.4.3 - the upgrade script (at least 4.4.2-4.4.3 one) will set permissions on all php files modified by the script to 600 (read/write owner of the file only) which on some systems may result in non-working stores. Make sure to check and setup permissions to all php files to 644 after the upgrade

QT is there a reason for this?
__________________
Steve Stoyanov
CFLSystems.com
Web Development
  #39  
Old 05-12-2011, 07:28 PM
  BCSE's Avatar 
BCSE BCSE is online now
 

X-Guru
  
Join Date: Apr 2003
Location: Ohio - bcsengineering.com
Posts: 3,060
 

Default Re: X-Cart v4.4.3 released

Just so everyone's aware, we're finding that 4.4.3 is breaking most 3rd party modules out there. So be ready to get some help/support if you have 3rd party modules (i.e. don't upgrade on the fly on the weekend when there's less support).

Thanks,

Carrie
__________________
Custom Development, Custom Coding and Pre-built modules for X-cart since 2002!

We support X-cart versions 3.x through 5.x!

Home of the famous Authorize.net DPM & CIM Modules, Reward Points Module, Point of Sale module, Speed Booster modules and more!


Over 200 X-cart Mods available & Thousands of Customizations Since 2002 - bcsengineering.com

Please E-Mail us for questions/support!
  #40  
Old 05-12-2011, 09:25 PM
  seyfin's Avatar 
seyfin seyfin is offline
 

X-Cart team
  
Join Date: May 2004
Posts: 1,223
 

Default Re: X-Cart v4.4.3 released

Quote:
Originally Posted by BCSE
we're finding that 4.4.3 is breaking most 3rd party modules out there.

The module initialization routine has been changed and optimized in 4.4.3. Here are the patch which describes the main changes: DIFF_55111.patch.txt

Basically, to initialize your module in X-Cart 4.4.3, you should modify your module's configuration file, for example:

modules/Your_Addon_Module/config.php

and add the following code:

Quote:
$_module_dir = $xcart_dir . XC_DS . 'modules' . XC_DS . 'Your_Addon_Module';
/*
Load module functions
*/
if (!empty($include_func))
require_once $_module_dir . XC_DS . 'func.php';

/*
Module initialization
*/
if (!empty($include_init))
include $_module_dir . XC_DS . 'init.php';

before this line:

Quote:
?>
Attached Files
File Type: txt DIFF_55111.patch.txt (99.3 KB, 16 views)
__________________
Sincerely yours,
Sergey Fomin
X-Cart team
Chief support group engineer

===

Check this out. Totally revamped X-Cart hosting
http://www.x-cart.com/hosting.html

Follow us:
https://twitter.com/x_cart / https://www.facebook.com/xcart / https://www.instagram.com/xcart

Last edited by seyfin : 05-12-2011 at 10:30 PM.
Closed Thread
   X-Cart forums > News and Announcements


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 08:33 AM.

   

 
X-Cart forums © 2001-2020