[cvs] [Wiki] changed: FAQ/Admin/Troubleshoot
Jan Schneider
jan at horde.org
Tue Mar 7 09:12:11 PST 2006
jan Tue, 07 Mar 2006 09:12:11 -0800
Modified page: http://wiki.horde.org/FAQ/Admin/Troubleshoot
New Revision: 6.1
Change log: Re-apply without stripping backslashes
@@ -305,4 +305,37 @@
+++ 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