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

X-Cart 4.7.6 released: Improved Performance, Bugfixes

 
Reply
   X-Cart forums > News and Announcements
 
Thread Tools
  #21  
Old 06-22-2016, 06:31 AM
 
herber@wirehub.nl herber@wirehub.nl is offline
 

eXpert
  
Join Date: Nov 2002
Posts: 305
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

Quote:
Originally Posted by aim
We have fixed it.

Thank you.
Could you post what has changed? I already have 4.7.6 test environment running and would like to patch it before migrating it to the live environment in 1 or 2 days.
__________________
X-Cart 4.7.12
Reply With Quote
  #22  
Old 06-22-2016, 06:38 AM
 
aim aim is offline
Advanced Staff Users
 

X-Cart team
  
Join Date: Dec 2008
Posts: 928
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

Quote:
Originally Posted by herber@wirehub.nl
Could you post what has changed? I already have 4.7.6 test environment running and would like to patch it before migrating it to the live environment in 1 or 2 days.

I have changed INSERT to REPLACE in the patch.sql file for some queries

Code:
-INSERT INTO xcart_languages (`code`, `name`, `value`, `topic`) VALUES ("en", "lbl_month", "Month", "Labels"); -INSERT INTO xcart_languages (`code`, `name`, `value`, `topic`) VALUES ("en", "lbl_off", "Off", "Labels"); -INSERT INTO xcart_languages (`code`, `name`, `value`, `topic`) VALUES ("en", "lbl_on", "On", "Labels"); +REPLACE INTO xcart_languages (`code`, `name`, `value`, `topic`) VALUES ("en", "lbl_month", "Month", "Labels"); +REPLACE INTO xcart_languages (`code`, `name`, `value`, `topic`) VALUES ("en", "lbl_off", "Off", "Labels"); +REPLACE INTO xcart_languages (`code`, `name`, `value`, `topic`) VALUES ("en", "lbl_on", "On", "Labels"); -INSERT INTO xcart_languages (`code`, `name`, `value`, `topic`) VALUES ("en", "lbl_year", "Year", "Labels"); +REPLACE INTO xcart_languages (`code`, `name`, `value`, `topic`) VALUES ("en", "lbl_year", "Year", "Labels");
__________________
Sincerely yours,
Ildar Amankulov
Head of Maintenance group
Reply With Quote
  #23  
Old 06-22-2016, 03:28 PM
 
Dougrun Dougrun is offline
 

X-Adept
  
Join Date: Apr 2012
Posts: 895
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

for the record, which db is preferred?
Mysql 5.6 or Mariadb 10.0??
I'm currently on Mysql 5.5
__________________
4.7.x xcart store
Business 5.4xx
Reply With Quote
  #24  
Old 06-22-2016, 11:59 PM
 
herber@wirehub.nl herber@wirehub.nl is offline
 

eXpert
  
Join Date: Nov 2002
Posts: 305
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

Quote:
Originally Posted by Dougrun
for the record, which db is preferred?
Mysql 5.6 or Mariadb 10.0??
I'm currently on Mysql 5.5
MySQL 5.5.50 here.
Would like to know if MariaDB has significant performance improvements. I have no experience with MariaDB, but as far as I can see it is a drop-in replacement (and cPanel supports it, which is also important to us on a cPanel server).

Are there measurements available?
__________________
X-Cart 4.7.12
Reply With Quote
  #25  
Old 06-23-2016, 05:45 AM
 
herber@wirehub.nl herber@wirehub.nl is offline
 

eXpert
  
Join Date: Nov 2002
Posts: 305
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

The VAT checking service for customers trying to add their VAT number, is always unavailable for unknown reasons.
Quote:
Warning: Failed to validate vat number. The vat number checking service not available. Please contact the store administrator.

I can't find any error logs regarding this. The same number checks out on VIES. I've tried multiple numbers, could it be that something is being blocked?
__________________
X-Cart 4.7.12
Reply With Quote
  #26  
Old 06-23-2016, 08:45 AM
 
mixon mixon is offline
Michael Bugrov
 

X-Cart team
  
Join Date: Jul 2005
Posts: 91
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

Quote:
Originally Posted by herber@wirehub.nl
The VAT checking service for customers trying to add their VAT number, is always unavailable for unknown reasons.

I can't find any error logs regarding this. The same number checks out on VIES. I've tried multiple numbers, could it be that something is being blocked?

The Vat number checker service requires PHP Soap support, so please make sure it is available in your PHP configuration.

The "http://ec.europa.eu/" URL should be accessible from the hosting server.

Also, you can add the code below to the config.local.php file and check the VNC logs for more info
PHP Code:
define('XC_VAT_NUMBER_CHECKER_DEBUG'true
__________________
--
Sincerely yours,
Michael Bugrov,
X-Cart Software Architector

founder of: X-Monitoring service
founder of: Infinite scroll

Facebook
Linked-in
Reply With Quote

The following user thanks mixon for this useful post:
herber@wirehub.nl (06-24-2016)
  #27  
Old 06-24-2016, 01:04 AM
 
herber@wirehub.nl herber@wirehub.nl is offline
 

eXpert
  
Join Date: Nov 2002
Posts: 305
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

Quote:
Originally Posted by mixon
The Vat number checker service requires PHP Soap support, so please make sure it is available in your PHP configuration.

The "http://ec.europa.eu/" URL should be accessible from the hosting server.

Also, you can add the code below to the config.local.php file and check the VNC logs for more info
PHP Code:
define('XC_VAT_NUMBER_CHECKER_DEBUG'true
Thank you, SOAP was not enabled when PHP was compiled, we will include it next time it is compiled.
__________________
X-Cart 4.7.12
Reply With Quote
  #28  
Old 06-24-2016, 06:58 AM
  cherie's Avatar 
cherie cherie is offline
 

X-Wizard
  
Join Date: May 2003
Location: USA
Posts: 1,534
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

If SOAP is a requirement for a module, shouldn't it be more gracefully checked and handled?
__________________
redlimeweb.com
custom mods and design integration
4.7 linux
Reply With Quote
  #29  
Old 06-29-2016, 08:08 AM
 
Dougrun Dougrun is offline
 

X-Adept
  
Join Date: Apr 2012
Posts: 895
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

help! My site is down. upgrade tested ok but now i get this:

[29-Jun-2016 15:53:22 UTC] PHP Fatal error: require_once(): Failed opening required '/home/xxxx/public_html/store/modules/HTML_Editor/admin_func.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/xxxx/public_html/store/modules/HTML_Editor/config.php on line 71

i tried installing fresh files and still get that.
__________________
4.7.x xcart store
Business 5.4xx
Reply With Quote
  #30  
Old 06-29-2016, 09:16 AM
 
Dougrun Dougrun is offline
 

X-Adept
  
Join Date: Apr 2012
Posts: 895
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

I had to restore my 4.7.4 shop, I could not figure out what went wrong. Although, i may have run the patching procedure twice by reloading it by accident. 2nd time i got a bunch of "already patched" messages but i didnt think it would matter.
__________________
4.7.x xcart store
Business 5.4xx
Reply With Quote
Reply
   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 05:01 AM.

   

 
X-Cart forums © 2001-2020