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

Wiki Guest wiki at wiki.horde.org
Tue Mar 7 08:51:24 PST 2006


guest [157.161.247.246]  Tue, 07 Mar 2006 08:51:24 -0800

Modified page: http://wiki.horde.org/FAQ/Admin/Troubleshoot
New Revision:  5.0
Change log:  Added an "Troubleshooting Vacation" Section and documented the "501 5.6.0 Data format error" i was getting after setting up vacations using the Vacation module

@@ -122,17 +122,17 @@
 ++++ "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.
 
 ++++ "Unable to load dynamic library php_whatever.dll - The specified module could not be found."
 
-This error message is a misrepresentation of the actual problem. Often occurs when some dependency needed for php_whatever.dll is missing.e.g. need to copy iconv.dll (from the dlls folder under to the php install directory) to windows\system32 to get php_gettext.dll to load.
+This error message is a misrepresentation of the actual problem. Often occurs when some dependency needed for php_whatever.dll is missing.e.g. need to copy iconv.dll (from the dlls folder under to the php install directory) to windowssystem32 to get php_gettext.dll to load.
 
 ++++ "Unable to open VFS file for writing"
 If you see this message from kronolith or trean (or any other application hat uses crontabs) you are running a crontab script as a different user as you did in the first run. Adjust your crontab (running it as same user as the webserver is a good idea) and also change the ownship of {{<your_vfs_root>/.horde}}. 
 
@@ -305,4 +305,39 @@
 +++ Troubleshooting Chora
 
 ++++ Why do I get a //404, Object not found// error when clicking on any cvsroot subdirectories?
 Some web servers do not support PATH_INFO, or have it disabled by default, in which case this problem will arise. Try to disable PATH_INFO usage by setting {{$conf['options']['use_path_info']}} to false in {{horde/chora/config/conf.php}}.
+
++++ Troubleshooting Vacation
+
+++++ I get an "501 5.6.0 Data format error" error in the replay from Vacation
+I get the following error when setting up vacations using the Vacation Horde module.
+
+<code>
+The original message was received at Tue, 7 Mar 2006 17:03:07 +0100
+from xxx.senderdomain.com [xxx.xxx.xxx.xxx]
+
+   ----- The following addresses had permanent fatal errors -----
+"|/usr/bin/vacation xxx"
+    (reason: Data format error)
+    (expanded from: <xxx at example.com>)
+
+   ----- Transcript of session follows -----
+501 5.6.0 Data format error
+</code>
+
+find this line of code in your "pathtohorde/vacation/lib/Drivers/forwards.php" file
+<code>
+// Try to change permissions, but ignore any errors.
+$_vfs->changePermissions('', '.forward', '0600');
+</code>
+and append the following after this line
+<code>
+$_vfs->changePermissions('', '.vacation.db', '0640');
+$_vfs->changePermissions('', '.vacation.msg', '0640');
+$_vfs->changePermissions('', '.vacation.dir', '0640');
+$_vfs->changePermissions('', '.vacation.pag', '0640');
+</code>
+delete your vacation entry using the vacation module and recreate it. 
+Problem should be solved.
+
+


More information about the cvs mailing list