Hi, First of all I want to say this is probably the nicest modification I have ever seen anywhere on any gallery package, I have seen it on loads of sites (I went looking) and love it, unfortunately I am living up to my uiser name once again, I seem to be unable to get it working

I had a similar problem with a plugin yesterday and ended up asking for help so once again I am here begging for assistance!

My gallery can be found at
http://www.rebelslair.co.uk/pic_gallery.
In case it was a cache problem I have cleared all cache's and even tried with 3 different computers to see if it was an issue with my PC, but it looks like i have done something silly and unfortunately I cannot find what as it was the same on all of them.
I have uploaded all the files to my gallery root having edited the flow_link.php file as I
THINK it should be.
<?php
define('IN_COPPERMINE', true);
require('include/init.inc.php');
$path=$CONFIG['http://www.rebelslair.co.uk/pic_gallery'];
$xml = <?xml version="1.0" encoding="iso-8859-1"?><content>';
if ($FORBIDDEN_SET != "") $FORBIDDEN_SET = "AND $FORBIDDEN_SET";
$result = mysql_query("SELECT * FROM {$CONFIG['TABLE_PICTURES']} AS p WHERE filename LIKE '%.jpg' AND aid = 44 ORDER BY RAND() LIMIT 25");
$row = mysql_fetch_array($result);
while ($row = mysql_fetch_array($result))
{
$type = max($row['pwidth'], $row['pheight']) > $CONFIG['picture_width'] ? 'thumb' : 'thumb';
$xml .= "<image><path><![CDATA[" . $path . get_pic_url($row, $type) . "]]></path><description><![CDATA[" . $row['title'] . "]]></description><data><![CDATA[" . $path . "displayimage.php?pos=-" . $row['pid'] . "]]></data></image>";
}
$xml .= '</content>';
echo $xml;
?>
I have also edited the anycontent.php file according to the instructions here
I think<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Flow Link Example</title>
<script language="javascript">AC_FL_RunContent = 0;</script>
<script src="AC_RunActiveContent.js" language="javascript"></script>
</head>
<body bgcolor="#000000" scroll="auto">
<table width="100%" height="100%" border="0"><tr align="center" valign="middle"><td>
<script language="javascript">
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js.");
} else {
AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
'width', '800',
'height', '250',
'src', 'flow_link',
'FlashVars', 'xmlPath=http://www.rebelslair.co.uk/pic_gallery/flow_link.php', <!--Absolute path to 'flow.php'-->
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'transparent',
'devicefont', 'false',
'id', 'flow_link',
'bgcolor', '#000000',
'name', 'flow_link',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','always',
'movie', 'flow_link',
'salign', ''
); //end AC code
}
</script>
</td></tr></table>
</body>
</html>
If someone could have a look for me and tell me what I have done wrong I would be very grateful.
Thanks in advance
http:www.rebelslair.co.uk/pic_galleryps. In case it was not obvious, I am a newbie to this type of coding, and whilst I have read as much as I could about coppermine modifications on this site, I have ended up confusing myself.