Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

JSConnect getting the session info into a variable

Im making progress with my JSconnect

I have managed to find were the information is stored with the Session variables

ie

Session Class (start):
$_SESSION:
Array
( [session] => Array
(

        [user_id] => 38
        [initialized] => 1
        [type_id] => 1
        [username] => ana

)
Session Class (end)

Now I need Fill in the user information in a way that Vanilla can understand. Im just using one for an example

$user['name'] = 'ana';

So my php code is currently

$user['name'] = [username] => ana

But that fails

Pointer appreciated

John B

Sign In or Register to comment.