(After upgrading to drupal 5.3?) i cannot show any message body from my inbox, or any other folder. I see old messages but after i click on message page reloads, with http://example.net/privatemsg#message-3652 URL but shows message index. If i click on message in subfolder i am returning to inbox folder.
I can enter and send a message, but there is no new row in database, and no message is sent to the contact at all.
I'll try to do some tests on drupal 5.2 just to confirm it has something to do with 5.3 or maybe with my installation?
I use some modules like token, invite, userpoints (after sending new message i gain points properly), jquery update, quicktags...
Tested with FF and IE, bluemarine and litejazz templates.
Comments
Comment #1
palik commentedok, now i've found that one of queries is wrong (it doesn't showed up in watchdog until i've refreshed cache), there is no column variables in privatemsg table... i don't have previous 2-dev version to compare if this is change in code or what...
for now, just for quick fix i run mysql admin and added this column with:
ALTER TABLE privatemsg ADD variables CHAR(255);Don't know if it is right type, use only if you can rollback to previous state and then use new version. It fixed my problem.
Comment #2
salvisThis is a duplicate of http://drupal.org/node/182369, but I'll let it stand until the issue is fixed, because it's tied to different symptoms.
CHAR(255) may be too short — better use LONGTEXT instead.
Comment #3
Zen commentedThe other issue has been fixed - marking this as a dupe.