From: Frank S. <fra...@rn...> - 2003-11-03 10:06:55
|
> >>> "ad...@fo..." 11/02/03 18:07 >>> > > Hello, > > The dumphtml or the ziphtml action (from the latest version of the > cvs) generates an incomplete dump. For dumphtml, I have an average of > 120 pages generated but stops before end (there is quite more in your > wiki around 1000). For the zip file, the generation stops at the > middle with a corrupted zip archive. It seems that this function > generates a sig11 on the related httpd daemon (only with this > function). > > rcs_id('$Id: main.php,v 1.99 2003/03/07 02:39:47 dairiki Exp $'); > rcs_id('$Id: loadsave.php,v 1.80 2003/03/07 02:46:57 dairiki Exp $'); > > Apache/1.3.28 (Unix) PHP/4.3.3 mod_gzip/1.3.19.1a mod_perl/1.28 > mod_python/2.7.8 Python/2.3 mod_ssl/2.8.15 OpenSSL/0.9.7c > > Is it a known issue ? or is it related to the size of the Wiki (more > than 1000 pages) ? or something else related to PHP itself ? The last time I tried this (on a wiki with ~1500 pages) what I found was that each page would take longer to dump than the page before. You'll be able to see if you're having the same problem by inspecting the XHTML generated - each page will have a "phpwiki source:" comment which gets progressively longer. The solution is to change your index.php somewhere around line 57 from if (!defined('DEBUG')) define ('DEBUG', 1); to if (!defined('DEBUG')) define ('DEBUG', false); Once I'd done this I could quite happily do a proper zipdump. frank |