After enabling phpfreechat, when user submit registration form or request for new password, it redirect to homepage without any notification / status message. User get no relevant message about his operation. On disabling this mobule, it works fine as it should do. May be somewhere it is clearing drupal_set_message or session or something else may be possible.

Comments

dkaswan’s picture

After enabling phpfreechat, not only registration status messages but all session messages which should display after page redirect are not displaying. It means

drupal_set_message('My message', 'status');
drupal_goto('user');

will not work. but if i use

drupal_set_message('My message', 'status');
return l('back', 'path');

it works (if same page, no redirect).

any help???

IWasBornToWin’s picture

I'm having the same issue

stg11’s picture

I'm having the same problem. As soon as I disable phpFreechat module, the messages show up. Anyone have a work-around?