Index: /trunk/xcache.c
===================================================================
--- /trunk/xcache.c	(revision 36)
+++ /trunk/xcache.c	(revision 39)
@@ -1802,6 +1802,6 @@
 #endif
 #ifdef HAVE_XCACHE_COVERAGER
-	PHP_INI_ENTRY1     ("xcache.coveragedump_directory",  "", PHP_INI_SYSTEM, xc_OnUpdateString,   &xc_coveragedump_dir)
-	STD_PHP_INI_BOOLEAN("xcache.coveragedumper" ,        "1", PHP_INI_ALL,    OnUpdateBool,        coveragedumper,    zend_xcache_globals, xcache_globals)
+	PHP_INI_ENTRY1     ("xcache.coveragedump_directory", "/tmp/pcov/", PHP_INI_SYSTEM, xc_OnUpdateString,   &xc_coveragedump_dir)
+	STD_PHP_INI_BOOLEAN("xcache.coveragedumper" ,                 "0", PHP_INI_ALL,    OnUpdateBool,        coveragedumper,    zend_xcache_globals, xcache_globals)
 #endif
 PHP_INI_END()
Index: /trunk/xcache.ini
===================================================================
--- /trunk/xcache.ini	(revision 34)
+++ /trunk/xcache.ini	(revision 39)
@@ -14,5 +14,5 @@
 
 [xcache]
-; ini only settings, all the values here is default
+; ini only settings, all the values here is default unless explained
 ; to disable: xcache.size=0
 ; to enable : xcache.size=any size > 0 and your system mmap allows
@@ -31,6 +31,10 @@
 ; N/A for /dev/zero
 xcache.readonly_protection = Off
+; for win32, xcache.mmap_path=anonymous map name, not file path
 ; uncomment and change to "/tmp/xcache" for readonly protection
+; 2 group of php won't share the same /tmp/xcache
 xcache.mmap_path =    "/dev/zero"
+
+
 ; leave it blank(disabled) or "/tmp/phpcore/"
 ; make sure it's writable by php (without checking open_basedir)
@@ -43,6 +47,7 @@
 [xcache.coverager]
 ; ini only settings
-; xcache.coveragedump_directory = "/tmp/pcov/"
-xcache.coveragedump_directory = ""
-; per request settings, disable if xcache.coveragedump_directory is not set
-xcache.coveragedumper         = On
+; make sure it's readable (care open_basedir) coverage viewer script
+xcache.coveragedump_directory = "/tmp/pcov/"
+
+; per request settings, will be auto disabled if xcache.coveragedump_directory is not set
+xcache.coveragedumper         = Off
