php - Magento Session file storage needing refresh -


i've moved stores new server doesn't support memcache, i've fallen writing file system. when user visiting first time , puts item in cart nothing happens, redirects them cart page states no items added.

next time user tries adding product cart visible needing refresh in order see it. same happens removing item cart, mini cart reflect in real time. seems issue write process not completing before being read?

the var/sessions folder has 0777 purpose of testing.

is common issue?

have following file storage

<session_save><![cdata[files]]></session_save> <session_cache_limiter><![cdata[]]></session_cache_limiter> 

when using memcache looked like

<session_save><![cdata[memcache]]></session_save> <session_save_path><![cdata[unix:///var/tmp/memcached.sess.newdomain.co.nz_sessions.sock?persistent=1&weight=2&timeout=10&retry_interval=10]]></session_save_path> <session_cache_limiter><![cdata[]]></session_cache_limiter> 

sounds need bit more research before you'll able answer here. behavior describe sounds more varnish, or full page caching issue. until know what's happening, folks here, or @ magento stack exchange, left guessing real problem is, , unlikely they'll able help.

specifically, i'd

  • changing session ids in frontend while you're browsing.
  • incorrect form keys block items being added cart
  • examine actual session files see if cart items have been added session think should added to

once have better understanding of mechanics of problem, other programmers here able (or, may able yourself)

good luck!


Comments

Popular posts from this blog

java - UnknownEntityTypeException: Unable to locate persister (Hibernate 5.0) -

python - ValueError: empty vocabulary; perhaps the documents only contain stop words -

ubuntu - collect2: fatal error: ld terminated with signal 9 [Killed] -