hi all
i uploaded a large file to the documents module 250 mega byte but when i get to download this file
the page keeps loading and nothing happen any one can tell me what is error ...
thanks
hi all
i uploaded a large file to the documents module 250 mega byte but when i get to download this file
the page keeps loading and nothing happen any one can tell me what is error ...
thanks
Hi
you need to change some attributes in httpd.conf so you can do this.
Priscila Kin Yamamoto Joranhezon
Phone: +55 61 32010000
priscila.joranhezon@nct.com.br
NCT Informática Ltda
thank you kinshibuya
i found the problem it was in the file download.php exactley the end of that file
*****************************
<?
set_time_limit(0);
@ob_end_clean();
ob_start();
echo file_get_contents($download_location);
@ob_flush();
?>
***************************************
i realized the use for buffer which work ok with small files as i will not use alot of memory
so with large files size the problem appeared so i did not use the buffer to store the file before download
also i replaced the function file_get_contents and the solution was in this bit of code
************************************************
<?
ob_end_clean();
// ob_start();
readfile($local_location);
// ob_flush();
?>
****************************
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks