As the topic suggests I'd like to know how to check a user remotely (in this particular example if they are logged in to our phpBB3 forum) and then, if they are, redirect them back to the page they were trying to access.
This is an attempt to bridge two frameworks, phpBB and Eqdkp.
What I know so far is this code would help me restrict access to custom pages based on my phpBB sessions:
define('IN_PHPBB', true);
$phpbb_root_path = './../forum/';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();
if(!$user->data['is_registered']){
if ($user->data['user_id'] != ANONYMOUS){
trigger_error('NOT_AUTHORISED');
}
login_box('', $user->lang['NOT_AUTHORISED']);
}
(btw, I've got the eqdkp and forum on the same server in separate sub-directories so perhaps "remotely" is an incorrect word)
however, simply adding this to my EqDKP session.php results in to many conflicts as they both use the same names for functions etcetera. Hence why I want to first send the user to some code checking if they are forum users and logged in, if they are send them back to eqdkp and allow them access.
I suspect this approach might be riddled with security issues or that it is possibly even messier then solving it some other way, well, that's why I reach out for help here