This topic is locked

PhpNuke

6/15/2007 4:41:55 AM
PHPRunner General questions
mcz_sepal author

I would like to integrate one PhpRunner application like a module in PhpNuke using the same Login of PhpNuke users.

Is there some suggestion ?

Have someone done this before and would like to share the tricks ?

Sergey Kornilov admin 6/15/2007

If you like to extend PHPNuke login to PHPRunner-generated application make sure the following variables are populated:
$_SESSION["UserID"] = "Logged user userid";

$_SESSION["AccessLevel"] = ACCESS_LEVEL_USER;
If you use advanced security settings make sure $_SESSION["OwnerID"] is populated.

If you use User Group Security make sure you assign a value to $_SESSION["GroupID"];
Hope this helps.