[cvs] [Wiki] changed: FAQ/Admin/Troubleshoot

Wiki Guest wiki at wiki.horde.org
Thu Aug 4 13:29:54 PDT 2005


guest [69.174.41.82]  Thu, 04 Aug 2005 13:29:54 -0700

Modified page: http://wiki.horde.org/FAQ/Admin/Troubleshoot
New Revision:  3.3
Change log:  Added display_errors = Off solution.

@@ -14,8 +14,19 @@
 E.g. in {{php.ini}}:
 
 <code>
 error_reporting = E_ALL & ~E_NOTICE
+</code>
+
+You can also turn off the display of error reporting entirely, although this might cause problems diagnosing problems in the future.  After you get a good, working installation you can turn off the display of error messages to the browser and just log them.
+
+E.g. in {{php.ini}}:
+
+<code>
+display_errors = Off
+log_errors = On
+error_log = syslog ; goes to NT event log on NT-based machines
+; error_log = /var/log/php_error
 </code>
 
 ++++ "Document contains no data"
 The Netscape error message, "Document contains no data", only tells you that nothing was sent from the web server to the browser. In other words, something went quite wrong, yet you've no idea what.
@@ -48,10 +59,10 @@
 ++++ "top.opener.parent is not an object"
 This error is the result of a bug in Internet Explorer. [mailto:stuart at eclipse.net.uk Stuart] suggests that the following commands (executed on the Windows system on which Internet Explorer is installed) will solve the problem:
 
 <code>
-regsvr32 c:\windows\system32\actxprxy.dll
-regsvr32 c:\windows\system32\shdocvw.dll
+regsvr32 c:windowssystem32actxprxy.dll
+regsvr32 c:windowssystem32shdocvw.dll
 </code>
 
 The FAQ maintainer has //not// tested the above! Make sure you have a backup of your system before playing with deep Windows magic.
 


More information about the cvs mailing list