btw, I figured out how to have the logout process take you straight back to the home page of the forum. In the config file, I made these changes:
'showLogoutWindow' => false, // if false, then use only the ....src=logout.php method, but do not use the popup method at all
and
//Logout behavior
'logout' => array(
'close' => true, // if true, then FlashChat window is closed upon logout
'redirect' => true, // redirectURL must be a valid URL
'url' => 'http://www.yoursite.com/forum', // 'redirect' must be set to true for this to work
'window' => '_parent', // the window to open into. possible values: _blank, _self, _parent, or a named window
),
|