I have found an error in the manual installation file in the ModX format. /phpbbforum/contrib/phpbbdrupal/install.xml

#
#-----[FIND]-------------------------------------------------------
#

$db->sql_transaction('commit');

#
#-----[AFTER, ADD]-------------------------------------------------------
#

	return false;
}

} // end if (defined('PHPBB_DRUPAL_MODULE'))

//-- fin add mod : phpBBdrupal --------------------------------------------------------

Following this will actually create an error within that file.

It should rather be:

#
#-----[FIND]-------------------------------------------------------
#

	$db->sql_transaction('commit');
	
	return false;
}

#
#-----[AFTER, ADD]-------------------------------------------------------
#

} // end if (defined('PHPBB_DRUPAL_MODULE'))

//-- fin add mod : phpBBdrupal --------------------------------------------------------

Comments

himtuna’s picture

Yes, what should I do with this install.xml
Shall make the modifications in includes/functions_user.php as instructed ?

( I have succesfully patched phpBB3 as instructed )
But only getting one problem is that users logging out from forum doesn't logout from drupal, but reverse is working fine.

fizk’s picture

Status: Active » Closed (fixed)