Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This might be a really silly question but where is the best place to put the HTML purifier library?

I am assuming if I put it in public_html then someone with ill intent could easily access it, should I put it in a folder that is on the same par level as public_html? maybe make a special folder for it? Or should I be placing it completely outside the document root?

share|improve this question
2  
if(accept rate===0)echo 'No answers'; – user1432124 Jul 12 '12 at 14:41
1 that's completely up to you. there is no universal answer. 2 you're going to have a hard time getting an answer with a 0% accept rate.... – maxhud Jul 12 '12 at 14:41
ah ok.....wait.....zero percent accept rate? I understand the code, I dont understand the context :( – Kalcoder Jul 12 '12 at 14:43
@Kalcoder: They're referring to how you've yet to accept an answer on any of your previously asked questions. In Stack Exchange, people are highly encouraged to select the answer that work for them by clicking on the checkmark next to it. (This'll give both you and the answerer some rep too, if you care about that sort of thing). – Michael0x2a Jul 12 '12 at 15:51
1  
Oh crap, I didnt realise.....sorry, newb at this, ill go do that for my previous posted questions as well, sorry guys!! – Kalcoder Jul 12 '12 at 16:01
show 1 more comment

1 Answer

up vote 1 down vote accepted

There are several ways to do this. You already named a few. The first way is to just place it outside the web root so no-one can acces it. The second one (the one I always use) is to create a new folder for the file and place a .htaccess in it with the following content:

Deny from all

This allows you to include the file with php but not to call it directly from your browser.

If you want to know more about the second method, take a look at this link.

share|improve this answer
1  
Does that mean then I could create a folder WITHIN public_html, put a text file called htaccess in that directory, with Deny from all and its safe? , I noticed I already have this file, does it matter if there are multiple htaccess files in various folders? (P.S that is an awesome link, very useful thankyou!) – Kalcoder Jul 12 '12 at 15:01
Make sure the file is called .htaccess, not htaccess. You can have multiple .htaccess files on your server, just make sure they are not in the same directory. And you answer your question: yes, it works that way. You can always test it by trying to call one off the files from your browser. – Bob Jul 13 '12 at 6:42

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.