Hi guys,

I am running my homepage phynformatik.de on an ubuntu server with apache
as webserver.

I have two wordpress installations running. They are based in
/home/user/public_html
/home/user/wp3

My /etc/apache2/sites-enabled/000-default looks the following:
  1 NameVirtualHost *:80
  2 <VirtualHost *:80>
  3         ServerAdmin [email protected]
  4
  5         DocumentRoot /home/user/public_html/
  6         Alias /wp3 /home/user/wp3
  7
  8         <Directory />
  9                 Options FollowSymLinks
 10                 AllowOverride FileInfo AuthConfig
 11         </Directory>
 12         <Directory /home/user/wp3/>
 13                 Options -Indexes FollowSymLinks MultiViews
 14                 AllowOverride FileInfo AuthConfig
 15                 Order allow,deny
 16                 allow from all
 17         </Directory>
 18         <Directory /home/user/public_html/>
 19                 Options -Indexes FollowSymLinks MultiViews
 20                 AllowOverride FileInfo AuthConfig
 21                 Order allow,deny
 22                 allow from all
 23         </Directory>
 …
 51 </VirtualHost>

The file ~/wp3/.htaccess is:
  1 # Password Acess
  2 AuthName        "Restricted Access"
  3 AuthType        Basic
  4 AuthUserFile    ****
  5 require valid-user
  6
  7 # BEGIN WordPress
  8 <IfModule mod_rewrite.c>
  9 RewriteEngine On
 10 RewriteBase /wp3/
 11 RewriteRule ^index\.php$ - [L]
 12 RewriteCond %{REQUEST_FILENAME} !-f
 13 RewriteCond %{REQUEST_FILENAME} !-d
 14 RewriteRule . /wp3/index.php [L]
 15 </IfModule>
 16
 17 # END WordPress

I am using the wordpress plugin qTranslate to offer multilingual content.
http://phynformatik.de/wp3 goes to the English version of the page,
http://phynformatik.de/wp3/de to the German one.

My problem is, that trying to access the category or tag overview (in
German) via http://phynformatik.de/wp3/de/category/allgemein/ fails.
My browser is telling me, that there are infinite redirections, pointing
nowhere. I can’t figure out why.

I would be glad if anybody could give me a hint there.

Janosch
-- 
Janosch Maier <[email protected]> -- http://phynformatik.de
This E-Mais is signed via GnuPG <http://gnupg.org/>. My public key:
0xEB21B1DE

Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
LUG mailing list
[email protected]
http://kym.net/mailman/listinfo/lug

LUG is generously hosted by INFOCOM http://www.infocom.co.ug/

All Archives can be found at http://www.mail-archive.com/[email protected]/

The above comments and data are owned by whoever posted them (including 
attachments if any). The List's Host is not responsible for them in any way.
---------------------------------------

Reply via email to