Hi there,
i made an php file, that lists all available videos in a folder.
These Videos are listet and linked on the page.
If the link gets clicked there is a new site opened with forwarding the file name as parameter.
The player is included in the new page and should load the chosen video.
The forwarding of the parameter works fine and everything looks ok, but the player can`t load the video. It just shows "loading" all the time.
If i copy the html source code stated in the browser to a static html document everything works fine.
This is the URL:
http://esimple.de/example/index.php
Can you help me please?
Regards
Chris
This File includes the Flowplayer and it and looks exactly like that:
<html> <head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="own.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Controlling Monitoring - Video Tutorials</title>
</head>
<body>
<div id="page">
$tutorial=$_GET["tutorial"];
echo $tutorial;
echo '
';
echo "
<script type="text/javascript">
var daten = "".$tutorial."";
";
?>
var map = {
clip: {
url: 'flv/'+daten,
autoPlay: false,
autoBuffering: true,
linkUrl: 'http://development.int.cinetic.de/dev_wiki/MediaFactory/ControllingMonitoring'
}
};
flowplayer("player", "flowplayer-3.0.2.swf", map);
</script>
</div>
</body>
</html>
i made an php file, that lists all available videos in a folder.
These Videos are listet and linked on the page.
If the link gets clicked there is a new site opened with forwarding the file name as parameter.
The player is included in the new page and should load the chosen video.
The forwarding of the parameter works fine and everything looks ok, but the player can`t load the video. It just shows "loading" all the time.
If i copy the html source code stated in the browser to a static html document everything works fine.
This is the URL:
http://esimple.de/example/index.php
Can you help me please?
Regards
Chris
This File includes the Flowplayer and it and looks exactly like that:
<html> <head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="own.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Controlling Monitoring - Video Tutorials</title>
</head>
<body>
<div id="page">
$tutorial=$_GET["tutorial"];
echo $tutorial;
echo '
';
echo "
<script type="text/javascript">
var daten = "".$tutorial."";
";
?>
var map = {
clip: {
url: 'flv/'+daten,
autoPlay: false,
autoBuffering: true,
linkUrl: 'http://development.int.cinetic.de/dev_wiki/MediaFactory/ControllingMonitoring'
}
};
flowplayer("player", "flowplayer-3.0.2.swf", map);
</script>
</div>
</body>
</html>