Jump to content

Recommended Posts

Posted

I have uploaded my site online for a test, however a security question arises. How do you set the permissions correctly on templates and PHP files, so they can't be saved by someone but at the same time work on the server without throwing errors?

Posted

You can block viewing of indexes and direct access to files.

Add this to the .htaccess file.

Options All -Indexes

<FilesMatch "\.(htaccess|htpasswd|ini|phps|fla|psd|log|sh|tpl)$">

Order Allow,Deny

Deny from all

</FilesMatch>

Btw, if the server lets you actually DOWNLOAD .php files than apache or whatever you are running isn't set correctly and that is a big issue. ;)

Posted

It is a big issue indeed, that's why I'd like to get rid of it. I tried CHMOD on the templates and PHP files, but either the website would break, with "Permission denied" or it would just be downloadable.

It also solved the issue, thank you :) Now I get a 403 forbidden page.

Posted

Yep, it returns a 403 for viewing the directories without an index. You can customize the error returned and create a custom error pages.

Glad I could help.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...