I’m currently trying to follow a tutorial:
http://tanksoftware.com/tutes/leechprotection.html
And I don’t know what to name each php script I am given, can anyone help me out with it?
I’m currently trying to follow a tutorial:
http://tanksoftware.com/tutes/leechprotection.html
And I don’t know what to name each php script I am given, can anyone help me out with it?
Somename.php?
This really depends on what you are trying to do. Are you trying to set up a downloader so people can not download your files without permission? Or are you trying to hide all of your pages? Or, are you wanting to just hide your code from others.
This tutorial you posted seems to be about having files to download and not allowing them to be downloaded thru normal means. You can do that with a database. Just load the filenames into it and use the index ID as the pointer to the file. So, file " 1 " is database filename ID=1 and in the DB, you can have the real filename and start the download using it. Someone who downloads the file may be able to sniff out the actual location. Since downloading involves a connection to the server, it may be able to be tracked.
So, let’s hear what you are trying to hide and someone here should be able to help you.