Problem with installing

momabear8519

New Member
Messages
4
Reaction score
0
Points
1
I am not sure if I am posting in the right spot but I am trying to get a site up and going. I have put everything in the right spots but for some reason I am getting a 403 Forbidden error. Can you please help me.
 

AngusThermopyle

Active Member
Messages
319
Reaction score
52
Points
28
Did you check the file permissions?

Files must be set to 0644 and directories to 0755.
 

Anna

I am just me
Staff member
Messages
11,733
Reaction score
578
Points
113
When looking at your account you have several files that are set to 777, this is a huge security risk and our servers are configured so they'd give a 403 forbidden when files are set that way.
I also saw a few files set to have 744.
You would need to look into making sure all files are set to have 644 as permission.
 

momabear8519

New Member
Messages
4
Reaction score
0
Points
1
ok i will go and find the ones that are still 777 and change them to 644

Edit: I went and changed the files that was 0777 to 0644 and its still coming up and a 403
 
Last edited:

leafypiggy

Manager of Pens and Office Supplies
Staff member
Messages
3,819
Reaction score
163
Points
63
Your problem is your .htaccess file:

Code:
<Files *.php>
deny from all
</Files>
 

leafypiggy

Manager of Pens and Office Supplies
Staff member
Messages
3,819
Reaction score
163
Points
63
i renamed the file. your website is working, except for that there is a scripting error.
 

caftpx10

Well-Known Member
Messages
1,534
Reaction score
114
Points
63
Your .htaccess was causing part of the 403's on purpose since you was disallowing ALL IP's.
With that out of the way like @leafypiggy said, the only problem you have now is the scripting errors.
 
Top