Figured it out ..... I had managed to set the CacheTime property of all of my modules to 1200s. Most modules (like Account Login & CataLook) need a CacheTime of 0 to function propertly. I made this mistake by going into a module settings page for a module that had a CacheTime of 1200 and clicking both Set As Default Settings and Apply To All Modules (in Page Settings > Advanced).
Because I couldn't log in to fix it, I used this SQL script to change the CacheTime to 0 for all modules other than 'Text/HTML' : update tm
set cachetime = 0
from modules m
join tabmodules tm on m.moduleid = tm.moduleid
join moduledefinitions md on m.moduledefid = md.moduledefid
where friendlyname <> 'Text/HTML'
|