Page 1 of 1

Cache issue

Posted: Wed Oct 24, 2007 12:33 pm
by KSquared
Hello all,

I have a backend app which allows my client to add and update products.
For some reason, after my client adds a product, then searches for that product it does not show up on the page. But when I test it, I never have that issue.
Is this a browser issue on the users end? the only cache code I have in each of php pages is this:

Code: Select all

session_cache_limiter('private_no_expire');
session_cache_expire(60);
session_start();
Would that code cause such an issue?

Thanks
Keith

Posted: Wed Oct 24, 2007 1:13 pm
by feyd
It's likely to be a caching issue. If the client does the addition and you can't find the new product, then it's something else (provided you aren't using their computers.) It could easily be their proxy server, if they use one, but more than likely is their browser choosing to cache the data.

Posted: Wed Oct 24, 2007 1:17 pm
by KSquared
OK thats what I thought...

Thank you