

updown wrote:That's an easy one: That means, that either they are connecting to your ACP, or you made some mistakes with your edits. So one way or the other, you should worryDeezerQ wrote:that says "Connected successfully to ACP" ... I'm wondering exactly what that means.
Now, It's good to know that I didn't touch in my MOD the treatment done by phpBB3 for admin connections.If a user logs in and doesn't have it, it has "Connected successfully (Autologged)"
But if it doesn't contain that "(Autologged)" behind the "Connected successfully" then it shows, and always within the same minute, I might add, even for myself "Connected successfully to ACP" including for myself, even if I don't connect to the ACP until later, and my intentional connection to the ACP shows up again when I intentionally log in to the ACP. It's almost as if connecting manually triggers this entry and language, giving a false impression that they're connecting to the ACP. None of these people have permission to the ACP, I've double checked that. It only shows up if they don't show up as being connected (autologged).
Code: Select all
if ($admin)
{
if ($result['status'] == LOGIN_SUCCESS)
{
add_log('admin', 'LOG_ADMIN_AUTH_SUCCESS');
}
Code: Select all
if ($admin)
{
if ($result['status'] == LOGIN_SUCCESS)
{
//-- mod : log connections --------------------------------------------------------
//-- delete
/*-MOD
add_log('admin', 'LOG_ADMIN_AUTH_SUCCESS');
MOD-*/
//-- add
if (!$config['lc_acp_disable'])
{
add_log('connections', 'LOG_ADMIN_AUTH_SUCCESS');
}
}
//-- end : log connections --------------------------------------------------------
Code: Select all
if ($admin)
{
if ($result['status'] == LOGIN_SUCCESS)
{
//-- mod : log connections --------------------------------------------------------
//-- delete
/*-MOD
add_log('admin', 'LOG_ADMIN_AUTH_SUCCESS');
MOD-*/
//-- add
if (!$config['lc_acp_disable'])
{
add_log('connections', 'LOG_ADMIN_AUTH_SUCCESS');
}
}
//-- end : log connections --------------------------------------------------------
Code: Select all
add_log('connections', 'LOG_ADMIN_AUTH_SUCCESS');
Code: Select all
add_log('connections', 'LOG_ADMIN_AUTH_SUCCESS'[/l);
Hi MAD9393,MAD9393 wrote:The only thing I would like to see added to Log connections is GUESTS that view the Forums.
Code: Select all
// We also break the operation on the first non-success login - it could be argued that the user already knows if ($admin)
Code: Select all
// We also break the operation on the first non-success login - it could be argued that the user already knows
if ($admin)
HI joebartDo your mod log all guest Ips too or only people who try to connect on the board ? If my english is so bad, I'll tell you in French with PM ^^.
Any idea when this might be coming along? I started to implement the 1.0.2 version, but noticed some discrepancies (well, I think they are discrepancies) -- there were a few different places that said "Add BEFORE" instead of "Add AFTER" (specifically in auth_db.php) that didn't make sense to me. Were these typos or am I just being dense?Elglobo wrote: Sorry for the delay of response. For information, this function will be available in the 2.x.x version which is in development