Problem after upgrading to 3.0.4 for 2.2.5

I had a problem with items not staying in the cart after adding them and changing to another product. I add a product and when I go to another product to cart empties. I can’t figure out why. As a work around I’ve changed the session section of config.php from:


<br />
// Session options<br />
define('SESS_VALIDATE_IP', true); // link session ID with ip address<br />
// define('SESS_VALIDATE_UA', true); // link session ID with user-agent<br />

```<br />
<br />
to:<br />
<br />
```php
<br />
// Session options<br />
define('SKIP_SESSION_VALIDATION', true); // This will skip the IP address and Users Agent check.<br />
// define('SESS_VALIDATE_IP', true); // link session ID with ip address<br />
// define('SESS_VALIDATE_UA', true); // link session ID with user-agent<br />

```<br />
<br />
If anyone can help diagnose this I would appreciate it.

Clear your cookies and /var/cache/* directories.

Thanks Jesse, I will give it a try.



Sent from my EVO using Tapatalk 2

That seemed to take care of it, thanks!