Go Back   Novahq.net Forum > Computers > Web design and Programming

Web design and Programming Discuss website creation and other programming topics.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 01-06-2004, 06:12 PM
XenoMorpH is offline XenoMorpH
Registered User

Join Date: Jul 2002
Posts: 194

Disableing Download accelerators.

Hi, I'm running a phpnuke website. When people download files off my site using a DL-Acc. They can c the direct-DL-link. When using the default Windows DL-link the link is not visible.

Like on this site, it's not possible to download files through a DL-acc. How can I stop people dopwnloading with a DL-Acc?
__________________
XëñøMørÞH
«ALIEN SOLDIER OF DELTAFORCE»

[AMD Phenom 9850][2Gig 1066MHz DDR2 @1100MHz][ATI Radeon 4870X2][19" IIYAMA Prolite E480S Flatpanel]
Reply With Quote
  #2  
Old 01-06-2004, 07:33 PM
Sal UK is offline Sal UK

Join Date: Aug 2002
Posts: 2,578

Send a message via ICQ to Sal UK
LOL sorry XenoMorph, Doh I thick The compared was comming up compairing to mine lol I didnt know it done that.
__________________

Last edited by Sal UK; 01-06-2004 at 07:53 PM.
Reply With Quote
  #3  
Old 01-06-2004, 07:37 PM
XenoMorpH is offline XenoMorpH
Registered User

Join Date: Jul 2002
Posts: 194

3D mark score wrong? Don't think so.........
BTW, why post it here.........
__________________
XëñøMørÞH
«ALIEN SOLDIER OF DELTAFORCE»

[AMD Phenom 9850][2Gig 1066MHz DDR2 @1100MHz][ATI Radeon 4870X2][19" IIYAMA Prolite E480S Flatpanel]
Reply With Quote
  #4  
Old 01-06-2004, 07:39 PM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,920

We use a custom php coded script for downloading, it hides the path when sending the file to your browser as a header attachment. Download accelerators do not act as a browser therefor they cannot find/accept the actual file sent by the header attachment.

It's not the perfect explination but I dunno how else to explain it.
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote
  #5  
Old 01-06-2004, 07:40 PM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,920

Re: Disableing Download accelerators.

Quote:
Originally posted by XenoMorpH
How can I stop people dopwnloading with a DL-Acc?
Send the file as a http header using php. You will have to modify some php in php nuke.
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote
  #6  
Old 01-06-2004, 07:41 PM
XenoMorpH is offline XenoMorpH
Registered User

Join Date: Jul 2002
Posts: 194

Hmmm....what do you mean by that?
__________________
XëñøMørÞH
«ALIEN SOLDIER OF DELTAFORCE»

[AMD Phenom 9850][2Gig 1066MHz DDR2 @1100MHz][ATI Radeon 4870X2][19" IIYAMA Prolite E480S Flatpanel]
Reply With Quote
  #7  
Old 01-06-2004, 07:42 PM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,920

http://us2.php.net/manual/en/function.header.php
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote
  #8  
Old 01-06-2004, 07:43 PM
XenoMorpH is offline XenoMorpH
Registered User

Join Date: Jul 2002
Posts: 194

Tnx, I'll try, byt I'm not that good with php tho.
__________________
XëñøMørÞH
«ALIEN SOLDIER OF DELTAFORCE»

[AMD Phenom 9850][2Gig 1066MHz DDR2 @1100MHz][ATI Radeon 4870X2][19" IIYAMA Prolite E480S Flatpanel]
Reply With Quote
  #9  
Old 01-06-2004, 07:45 PM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,920

Somthing like this:

PHP Code:
<?
$file
="/path/to/file.ext"
Header ("Content-Type: application/octet-stream"); 
Header ("Content-Length: ".filesize($file)); 
Header"Content-Disposition: attachment; filename=".$file.""); 
readfile($file); 
?>
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote
  #10  
Old 01-06-2004, 07:47 PM
XenoMorpH is offline XenoMorpH
Registered User

Join Date: Jul 2002
Posts: 194

Oh man, I really have to get me a book about php LMAO.........I feel dumb :/
__________________
XëñøMørÞH
«ALIEN SOLDIER OF DELTAFORCE»

[AMD Phenom 9850][2Gig 1066MHz DDR2 @1100MHz][ATI Radeon 4870X2][19" IIYAMA Prolite E480S Flatpanel]
Reply With Quote
  #11  
Old 01-06-2004, 08:11 PM
XenoMorpH is offline XenoMorpH
Registered User

Join Date: Jul 2002
Posts: 194

When I save the code as aphp file and run it from my website, it downloads the file without the DL-acc, but how can I let it DL a file?
__________________
XëñøMørÞH
«ALIEN SOLDIER OF DELTAFORCE»

[AMD Phenom 9850][2Gig 1066MHz DDR2 @1100MHz][ATI Radeon 4870X2][19" IIYAMA Prolite E480S Flatpanel]
Reply With Quote
  #12  
Old 01-22-2004, 09:31 PM
XenoMorpH is offline XenoMorpH
Registered User

Join Date: Jul 2002
Posts: 194

Got a script from someone. It let's files only be downloaded by windows default download, and there's no way to retreive the exact URL of the file, AND it's not leechable at all!!!

Ddin't use the code aboce tho....just letting u guys know prob solved.
__________________
XëñøMørÞH
«ALIEN SOLDIER OF DELTAFORCE»

[AMD Phenom 9850][2Gig 1066MHz DDR2 @1100MHz][ATI Radeon 4870X2][19" IIYAMA Prolite E480S Flatpanel]
Reply With Quote
  #13  
Old 01-23-2004, 01:00 AM
Hellfighter is offline Hellfighter
Hellfighter's Avatar
Chief ADFP

Join Date: Jun 2002
Location: San Jose Calif 95111
Posts: 21,143

Send a message via ICQ to Hellfighter
personnaly i like using the DL-Acc for big files it helps, but i under stand about leech there are some jerks who like to leech on to files, i am not one of them. i use Netleech not dl-acc its better and someway its totally good i can upload to my FTP better were dl-acc can't do it.
__________________
* altnews sources [getmo & others news] not found main FNN: realrawnews.com
*Discord: Unknown77#7121
Playing now days: EA Games> swtor [star wars old republic]
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Download Grim-Reaper-PC- Delta Force 2 07-22-2005 01:49 PM
download bigsmellyfart Joint Operations 2 09-01-2004 02:31 PM
Download Problem -Tigger- General Chat 11 07-02-2004 02:15 AM
cant download anything sweetback Feedback / Novahq.net Support 5 01-25-2004 11:56 PM
Is the 1.2.0.4 available to download bunraku Delta Force 2 05-07-2003 09:59 AM


All times are GMT -5. The time now is 12:31 AM.




Powered by vBulletin®