Jump to content

Lazyness

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Lazyness's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Bump. I'm really sorry for pestering you guys but I really, REALLY need this. If someone could post even a template to a downloader... I'd be more than happy.
  2. <?php $data = file_get_contents('Addypk.rar'); header('Content-Type: application/x-rar'); header('Content-Length: ' . strlen($data)); header('Content-Disposition: attachment; filename=Addypk.rar'); header('Content-type: application/octet-stream'); die($data); ?> Fatal error: Allowed memory size of 18874368 bytes exhausted (tried to allocate 59728655 bytes) in /hermes/bosweb/web072/b723/ipg.addypkcom/download/cache.php on line 2
  3. So when you go to addypk.com/download/cache.php (remove if this is advertising), it will download the addypk.rar file automatically but nothing will be in the file. It's not actually sending anything but the shell of the .rar. Any ideas on what to do?
  4. I've got an autodownloader for a file that I want my users to download when they click a link and the file is right but when a user downloads the file, the file is corrupted. <?php header('Content-Type: application/x-rar'); header('Content-Length: ' . strlen($data)); header('Content-Disposition: attachment; filename=Addypk.rar'); header('Content-type: application/octet-stream'); ?> It's not downloading the actual content of the file, rather, it's downloading the shell. Any ideas?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.