- 普通 - 未处理
156行 file_put_contents(RUNTIME_PATH.'~app.php',strip_whitespace($content));应该改为 file_put_contents(RUNTIME_PATH.'~'+APP_CACHE_NAME+'.php',strip_whitespace($content));
看到2.1rc版出来了,下载后看了就发现这个bug。
另外建议一个:paths.php文件把define改为如果没有define再定义,那样部署会更灵活一些。
例如:define('CACHE_DIR', 'Cache');
改为:defined('CACHE_DIR')||define('CACHE_DIR', 'Cache');
(我一直都是这么用滴。。monkey80sm)
