Chris wrote:
I don't think there's any built-in way to assign a guest post to a user
...well, not "built-in" but (are you using MySQL with this forum &) do you have
phpMyAdmin? OR do you have
telnet/ssh access to whoever hosts this site? (...& access to the mysql command on the unix command line?)
If so, open phpMyAdmin (& select the option to directly enter queries) or get to the mysql> command prompt &...
Guest topic_id: 1427
Guest post_id: 8439
ChrisM's user_id: 296
phpbb_ = the prefix you chose when setting up phpbb, default is phpbb_ (with the underscore)
To check all the current values before you change them...type/paste...
select * from phpbb_topics where topic_id = 1427;
select * from phpbb_posts where post_id = 8439;
Check necessary columns only (less clutter) (...on the command line...clutter might not matter in phpMyAdmin)...
select topic_id, topic_poster from phpbb_topics where topic_id = 1427;
select post_id, poster_id, post_username from phpbb_posts where post_id = 8439;
Update...
update phpbb_topics set topic_poster = 296 where topic_id = 1427;
update phpbb_posts set poster_id = 296 where post_id = 8439;
Non-guest posts don't have a post_username in the db (it gets the name from the
phpbb_users table), it will work either way (if you leave it or not) but to sync everything up...
update phpbb_posts set post_username = '' where post_id = 8439;
_________________
AutoHotkey-Hotstring.ahk - Helping the world spell "AutoHotkey" correctly! (btw, it's a lowercase k!)