Index: /trunk/xcache.c
===================================================================
--- /trunk/xcache.c	(revision 972)
+++ /trunk/xcache.c	(revision 974)
@@ -3852,4 +3852,10 @@
 	REGISTER_INI_ENTRIES();
 
+	if (strcmp(sapi_module.name, "cgi-fcgi") == 0) {
+		if ((getenv("PHP_FCGI_CHILDREN") == NULL) || (atoi(getenv("PHP_FCGI_CHILDREN")) < 1)) {
+			zend_error(E_ERROR, "PHP_FCGI_CHILDREN should be >= 1 and use 1 group of parent/childs model. See " XCACHE_WIKI_URL "/Faq");
+		}
+	}
+
 	xc_config_long(&xc_php_size,       "xcache.size",        "0");
 	xc_config_hash(&xc_php_hcache,     "xcache.count",       "1");
Index: /trunk/NEWS
===================================================================
--- /trunk/NEWS	(revision 973)
+++ /trunk/NEWS	(revision 974)
@@ -2,4 +2,5 @@
 ========
  * improvements
+ * adds warning for misconfiguration
 
 2.0.1 2012-07-14
Index: /trunk/ChangeLog
===================================================================
--- /trunk/ChangeLog	(revision 973)
+++ /trunk/ChangeLog	(revision 974)
@@ -1,4 +1,5 @@
 2.1.0 2012-??-??
  * fixes #972: warning/error when XCache is loaded incorrectly
+ * fixes #73: warn for improper PHP_FCGI_CHILDREN setting fcgi mode
 
 2.0.1 2012-07-14
