[Phpslash-commit] CVS: phpslash-dev/public_html config-dist.ini.php,1.27,1.28
Brought to you by:
joestewart,
nhruby
From: Luis M <le...@us...> - 2004-11-17 20:09:06
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9780 Modified Files: config-dist.ini.php Log Message: added note about known bug using 'file' and possibly 'static' caching: psl won't recursively make directories for you. it will only attempt to make a single directory for a given path: /path/to/jpcache_dir and not /path/to/jpcache/1/2/3/jpcache_dir, which would simply fail Index: config-dist.ini.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.ini.php,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** config-dist.ini.php 17 Nov 2004 19:16:34 -0000 1.27 --- config-dist.ini.php 17 Nov 2004 20:08:51 -0000 1.28 *************** *** 223,226 **** --- 223,231 ---- ;; TIP: if running on *NIX, you can set this to /dev/shm/cache to cache ;; files directly on RAM. + ;; BUG: Do not set this to a directory that doesn't exist, inside + ;; another that doesn't exists recursively: + ;; i.e. do not do: /dev/shm/1/2/3/. + ;; /dev/shm/1 will be created fine if you set your + ;; path to /dev/shm/1 ;jpcache.cachedir = /dev/shm/cache |