php cannot download more than 1MB of oracle blob data, download truncated after 1MB

WenAcelette

New Member
I have tried a lot but could not download blob data more than 1MB from oracle database. What is the solution for it.I have following header:\[code\]ini_set("memory_limit", "200M"); set_time_limit(0);header("Pragma: public");header("Expires: 0");header("Cache-Control: must-revalidate, post-check=0, pre-check=0");header("Cache-Control: public");header("Content-Description: File Transfer");header("Content-Type: ".$data['CONTENT_TYPE']);header("Content-Disposition: attachment; filename=\"".$data['FILENAME']."\"");header("Content-Transfer-Encoding: binary");$content=$data['DATA']->load(); echo $content; exit();\[/code\]please help me.Thanks in advance
 
Back
Top