View Single Post
03-12-10, 09:51 AM   #8
nightcracker
A Molten Giant
 
nightcracker's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 716
I guess as soon as you upload a new version they will steal it again. They just have a script subscribed to our RSS and automaticly steal everything uploaded here including the description. They even stole my [/font] typo at the end of my ncUI description: addons1.mmosite.com/wow/content/2010-03-02/20100302232327112.shtml.

I would request anyone capable of representing WoWInterface to ask them seriously to stop downloading and reuploading addons from this site. It actually wouldn't surprise me if they would hotlink WoWInterface.com's files, since they use a .php download script to mask the real upload. They just couldve done this, where somequerylookup() would return the WoWInterface download link:

Code:
<?php
if (isset($_GET["id"])) {
	$link = somequerylookup($_GET["id"]);
	$addonname = someotherquery($_GET["id"]);
	$file = fopen($link, "r");
	$data = fread($file, filesize($link));
	fclose($file);
}
if ($data) {
header("Content-type: application/octet-stream");  
header("Content-disposition: attachment; filename=$addonname.zip");
echo $data;
}
?>
__________________
Three things are certain,
Death, taxes and site not found,
You, victim of one.

Last edited by Zyonin : 03-12-10 at 02:18 PM. Reason: Removed parsed links
  Reply With Quote