Ok, per request here's a Joomla! 1.5 plugin to quickly add the Woopra js to your site. Open installing the plugin you must "Enable" it and add your Woopra Website ID to the properties.
http://joomlacode.org/gf/project/rocketwerx/frs/?action=FrsReleaseBrowse&frs_package_id=3605
For Joomla 1.0 the required plugin even "onAfterRender" is not available so the best way to setup Woopra on a Joomla 1.0 install is to create "Custom HTML module" and paste in your woopra code:
<script type="text/javascript">
var woopra_id = 'XXXXX';
</script>
<script src="http://static.woopra.com/js/woopra.js"></script></body>
Be sure to turn OFF your HTML editor (not just toggle to HTML mode) as most JS WYSIWYG editors strip javascript code out of the content.
Then assign this to the debug module position.
You can test if your template has a debug module position by going to:
If your template does not have "debug" module position you can add one right before the </body> tag in your template's index.php file with this code:
<?php mosLoadModules('debug',-1); ?>
Good luck!
