quote:
Originally posted by john-t
quote:
Originally posted by deAd
Upload a custom htaccess file, but I forgot what you actually have to put in it
You have to pay for .htaccess with 110mb
then have them download the plsc through a php page like
code:
<?php
if(!isset($_GET['request']))die("didnt request a file ");
$plscdir = "./xxx/";
$file = $plscdir . basename($_GET['request']);
if(file_exists($file)){
header("Content-type: application/x-plsc");
readfile($file);
}else{
echo "file doesnt exist ;o";
}
?>
then save that as downloadplsc.php and when you want to download a plsc have them go to the url like
http://xxx.com/downloadplsc.php?request=moo.plsc