Cache issue

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
KSquared
Forum Commoner
Posts: 25
Joined: Tue Aug 29, 2006 4:07 pm

Cache issue

Post 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
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post 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.
KSquared
Forum Commoner
Posts: 25
Joined: Tue Aug 29, 2006 4:07 pm

Post by KSquared »

OK thats what I thought...

Thank you
Post Reply