Yes, it was a phpBB2 issue. phpBB removes the final closing brackets from the tracking code when uploaded and you end up with } catch(err) </script> rather than } catch(err) {}</script>. Put a space between the brackets } catch(err) { }</script>, reupload and all will be well. *** This worked well. ...