Jordyn
Well-known member
hi,
as of today, im not sure why this has suddenly happened. but when i try to access a forum URL i get an error saying "The requested page could not be found". this seems only to be effecting forum url's only as of like 30 minutes ago. this does not seem o effect thread urls, i can access threads but not forums.
ive had "Use Full Friendly URLs" enabled for over a week with no issues, but as of 30 mins ago, accessing forum urls example: http://www.forum.com/baily-tent.5/ gives a "could not be found error".
but when i disable "Use Full Friendly URLs" all comes good. again this has just suddenly happened with nothing new installed.
client forum is istalled in root. this is .htaccess code:
fyi: Index Page Route: is set at forums/
hoping for a quick fix please?
edit: added $config['enableListeners'] = false; to config, still errors.
as of today, im not sure why this has suddenly happened. but when i try to access a forum URL i get an error saying "The requested page could not be found". this seems only to be effecting forum url's only as of like 30 minutes ago. this does not seem o effect thread urls, i can access threads but not forums.
ive had "Use Full Friendly URLs" enabled for over a week with no issues, but as of 30 mins ago, accessing forum urls example: http://www.forum.com/baily-tent.5/ gives a "could not be found error".
but when i disable "Use Full Friendly URLs" all comes good. again this has just suddenly happened with nothing new installed.
client forum is istalled in root. this is .htaccess code:
Code:
# Mod_security can interfere with uploading of content such as attachments. If you
# cannot attach files, remove the "#" from the lines below.
#<IfModule mod_security.c>
# SecFilterEngine Off
# SecFilterScanPOST Off
#</IfModule>
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default
<IfModule mod_rewrite.c>
RewriteEngine On
# Redirect non-www to www
RewriteCond %{HTTP_HOST} ^forum\.com [NC]
RewriteRule (.*) http://www.forum.com/$1 [NC,QSA,L,R=301]
# If you are having problems with the rewrite rules, remove the "#" from the
# line that begins "RewriteBase" below. You will also have to change the path
# of the rewrite to reflect the path to your XenForo installation.
#RewriteBase /xenforo
# This line may be needed to enable WebDAV editing with PHP as a CGI.
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots\.txt) - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
</IfModule>
hoping for a quick fix please?
edit: added $config['enableListeners'] = false; to config, still errors.
Last edited: