The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.
|
 |
|
Dev Shed Forums
> Web Site Management
> Scripts
|
File Downloading
Discuss File Downloading in the Scripts forum on Dev Shed. File Downloading Scripts forum discussing topics including building, optimization, and implementation. Discuss which scripting language is best suited to your needs.
|
|
 |
|
|
|
|

Dev Shed Forums Sponsor:
|
|
|

September 12th, 2003, 07:56 PM
|
|
Contributing User
|
|
Join Date: Sep 2003
Location: The Little Red Dot
Posts: 149
Time spent in forums: 1 h 23 m 6 sec
Reputation Power: 10
|
|
|
File Downloading
Anyone has a good download script?
I plan to include upload/download options for web based RH8 server.
I've finished the upload part now.
|

September 12th, 2003, 11:33 PM
|
 |
Moderator Emeritus
|
|
Join Date: Feb 2002
Location: Scottsdale, AZ
|
|
|
Moved to the Scripts forum from PHP
|

September 12th, 2003, 11:52 PM
|
|
Contributing User
|
|
Join Date: Sep 2003
Location: The Little Red Dot
Posts: 149
Time spent in forums: 1 h 23 m 6 sec
Reputation Power: 10
|
|
|
Re: File Downloading
Quote: Originally posted by stunned
Anyone has a good download script?
I plan to include upload/download options for web based RH8 server.
I've finished the upload part now. |
oh no i mean a PHP script....
|

September 13th, 2003, 06:41 PM
|
 |
Moderator Emeritus
|
|
Join Date: Feb 2002
Location: Scottsdale, AZ
|
|
|
Re: Re: File Downloading
Quote: Originally posted by stunned
oh no i mean a PHP script.... |
Actually, regardless of the particular language you're looking for, the Scripts forum is the place for this kind of post...
Have you checked hotscripts, sourceforge, google, etc. ?
|

September 14th, 2003, 07:35 PM
|
|
Contributing User
|
|
Join Date: Sep 2003
Location: The Little Red Dot
Posts: 149
Time spent in forums: 1 h 23 m 6 sec
Reputation Power: 10
|
|
|
Thanks. Silly me.
I've completed one of my own. Now i'm moving on to versioning.
|

September 14th, 2003, 09:19 PM
|
 |
Moderator Emeritus
|
|
Join Date: Feb 2002
Location: Scottsdale, AZ
|
|
Quote: Originally posted by stunned
Thanks. Silly me.
I've completed one of my own. Now i'm moving on to versioning. |
If you've completed your own, why not post the code for it? I'm sure there are a ton of developers who would appreciate your script...
|

September 15th, 2003, 07:42 PM
|
|
Contributing User
|
|
Join Date: Sep 2003
Location: The Little Red Dot
Posts: 149
Time spent in forums: 1 h 23 m 6 sec
Reputation Power: 10
|
|
Thats a good suggestion....but fact is i just hyperlinked all the files to be downloaded....abit lazy on my part
PHP Code:
if ($alistdir)
{
$x = ($y);
}
else
{
$alistdir = ("/Uploads");
}
$listdir = ("..$alistdir");
if ($alistdir) {
print ("<font face=\"Courier New, Courier, mono\" size=\" \">Current directory = $alistdir\n</font>");
print "<br>";
print "<p>";
print ("<font face=\"Courier New, Courier, mono\" size=\"2\">$alistdir contains: Last Modified</font>");
print "<br>";
print "<p>";
print "<p>";
$dir = opendir("$listdir");
while ($file = readdir($dir)) {
if ($file != '..' && $file !='.'){
$Temp = $file;
$last_modified = filemtime("$file");
echo ("<font face=\"Courier New, Courier, mono\" size=\"2\"><a href=\"$listdir/$file\">$file\n</a></font> ");
print(date(" m/j/y h:i ", $last_modified));
print ("<br>");
|

September 15th, 2003, 07:43 PM
|
|
Contributing User
|
|
Join Date: Sep 2003
Location: The Little Red Dot
Posts: 149
Time spent in forums: 1 h 23 m 6 sec
Reputation Power: 10
|
|
|
I'm now moving on to a script to force download files that are of .php extensions.
btw the code i posted is extracted from two open source projects and pieced together........
|

September 15th, 2003, 09:15 PM
|
 |
Moderator Emeritus
|
|
Join Date: Feb 2002
Location: Scottsdale, AZ
|
|
Quote: Originally posted by stunned
I'm now moving on to a script to force download files that are of .php extensions.
btw the code i posted is extracted from two open source projects and pieced together........ |
You can force this by using the header() function... search on the PHP forum for 'php download', you'll find code for this posted.
|
Developer Shed Advertisers and Affiliates
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Rate This Thread |
Linear Mode
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|