Use Friendly URL's Error

TazDevilLooney

Active member
Hi people, i've just brought the product today and have installed it with no problems.
When i use the [Full Friendly URL's] and click on a forum i get a Internal server Error.
The home page and admin displays correctly with the setting on but problems with the forums.

This is the address it's sending me to - http://mysite/forums/my-forum.5/

I'm using the .htaccess which came with the package with no alterations.

Any idear?

Thankyou Taz
 
Thankyou for the quck replay Brogan,

The Xenforo log contains no errors.

My serve log conatins this

[Mon Nov 29 14:26:20 2010] [error] [client 127.0.0.1] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: http://mysite.com/

Works ok with the option off :)
 
Is your forum installed in the root or a sub directory?

Do you have anything else in your .htaccess file?
It sounds to me like you have conflicting rewrite settings.
 
Installtion is the the root directory

and his is the contents of the .htaccess file

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(data|js|styles|install) - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
</IfModule>

I'm not sure whats going on as i use .htaccess for my other sites.
 
I got it.

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(data|js|styles|install) - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
</IfModule>

:)
 
Are you doing some sort of redirection in Apache?

While we can't add this line by default, we can put it in with a comment to use it if you get errors.
 
Interesting, thanks for posting back with the solution.

I haven't seen that crop up before so it's worth bearing in mind for the future.
 
I am hosting 3 sites of the same server in diffrent dirs (Residental Server) using no-ip for the redirection.
I don't relly know what the norm is as i've always used this type of software.

The comment would give customers something else to try if they get errors. Nice idear!
 
Top Bottom