Sasuke
03-19-2004, 05:44 PM
Hey.
I'm getting some errors with my code when trying to use the PEAR HTTP_DOWNLOAD package. I've installed that package and the required dependencies and I still get the following error.
Fatal error: Undefined class name 'http_download' in e.t.c e.t.c
My code is as follows..
<?php
$dl = &new HTTP_Download();
$dl->setFile('linux_001.zip');
$dl->setContentDisposition(HTTP_DOWNLOAD_ATTACHMENT, 'linux_001.zip');
$dl->setContentType('application/zip');
$dl->send();
?>
Any ideas?
I'm getting some errors with my code when trying to use the PEAR HTTP_DOWNLOAD package. I've installed that package and the required dependencies and I still get the following error.
Fatal error: Undefined class name 'http_download' in e.t.c e.t.c
My code is as follows..
<?php
$dl = &new HTTP_Download();
$dl->setFile('linux_001.zip');
$dl->setContentDisposition(HTTP_DOWNLOAD_ATTACHMENT, 'linux_001.zip');
$dl->setContentType('application/zip');
$dl->send();
?>
Any ideas?
