This is a discussion on RE: Downloding files once within the PHP General forums, part of the PHP Programming Forums category; Hello, On 08/06/2003 03:56 PM, Boaz Yahav wrote: > What about using mod_auth_mysql to add/remove usernames ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello,
On 08/06/2003 03:56 PM, Boaz Yahav wrote: > What about using mod_auth_mysql to add/remove usernames and passwords > from > the download server in real time? Never tried but it could work. The only problem is that for basic auth you need to keep passwords in plain text in the database. -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/ |
|
|||
|
What about using mod_auth_mysql to add/remove usernames and passwords
from the download server in real time? -----Original Message----- From: Manuel Lemos [mailto:mlemos@acm.org] Sent: Wednesday, August 06, 2003 7:52 PM To: Boaz Yahav Cc: php-general@lists.php.net; Igal Rubinstein; Matt Wade Subject: Re: Downloding files once Hello, On 08/06/2003 03:48 PM, Boaz Yahav wrote: > This may work but i can't help thinking that this is the wrong way to > go. Downloading 1GB or 2GB files via fpassthru doesn't feel right... Why not? As long as it works without blowing your server memory that is fine. The only problem you may have is when the users resort to download managers, as this way they won't be able to stop and resume later. If you play with the HTTP headers and fseek, that can be solved too. -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/ |