I know securing any website is a very tough and broad topic to be discussed upon but i want to relate this question to my specific website which i've been working on. It was coded in php by some other programmer around 2004 and i am responsible for it's management. My problem is it's being hacked time and again. I have noticed following things when it's been hacked.
.htaccessfile has been modifiedindex.phpandconfig.phpfiles were modified- Admin password has been changed
- Uploading files in server
- changing file permission of files and folders
I have worked on the code, it has been properly escaped and i think there is no probability of sql injection. Since most of the problem is related to files and permission i have a doubt about the server security but due to the reason that it was coded around 2004 surely it will lack some security, so what other things do i need work upon in my code to prevent my site being hacked for above mentioned problems?
Thanks in advance.

register_globalsset to on. Probably the biggest security hole in PHP's history. I do hope that it's set to OFF now and that the code uses $_GET, $_POST and so on where appropriate and not use $_REQUEST. – Simon André Forsberg Jun 15 '12 at 6:14