Thanks for your reply Radek.
As you correctly say, I now have the graphs working as stand alone but, now I am having difficulty running them on another page with a simple:
Page is here: http://www.nightingaleweather.co.uk/template101.php
Any ideas greatly appreciated.
Duke
These errors is shown because you include WU-Graphs in CMS that already send output from PHP. If you don't have enough knowledge about PHP (for editing your cms), you have about three options how to solve this:
1.You can try add into file wugraphs.php after line "<?php" this code on new line: "@ini_set('display_errors', 'off');" (without quotation marks)
This trick only hide this warnings, but some functions in WU-Graphs may be problematic. But I recomend to try, because this is easiest way.
2.Don't use include function. Instead use in your template a html iframe element with link to wugraphs.php
This is 100% working way.
Example:
<iframe src="http://path.to.file/wugraphs.php" frameborder="0" width="100%" scrolling="no"></iframe>Note: You must add right path to wugraphs.php in a src attribute.
3.Comment out or delete all problematic lines. But some functions in WU-Graphs may be problematic...