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

X-Cart v4.4.2 released

 
Closed Thread
   X-Cart forums > News and Announcements
 
Thread Tools
  #191  
Old 03-02-2011, 08:39 PM
  gb2world's Avatar 
gb2world gb2world is offline
 

X-Wizard
  
Join Date: May 2006
Location: Austin, TX
Posts: 1,970
 

Default Re: X-Cart v4.4.2 released

The strategy is to have one http load of a compressed, amalgamated file. I agree that it would be difficult to claim the X-CART css is optimized and modular before they attempt to amalgamate and compress it. But it looks like that was their intent. Without the compression, it is really the wrong direction.

I've seen discussions about this on other large open source projects - some think a super-optimized, small css load for the front page then an amalgamated compressed for other pages is the way to go. I'm not sure, but some sort of compression would need to be part of the strategy, else it really looks bad, as you reported.

---
__________________
X-CART (4.1.9,12/4.2.2-3/4.3.1-2/4.4.1-5)-Gold
(CDSEO, Altered-Cart On Sale, BCSE Preorder Backorder, QuickOrder, X-Payments, BCSE DPM Module)
  #192  
Old 03-09-2011, 02:25 PM
 
kevinrm kevinrm is offline
 

X-Wizard
  
Join Date: Aug 2003
Posts: 1,003
 

Default Re: X-Cart v4.4.2 released

I may have missed it somewhere, but has there been any indication of when 4.4.3 will be released? I think there are quite a few of us on the sidelines waiting to make a move when that comes out. It's frustrating trying to make a business decision based on this shopping cart. Countless hours will be required to be set aside, etc, and I would like to invest that time well.
__________________
X-Cart 5.4.1.39 Live
PHP 7.4.33
5.5.5-10.3.38-MariaDB MariaDB
Apache 2.4
CENTOS 7.8 64Bit Single Quad-Core E3-1241v3 3.4Ghz 8M 1600 w/ HT
32GB RAM 2x 512GB Samsung 850 Pro SSD RAID 1
  #193  
Old 03-09-2011, 03:13 PM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,191
 

Default Re: X-Cart v4.4.2 released

Another bug discovered yesterday (already posted in the bug forum), I hope QT sees this as a bug. Importing address book csv file - even though import page in admin shows no required fields make sure zipcode field is not empty or 0. The import will fail with an error message "no entry for this userid in users" which is completelly wrong. Took me a good amount of time to figure out whats going on.
__________________
Steve Stoyanov
CFLSystems.com
Web Development
  #194  
Old 03-09-2011, 03:27 PM
 
Duramax 6.6L Duramax 6.6L is offline
 

X-Adept
  
Join Date: Dec 2006
Posts: 865
 

Default Re: X-Cart v4.4.2 released

I heard sometime during April.
__________________
Xcart 5.1.6 Building New Store
Xcart4.6.4 Gold Plus
Xcart 4.6.4 Platinum
Smart Template,
Mail Chimp Upgrade
Checkout One (One Page Checkout)
Checkout One X-Payments Connector
Checkout One Deluxe Tools
Call For Price
On Sale Module
Buy Together Module
MAP Price MOD
  #195  
Old 03-10-2011, 06:27 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,191
 

Default Re: X-Cart v4.4.2 released

Another bug in 4.4.x; actually I checked 4.2.x and 4.3.x and it exists there as well (partially)

When placing an order as anonymous customer stats info is recorded in "stats_customers_products" table with userid=0 (which do not exists). How to replicate - place an order with anonymous user and check database integrity from admin/maintenance - you will get an error "userid 0 from stats_customers_products doesn't exist in customers table".

What happens:
In include/func/func.order.php -> function func_place_order on or around line 1057
Code:
'userid' => $userinfo['id'] ? $userinfo['id'] : 0,
which will set userid = 0 for every anonymous customer order. But there is no userid 0. Database integrity check in admin/maintenance doesn't check orders table against customers table so it won't show an error.

On or around line 1259 in the same file (function) starts this if statement
Code:
if (!empty($active_modules['Recommended_Products'])) {

which places a record in "stats_customers_products" table. The above if statement should be
Code:
if (!empty($active_modules['Advanced_Statistics'])) {
This is a statistics table, so why "Recommended_Products" is the condition? So even if you have Advanced_Statistics mod off but Recommended_Products mod on this statistics table gets records. Clearly a bug. That's number one. Number 2 bug is that when that record is placed it has userid=0 for anonymous checkouts which immediatelly will result in data integration error with customers table.
__________________
Steve Stoyanov
CFLSystems.com
Web Development

The following 2 users thank cflsystems for this useful post:
am2003 (03-10-2011), kustomrides (03-10-2011)
  #196  
Old 03-10-2011, 08:35 AM
  RichieRich's Avatar 
RichieRich RichieRich is offline
 

X-Adept
  
Join Date: Sep 2004
Location: London, England
Posts: 750
 

Default Re: X-Cart v4.4.2 released

Quote:
Originally Posted by parekh81
Well those small issues shouldn't really stop you from developing your site.

The problem nowadays is that, we have become greedy for features. We 'probably' don't need 70% of what x-cart package contains to sell an item on your site.

I have a site based on 4.2 and doing quite well on it. Yes there are bugs, but they never stop me from selling.


Same as you.... keep upgrading and all this gives me a headache, my 4.2x store works fine, customers can buy what i sell!
__________________
Richard


Ultimate 5.4 testing
  #197  
Old 03-10-2011, 10:03 AM
  kustomrides's Avatar 
kustomrides kustomrides is offline
 

eXpert
  
Join Date: Apr 2005
Location: Southern California
Posts: 212
 

Default Re: X-Cart v4.4.2 released

cflsystems:

I confirm the same thing on database integrity re userid = 0
__________________
x-cart Gold 4.7.4
RedHat Linux 7.2; Pearl 5.20.2; PHP 5.5.26; MySQL 5.6.27, server 5.1.54;
Ruby 2.1.5p273; Python 3.4.2;

Several mods in menu and skin, BSCE shipping-per-product, CDSEO Pro
  #198  
Old 03-12-2011, 05:55 PM
 
pss999 pss999 is offline
 

Member
  
Join Date: Feb 2007
Posts: 30
 

Default Re: X-Cart v4.4.2 released

I just posted a new bug report... again, related to the address book system:

https://bugtracker.qtmsoft.com/view.php?id=39294

Anyone else able to reproduce this on their 4.4.2 site (with Fast-Lane checkout, NOT one-page)? Very odd that I haven't noticed this rather serious problem before, but perhaps I was testing mostly with an already-created account or just wasn't noticing that the updated address data wasn't actually being applied to the order in progres...

Thanks,

Paul
  #199  
Old 03-15-2011, 02:18 PM
 
MrHeeltoe MrHeeltoe is offline
 

eXpert
  
Join Date: Jan 2006
Posts: 206
 

Default Re: X-Cart v4.4.2 released

Quote:
Originally Posted by RichieRich
Same as you.... keep upgrading and all this gives me a headache, my 4.2x store works fine, customers can buy what i sell!


I can say the same thing about about my 4.0 cart...but there still leaves a lot to be desired.
  #200  
Old 03-16-2011, 06:57 AM
 
Nadeem Nadeem is offline
 

Advanced Member
  
Join Date: Sep 2006
Posts: 56
 

Default Re: X-Cart v4.4.2 released

going to start a new project this week, any one know when will "4.4.3" be released ?
__________________
X-Cart 4.4.5 | Linux/Apache | PHP 5.2.17 | MySQL 5.0.77 | FireFox
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 09:29 PM.

   

 
X-Cart forums © 2001-2020