Page 1 of 2

Re: Download Link BBCode

Posted: Wed Jun 03, 2009 4:16 pm
by man128
I have seen alot of force download php code out there that will force the download box to appear and download any file on internet explorer and prevent media player from opening.
here is what i have found.
http://elouai.com/force-download.php
:thumbsup:
Spoiler: show
<?php

// force to download a file
$file = "http://localhost/test/".$_GET['file']."";

header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");

header("Content-Type: application/force-download");
header( "Content-Disposition: attachment; filename=".basename($file));

header( "Content-Description: File Transfer");
@readfile($file);

?>

Re: Download Link BBCode

Posted: Sun Jun 07, 2009 11:48 pm
by man128
Can anybody try to figure out a way to convert the above code into a bbcode? :banghead:

Re: Download Link BBCode

Posted: Mon Jun 08, 2009 10:14 pm
by cisco007
i don't know if you can make that into a bbcode, you need html and java to make a bbcode, don't know if you can do it with php! :thumbsup: What do you think LDM?

Re: Download Link BBCode

Posted: Mon Jun 15, 2009 8:12 pm
by Ashley
If it is a divx file they are downloading, won't their player prompt them to download the codec anyway?

Re: Download Link BBCode

Posted: Wed Jun 17, 2009 2:14 pm
by man128
It is not a Divx file, it is a .avi file. Everytime they try to click the file to download it opens up their media player instead. :scratch:

Re: Download Link BBCode

Posted: Fri Jun 19, 2009 5:44 pm
by LDM
Isn't that what you want it to do though? It may be different depending on what player they have set up to play avi files.

Re: Download Link BBCode

Posted: Wed Nov 18, 2009 4:47 am
by Looney
How can you make the text appear below the image?

Re: Download Link BBCode

Posted: Wed Nov 18, 2009 3:13 pm
by LDM
Try this for your html instead for text under. Not tested so may have to post if not working.

HTML:

Code: Select all

<table>
<tr>
<td title="Download Here !!" onclick="window.location.href='{URL}'" style="cursor:pointer;"><span onmouseover="this.style.color ='#FF0000';" style="font-weight: normal; font-size: 11px; color: #000000; font-family: Arial;" onmouseout="this.style.color='#000000';"><b>&nbsp;Download Here !!</b></span></td>
<td title="Download Here !!" onclick="window.location.href='{URL}'" style="cursor:pointer;"><img src="images/download.png" alt="" /></td>
</tr>
</table>

Re: Download Link BBCode

Posted: Wed Nov 18, 2009 4:26 pm
by Looney
Tested it and the text went bottom left but not below the image. Thanks for your time LDM, appreciate it alot

Re: Download Link BBCode

Posted: Mon Apr 05, 2010 8:01 am
by the4thmoz
Thx verry much

Re: Download Link BBCode

Posted: Thu Jun 03, 2010 1:40 pm
by NeoFury
awesome, thanks!