Web Hosting Talk







View Full Version : Problem when streaming a FLV movie.


azizny
11-05-2006, 06:09 PM
I am streaming a flash movie (30 MB) via Flowplayer.

Problem is when the user access the display page, they get stuck. Until the streaming is complete, they can't visit any other part of the website.

I am thinking the problem is with HTTPD, maybe limiting access to one user per time on the site?

Any help would be nice.

Here is the code I am using to dispatch the Flash file:


<?php
$file = fopen($flashmovielink,'r');
while($temp = fread($file,1048576)){
echo $temp;
}
fclose($file);
?>


Thanks

Peace,