Reputation: 387
I have implemented wincache with IIS in windows and enabled scache with maximum size of 85MB. But the problem now is after it hit 85MB, my PHP application has problem logging in. Is there a way to fix this?
Upvotes: 0
Views: 270
Reputation: 396
You could use a different session provider that is not constrained by the same size limitations as WinCache? Have you considered session.save_handler = files ?
Upvotes: 0