Advertisement
Guest User

How To Fix Freshizer

a guest
Oct 20th, 2012
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. HOW TO FIX FRESHIZER
  2. ====================
  3.  
  4. 1.) open "edison/framework/engine/functions/freshizer.php"
  5. 2.) find line 26:
  6. >> CONST CACHE_TIME = 604800;//604800; // (60 * 60 * 24 * 7); // 7 days
  7. replace with:
  8. >> define('CACHE_TIME', 604800);
  9.  
  10. 3.) find line 33:
  11. >> CONST CACHE_DELETE_FILES_AFTER = 10000000;
  12. replace with:
  13. >> define('CACHE_DELETE_FILES_AFTER',10000000);
  14.  
  15. 4.) find line 39
  16. >> CONST CACHE_DELETE_FILES_check_every_x_hits = 150;
  17. replace with:
  18. >> define('CACHE_DELETE_FILES_check_every_x_hits',150);
  19.  
  20. 5.) save the file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement