Yes, I am trying to find info on how too mask a Download , so it will mask the displayed urll.
I am trying to submit a couple of files for Download ing off of my site but it will be Download ed from none members, and I would like to hide the true url of the file or to have a password that will only work once and then it won't work again.
If you have any help it would be greatly appreciatted.
Thanks,
Joeyou can use the header function in php to do this. that way all they see is a url of this
Download .php?id=whatever
that whatever can be a file name or an id if you keep the location in a database of some kind.
but this doesn't do any good if you keep the files in a location that users can get to by guessing. you should kep all files above the root www of your page, that way thy can't get to it if they tried.
I am trying to submit a couple of files for Download ing off of my site but it will be Download ed from none members, and I would like to hide the true url of the file or to have a password that will only work once and then it won't work again.
If you have any help it would be greatly appreciatted.
Thanks,
Joeyou can use the header function in php to do this. that way all they see is a url of this
Download .php?id=whatever
that whatever can be a file name or an id if you keep the location in a database of some kind.
but this doesn't do any good if you keep the files in a location that users can get to by guessing. you should kep all files above the root www of your page, that way thy can't get to it if they tried.