404 error for xenforo how to fix

Status
Not open for further replies.
You will have to be more descriptive, maybe show us a link?
 
sixer said:
iget this for every forum i made
http://www.admin-promotion.qc-h.com/login/login

-- 14 May 2013, 07:57 --

this is just trying to log in

Did you buy the software? An error like this shouldn't be present if you did. IF you did, then you've configured it wrong.

Also, why are you using an outdated version of Xenforo? Now..again..IF you DID buy it...then I suggest upgrading. IF you DID NOT buy it..well..I suggest not going any further, because it can only get worse for you from there.
 
--- EDIT ---

Provide me with a customer/license validation token and I will be willing to help you.

This is a token:

Your_Licenses___XenForo.png
 
Might be your .htaccess
Try editing it to say this:

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
 
    #    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>

And next time, try to keep it in one thread.
 
Please verify your purchase before we provide you with assistance.
As ShadyX says, generate a validation token from your License area.
 
Closing both of these. Once you have a valid XenForo license you can then create a new topic for assistance.
 
Status
Not open for further replies.
Back
Top Bottom