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
  #61  
Old 05-18-2011, 02:02 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

Quote:
Originally Posted by swijaya0101
I am on 4.4.3 PRO now. How do I switch layout?

When I go to http://mydomain/install.php, there is no option for me to switch layout.

General settings >> Appearance >> Select skin to use
__________________
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
  #62  
Old 05-18-2011, 02:07 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

Quote:
Originally Posted by kustomrides
Just did the upgrade from 4.4.2 - 4.4.3

Only issue found was checksum errors on modules/Recently_Viewed/config.php and the entire folder contents of skin/common_files/modules/HTML_Editor/editors/ckeditor/ ... which is a lot of files.

To fix just upload the new files from the 4.4.3 distributive and edit them out of file.lst (and upload), rerun the upgrade.

Otherwise no problems so far except usual manual patches of my modified files. Looking forward to seeing if Amazon checkout will now work.

Thank you for sharing your experience. I have forwarded this information to our maintenance team, they will double-check if there is something to do with the current upgrade packs.
__________________
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
  #63  
Old 05-18-2011, 03:15 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,191
 

Default Re: X-Cart v4.4.3 released

Yes I did saw this on one upgrade. Had to re-upload the files from my distribution pack and all was ok. I think though that the problem was with the zip file and/or Win server. Not sure though
__________________
Steve Stoyanov
CFLSystems.com
Web Development
  #64  
Old 05-18-2011, 03:18 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,191
 

Default Re: X-Cart v4.4.3 released

Quote:
Originally Posted by cflsystems
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?

Sergey what's the status on this? It does happen and it is the upgrade script. And it is hard to fix when there is no SSH access for the site in question. The upgrade should NOT change any permissions no matter what.
__________________
Steve Stoyanov
CFLSystems.com
Web Development
  #65  
Old 05-18-2011, 04:53 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

Quote:
Originally Posted by cflsystems
Sergey what's the status on this? It does happen and it is the upgrade script. And it is hard to fix when there is no SSH access for the site in question. The upgrade should NOT change any permissions no matter what.

The upgrade script changes permissions, according on to the file permissions map specified in top.inc.php file and based on the result returned by the func_get_php_execution_mode function.

We have not manage to replicate the problem on our servers. So, the problem may be related to your specific web-server environment.

Our support engineers will contact you reading the problem in your personal Helpdesk area.

Thank you.
__________________
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
  #66  
Old 05-18-2011, 04:59 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,191
 

Default Re: X-Cart v4.4.3 released

Quote:
Originally Posted by seyfin
So, the problem may be related to your specific web-server environment.

NO. I did few upgrades already for different clients, different server environments, even one on Win server and they all end up with file permissions changed to 600 for the upgraded php files. So it is not my server environment. Also - this doesn't happen with any other upgrade packs, it happens with 4.4.x upgrade pack
__________________
Steve Stoyanov
CFLSystems.com
Web Development
  #67  
Old 05-18-2011, 05:13 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,191
 

Default Re: X-Cart v4.4.3 released

Ok thanks Sergey for pointing me how this is done.

top.inc.php has this

Code:
$xcart_fs_default_permissions = array( 'dir' => array( 'nonprivileged' => 0777, 'privileged' => 0711 ), 'file' => array( 'nonprivileged' => 0644, 'privileged' => 0644 ), 'phpfile' => array( 'nonprivileged' => 0644, 'privileged' => 0600 ) );

and func_get_php_execution_mode

Quote:
/**
* Returns PHP engine execution mode.
* Possible values:
* - privileged if a PHP process has the same permissions as owner of current file;
* - nonprivileged if a PHP process does not have privileged permissions.

*
* @access public
* @return string Execution mode (privileged or nonprivileged).
* @since 4.1.10
*/

Even though it says "since 4.1.10" never happened to me before on any upgrade and I have done hundreds of them. And it doesn't happen with any other upgrade prior to 4.4.x. I personally would change "'privileged' => 0600" to 644 in top.inc.php
__________________
Steve Stoyanov
CFLSystems.com
Web Development
  #68  
Old 05-18-2011, 05:26 AM
  carlisleglass's Avatar 
carlisleglass carlisleglass is offline
 

eXpert
  
Join Date: Aug 2003
Location: Carlisle, UK
Posts: 316
 

Default Re: X-Cart v4.4.3 released

Since the upgrade, has anyone had a problem with the One Page Checkout?

My problem is sometimes when you update the address, and the payment and cart content go into 'Please Wait' mode, it stays in that mode.

Also when logging in from the one page checkout screen, the screen causes a 500 error.
__________________
Darren Kierman
Carlisle Glass (http://www.carlisleglass.co.uk/)
... running X-Cart Gold 4.4.5 [unix]
  #69  
Old 05-18-2011, 11:54 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 carlisleglass
Since the upgrade, has anyone had a problem with the One Page Checkout?

My problem is sometimes when you update the address, and the payment and cart content go into 'Please Wait' mode, it stays in that mode.

Also when logging in from the one page checkout screen, the screen causes a 500 error.

Please create a support request in your personal Helpdesk area, our support engineers will help you to sort the issue out.
__________________
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
  #70  
Old 05-19-2011, 05:38 AM
  carlisleglass's Avatar 
carlisleglass carlisleglass is offline
 

eXpert
  
Join Date: Aug 2003
Location: Carlisle, UK
Posts: 316
 

Default Re: X-Cart v4.4.3 released

Quote:
Originally Posted by seyfin
Please create a support request in your personal Helpdesk area, our support engineers will help you to sort the issue out.

I found out the problem - there is a conflict with one of my third-party modules. I have disabled the module and contacted the developer.

Thanks
__________________
Darren Kierman
Carlisle Glass (http://www.carlisleglass.co.uk/)
... running X-Cart Gold 4.4.5 [unix]
Closed Thread
   X-Cart forums > News and Announcements



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 03:49 PM.

   

 
X-Cart forums © 2001-2020