Hello, i can't understand one thing. In code, for example:
$filePath = 'http://wwww.server.com/file.flv';
if( file_exist($filePath) )
{
echo 'yes';
}
else
{
echo 'no';
}
Why does script return 'no', but when i copy that link to the browser it downloads?