Re: [Miniwiki-general] Troubles setting up miniWiki 0.3
Status: Beta
Brought to you by:
src
From: Stepan R. <st...@sr...> - 2006-11-11 11:50:59
|
On Thu, 9 Nov 2006, Silencium Sixty-Eight wrote: > I've just installed miniWiki 0.3 on my MacOS X 10.4.8/Apache 1.3.33/PHP 5.1.6 > system, but unfortunately I received the following (error) messages: Try to apply this patch: Index: lib/main.php =================================================================== --- lib/main.php (revision 198) +++ lib/main.php (working copy) @@ -16,6 +16,7 @@ echo "<b>OOPS! Something is wrong: $errstr</b><br/>(error code $errno, file $errfile, line $errline)<br/><br/>\n"; } set_error_handler("error_handler"); + error_reporting(E_ALL); /** * echo debug message (if MW_DEBUG is true) That should silence all those warnings. Stepan |