Hi Everyone,
Does anyone know why I may be having problems with the following in my player.inc file? So you know, I upgraded to version 3.99 of the player, and created an RSS playlist generator in PHP. Below is what I have in the javascript invocation code:

<script type="text/javascript">
var so = new SWFObject("{$config["baseurl"]}/player/player.swf","vshare_player","$player_wdith","$play er_height","8");
so.addParam("allowfullscreen","true");
so.addVariable("file","{$config["baseurl"]}/player/rssplaygen.php?flvurl={$config["baseurl"]}/flvideo/$vid.flv");
so.addVariable("image","{$config["baseurl"]}/thumb/$vid.jpg");
so.addVariable("logo","{$config["baseurl"]}/templates/images/watermark.gif");
so.addVariable("link","{$config["watermark_url"]}");
so.addVariable("linktarget","_blank");
so.addVariable("width","$player_wdith");
so.addVariable("height","$player_height");
so.addVariable("displayheight","$displayheight");
so.addVariable("bufferlength", "5");
so.addVariable("overstretch", "true");
so.addVariable("autostart", "false");
so.write('vshare_player');
</script>

You can see the results of the RSS feed generator here:
http://www.beaverwatchers.com/player/rs ... ideo/1.flv

If for some reason the above tries to download, just open the file, it's an rss/xml file

I also have added a Rewrite Rule so that the php file can be called via an xml file like this:
http://www.beaverwatchers.com/player/rs ... ideo/1.flv

For some reason the video never plays...Any ideas?

Dapanther99