I'm a php newbie and had a script on the clubs old site. Now i've tried to move it i can't get it to run 
This isn't working:-
http://ccgi.theblue.plus.com/CSAC_website/testpage.php
this does:-
http://ccgi.theblue.plus.com/cpg1414/cpmfetch/Test.php
any ideas?

This isn't working:-
http://ccgi.theblue.plus.com/CSAC_website/testpage.php
PHP:
<?php
include_once "http://ccgi.theblue.plus.com/cpg1414/cpmfetch/cpmfetch.php";
$objCpm = new cpm("http://ccgi.theblue.plus.com/cpg1414/cpmfetch/cpmfetch_config.php");
$options = array('windowtarget' => '_parent');
$objCpm->cpm_viewRandomMediaFrom("cat=1,2,3,4,5",1, 4, $options);
$objCpm->cpm_close();
?>
this does:-
http://ccgi.theblue.plus.com/cpg1414/cpmfetch/Test.php
PHP:
<?php
include_once "./cpmfetch.php";
$objCpm = new cpm("./cpmfetch_config.php");
$options = array('windowtarget' => '_parent');
$objCpm->cpm_viewRandomMediaFrom("cat=1,2,3,4,5",1, 4, $options);
$objCpm->cpm_close();
?>
any ideas?