I followed this tutorial to create a simple CRUD in CakePHP. Everything is working fine but for some reason when I add or delete an entry, and then click the link to go back to the list, it doesn't display an updated list with the new item or deleted item and I have to hit the refresh button to get an up-to-date list.
I've turned off caching by uncommenting this in /app/Config/core.php:
Configure::write('Cache.disable', true);
I'm not sure what else I can do to fix this.