[PHP] fpassthru() error after update

2009-12-12 Thread A. Mannini
Hi, i use fpassthru() to stream video files in my webserver. I worked fine for weeks but yesterday, after updating the webserver, i get the error Allowed memory size of 268435456 bytes exhausted (tried to allocate 1729609729 bytes) in . Now PHP version is 5.2.11. Any ideas? Thanks

Re: [PHP] fpassthru() error after update

2009-12-12 Thread Vincent Tumwijukye
This means that buffered video exceeded your memory limitof 260MB set in your php.ini. Consider increasing it to higher value, if your computer has say 1GB or more of RAM. Kind regards On Sat, Dec 12, 2009 at 11:33 AM, A. Mannini newsgro...@esod.it wrote: Hi, i use fpassthru() to stream

Re: [PHP] fpassthru() error after update

2009-12-12 Thread Vincent Tumwijukye
i On Sat, Dec 12, 2009 at 12:51 PM, Vincent Tumwijukye vtumwiju...@gmail.comwrote: This means that buffered video exceeded your memory limitof 260MB set in your php.ini. Consider increasing it to higher value, if your computer has say 1GB or more of RAM. Kind regards On Sat, Dec 12, 2009

Re: [PHP] fpassthru() error after update

2009-12-12 Thread Vincent Tumwijukye
I forgot to mention that you will need to restart your web server after after making that change. Like I mentioned earlier, the script streaming the video is trying to access more memory than the accessible 260MB, by any php script on that server On Sat, Dec 12, 2009 at 12:51 PM, Vincent

Re: [PHP] fpassthru() error after update

2009-12-12 Thread A. Mannini
Vincent Tumwijukye ha scritto: This means that buffered video exceeded your memory limitof 260MB set in your php.ini. Consider increasing it to higher value, if your computer has say 1GB or more of RAM. Kind regards Dear Vicent, i know what the error message is saying but...before upgrading