X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   News and Announcements (https://forum.x-cart.com/forumdisplay.php?f=28)
-   -   X-Cart 4.1.4 released (https://forum.x-cart.com/showthread.php?t=27213)

just wondering 12-14-2006 02:16 AM

Re: X-Cart 4.1.4 released
 
Quote:

Originally Posted by svowl
Regarding all the complaints about upgrading...
Upgrading is a complex operation, which cannot be performed without additional adjustments if the X-Cart store being upgraded contains some customized files that are affected by the patch. Even if you have a fresh 4.1.3 you can get some difficulties because of issues that might arise while unpacking the upgrade patch (e.g. see http://forum.x-cart.com/showthread.php?p=148672#post148672).
All I can advise here is follow the instructions in the README file of the upgrade pack very carefully. If, nevertheless, you cannot do the upgrade, contact our support team.

Thank you.

How many Support Points would be charged for having the Support Team Upgrade from 4.1.3 to 4.1.4?

lachild 12-14-2006 03:20 AM

Re: X-Cart 4.1.4 released
 
I just updated to 4.1.4 even after the read here... As we use CyberSource for our transactions the incorrect billing on 4.1.3 forced us to upgrade..

So far of the posts here I have found the following...

Patch: Installed fine and failed on files I knew where going to fail anyway... Fix: Manually patched thoughs files

Anonomous checkout - Worked fine (please see notes on Fast Lane Checkout below)

Login: Worked in Opera and IE. Failed in Firefox

Product Pages: Warning Message "divisible by 0 " appeared at random.. Fixed... See bug post made earlier.

Products list in column view: After patching products.tpl and products_t.tpl column view was not displayed... Reverted to line view (default) instead. This could be due to a module I have installed. To fix this I simply restored the template files from backup.

edit: Found Products List problem WAS related to a hack on the site. Not a problem with 4.1.4.

Fast Lane Checkout: The new Fast Lane Checkout would not display FexEx as an option even though they are checked as avalable. Fix: Restored 4.1.3 tpl files for Fast Lane Checkout. (Please note: current install uses ShippingKits FedEx rates, so this problem may be related to that module and not 4.1.4)

Re-direct from https to http caused the user to go into an infanite loop of "Click here if not redirected..." Fix: Opened a ticket with Help Desk

At any rete thats all I've found so far... If anyone finds a solution to the firefox issue let me know.

kuzma 12-14-2006 03:26 AM

Re: X-Cart 4.1.4 released
 
Quote:

Originally Posted by just wondering
How many Support Points would be charged for having the Support Team Upgrade from 4.1.3 to 4.1.4?


The cost for upgrade from 4.1.3 to 4.1.4 within the tech support services depends on the complexity of work implied. In case there is a necessity to upgrade a default X-Cart v4.1.3 with no changes implemented the cost will be 40 support points. In case there are any modification in code or templates, or some custom fucntionality is implemented, the possibilities and the cost for upgrade can be offered after a special store investigation by the responsible engineer.

We are always ready to assist our customers in the best possible way.

lachild 12-14-2006 08:13 AM

Re: X-Cart 4.1.4 released
 
Firefox quick fix...

Well it was exactly what I thought it was... The new session ID is not being saved in FireFox... Not even session_destroy() worked to clear it up...

To fix (and basicly undo what Qualiteam just fixed) locate this in /include/sessions.php

Code:

function x_session_change() {
        global $XCARTSESSID, $sql_tbl;

        $sid = $XCARTSESSID;
        x_session_start();
        db_query("DELETE FROM $sql_tbl[sessions_data] WHERE sessid = '$sid'");

        return $XCARTSESSID;
}


Replace with
Code:

function x_session_change() {
        global $XCARTSESSID, $sql_tbl;

        $sid = $XCARTSESSID;
        x_session_start($sid);
        //db_query("DELETE FROM $sql_tbl[sessions_data] WHERE sessid = '$sid'");

        return $XCARTSESSID;
}


This of course keeps the same session id after logging in, which is exactly what they were tring to get away from in this update.

I'll keep working on a better fix

kustomrides 12-14-2006 08:21 AM

Re: X-Cart 4.1.4 released
 
Quote:

Originally Posted by kevinrm
This does have a problem with firefox. Using version 1.5.0.8 and it would not let me login either as admin, or as a customer. Re-uploaded include/login.php from 4.1.3 and it works now, thanks to the person who posted that tip!

Outside of that, my upgrade went pretty smooth and the only thing that wouldn't patch were mods I have, which are many. I was expecting much worse and this was actually one of my smoother upgrades, whew!


Using Firefox/1.5.0.8 I have not encountered any login issues.

kevinrm 12-14-2006 08:28 AM

Re: X-Cart 4.1.4 released
 
Using Firefox, when I was logged in as admin after doing the update, it worked for a bit. But try logging out then back in. Try opening a new tab and adding something as a customer then checking out. Bet it doesnt work. At least mine wouldn't.

kustomrides 12-14-2006 08:36 AM

Re: X-Cart 4.1.4 released
 
Of the issues I've found about 4.1.4, login isn't one of them using the latest Firefox. So far no problems logging in as admin, or registering as new user, or login in as said user.

Not saying you didn't have this issue. What I will do is go over to my wife's laptop, upgrade her Firefox, then test out 4.1.4 ... if others have login issues I want to fix it, even if I don't experience them.

starwest 12-14-2006 06:19 PM

Re: X-Cart 4.1.4 released
 
I installed a fresh copy of v4.1.4 to check for possible problems.

If anything, the speed so far has been quite snappy. Login on both the admin, user login, and logging in or registering during checkout all work fine in IE 6.0.x and Firefox 2.0.

Upgrading might be a whole different monster, but the virgin install seems to be behaving quite well.

nomonkeybiz 12-14-2006 06:53 PM

Re: X-Cart 4.1.4 released
 
Quote:

Originally Posted by lachild
[/code]
Replace with
Code:

function x_session_change() {
    global $XCARTSESSID, $sql_tbl;

    $sid = $XCARTSESSID;
    x_session_start($sid);
    //db_query("DELETE FROM $sql_tbl[sessions_data] WHERE sessid = '$sid'");

    return $XCARTSESSID;
}




Thank you! Prior to this fix, we were unable to login to the store and admin using the latest Firefox 2.0.

svowl 12-14-2006 10:47 PM

Re: X-Cart 4.1.4 released
 
Here is an official patch on login issue: http://forum.x-cart.com/showthread.php?t=27387

Thank you.


All times are GMT -8. The time now is 07:09 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.