DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG� RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34540>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND� INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=34540 ------- Additional Comments From [EMAIL PROTECTED] 2005-04-21 20:40 ------- ok here is the problem again in simple words am running a name based apache server and my httpd.conf looks like this : NameVirtualHost 11.22.33.44:80 <VirtualHost 11.22.33.44> ServerAdmin [EMAIL PROTECTED] DocumentRoot /home/domain/public_html BytesLog domlogs/domain.com-bytes_log User sintigr Group sintigr <IfModule mod_php4.c> php_admin_value open_basedir "/home/domain/:/usr/lib/php:/usr/local/lib/php:/tmp" </IfModule> <IfModule mod_userdir.c> UserDir disabled UserDir enabled sintigr </IfModule> ServerName www.domain.com ScriptAlias /cgi-bin/ /home/domain/public_html/cgi-bin/ User sintigr Group sintigr CustomLog domlogs/domain.com combined </VirtualHost> and then i added another virtualhost on the same ip <VirtualHost 11.22.33.44> ServerAlias www.anotherdomain.com anotherdomain.com ServerAdmin [EMAIL PROTECTED] DocumentRoot /home/anotherdomain/public_html BytesLog domlogs/anotherdomain.com-bytes_log User vtavenir Group vtavenir <IfModule mod_php4.c> php_admin_value open_basedir "/home/anotherdomain/:/usr/lib/php:/usr/local/lib/php:/tmp" </IfModule> <IfModule mod_userdir.c> UserDir disabled UserDir enabled vtavenir </IfModule> ServerName www.anotherdomain.com ScriptAlias /cgi-bin/ /home/anotherdomain/public_html/cgi-bin/ User vtavenir Group vtavenir CustomLog domlogs/anotherdomain.com combined </VirtualHost> as recommended in apche httpd document of user dir protection i added this lines in each virtualhost directive: UserDir disabled UserDir enabled USER but this causes the following error whenever i try logging to http://11.22.33.44/~first-user everything works ok (first user here is the first user assigned to this ip in the httpd.conf) but if i try logging to http://11.22.33.44/~second-user (which is ofcourse the second user assigned to this ip in the httpd.conf) i cant login and i get the following line from error_log : [Wed Apr 20 20:03:30 2005] [error] [client 81.10.18.244] File does not exist: /home/user1/public_html/~user2/ as you see thats wrong it should go to /home/user2/public_html what could cause this mis-direction ?? -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
