Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On my site:

http://bammeh.com/tempemail/

I keep getting erros all over my site when using PHP files that arent CHMOD to 644 or 755.

If I chmod recursively this directory 755 I get:

[an error occurred while processing this directive]

And I f I chmod it recursively to 644 I get:

Forbidden

You don't have permission to access /disposable/admin/ on this server.

Help? :( I use Hostmonster as my host. is it on their end?

share|improve this question
I have read other peoples posts and I have tried their answers, with no avail. – user1304317 Mar 30 '12 at 23:43

2 Answers

up vote 1 down vote accepted

I'd try claiming ownership of the files first with chown - be careful with this though because if you set the permissions tightly and not loosely, you might have trouble accessing them any other way than through PHP itself.

share|improve this answer
Thanks! Got it figured out :) – user1304317 Mar 31 '12 at 0:11

I faced the same issue. It happened when copied files from linux system to another server. I believe file permissions and group got messaged up.

I solved it by moving the files to windows PC where these permissions things are cleared and then unzip it on Linux server. Although its not the correct way but i find it simple enough to try once.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.