Quote:
Originally Posted by delicjous
Did you try to call the API user logout?
PHP Code:
$logoutInfo = $api->callApi('user', 'logout', $logouthash);
|
Thank you for your reply. I did try the API, but I can't make it work.
Here is my code when I use the API:
PHP Code:
//Init the vBulletin system
require_once( '/forum/includes/vb5/autoloader.php' );
vB5_Autoloader::register( '/forum' );
vB5_Frontend_Application::init( 'config.php' );
$api = Api_InterfaceAbstract::instance();
//Get user info
$vb_userInfo = vB_Api::instance( 'user' )->fetchUserinfo();
$logouthash = $vb_userInfo[ 'logouthash'];
//Logout
$logoutInfo = $api->callApi('user', 'logout', $logouthash);
//Redirect
header( "Location: /index.php" );
With this, I get the following general error from vB:
That action could not be completed. Please try again, and if this occurs again please contact the system administrator and tell them how you got this message.
Maybe you could help me find what I'm doing wrong.
Thanks again.