heellpp

Status
Not open for further replies.

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Quite often that is indicative of a problem with your browser accepting and retaining cookies.
 

bacardi62

New Member
Messages
8
Reaction score
0
Points
0
i get this message when i goto my site

http://checkyour6ix.co.cc/

Forbidden

You don't have permission to access / on this server.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
 
Last edited:

stpvoice

Community Support Rep
Community Support
Messages
5,987
Reaction score
212
Points
63
Hello,

Please ensure that your permissions are set right. Generally, files should be CHMOD 644 and directories 755. Also, please post the contents of the .htaccess file in the public_html directory. If using cPanel file manager you'll need to enable the viewing of dotfiles to see it.

Thanks.
 

bacardi62

New Member
Messages
8
Reaction score
0
Points
0
<IfModule mod_rewrite.c>

# Make sure directory listing is disabled, assign directory index, and turn on rewriting
Options +FollowSymLinks -Indexes
DirectoryIndex index.php
RewriteEngine on

# Send request via index.php (again, not if its a real file or folder)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

<IfModule mod_php5.c>
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

<IfModule !mod_php5.c>
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

</IfModule>
 

Skizzerz

Contributors
Staff member
Contributors
Messages
2,928
Reaction score
118
Points
63
Hello,

Please add the line RewriteBase / under the line RewriteEngine On
 
Status
Not open for further replies.
Top