Disabling all systemConfig tagged tiddlers and bringing them back did lead to solving my troubles.
I set up Google Analytics as explained here: http://www.hawksworx.com/journal/2007/07/05/tracking-tiddlywiki-with-google-analytics or used this code in a systemConfig tiddler: {{{ // Overide displayTiddler function to also Google Analytics urchin. var TiddlyLock = {}; // Create a namespace for our new function. TiddlyLock.displayTiddler = story.displayTiddler; story.displayTiddler = function (srcElement,titles,template,unused1,unused2,animate,unused3) { if (urchinTracker) { urchinTracker('/' + titles); } TiddlyLock.displayTiddler.apply(this,arguments); } }}} I had the same problem as reported by Chad, only on the local copy, not the Tiddlyspot hosted copy. Commenting the 'if' line does make it work. Replacing the 'if' line results in an error. Can anyone see the problem? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/TiddlyWiki?hl=en -~----------~----~----~----~------~----~------~--~---

