OK. I've got some information that I'd like to auto-update in the menu alert. I've written a php page that puts the information I want in the table:
Code:
UPDATE `{databasename}`.`vb_setting` SET `value` = '{$scroll}' WHERE CONVERT( `vb_setting`.`varname` USING utf8 ) = 'alert_menu_alert' LIMIT 1
This is working properly, to a fashion, but it isn't fully automated. When I go into the control panel, I see the text that I've written, but I have to save it before it actually shows up in vbulletin. There must be some caching going on somewhere, I guess. Any ideas for how I can make this show up with no user interaction?