Jump to content

"Something went wrong. Please try again."


Aetherdan

Recommended Posts

Posted
// Initialize IPS4 Framework
require_once('./init.php');

/* Get the currently logged in member */
$member = \IPS\Member::loggedIn();
$member_id = $member->member_id;

echo $member_id;

I have created a php file in my forums parent directory, with the following code. Why does it not return the member id of the logged in user?

Posted

Because you have not initialized a dispatcher, the session class (which is needed to determine if the member is logged in or not) does not know if this is the front end or the AdminCP.

Try adding this after the require_once line:

\IPS\Session\Front::i();

 

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...