Quote:
Originally Posted by Lynne
What are the lines you are currently using in your code?
edit: Also, you noted that I said you needed to call global.php AT THE TOP of your page, right? Not in the middle of a script.
|
I'm doing it. Top of the page.
PHP Code:
<?php
//chdir ('../../vbulletin/');
require_once('./global.php');
echo "<pre>";
print_r($vbulletin->userinfo);
echo "</pre>";
New information:
I put the file at the same forum's folder and I receive the same thing. This is so strange.
Quote:
Array
(
[userid] => 0
[usergroupid] => 1
[username] => N?o Registrado
[password] =>
[email] =>
[styleid] => 1
[languageid] => 4
[lastactivity] => 1275121931
[daysprune] => 0
[timezoneoffset] => -3
[dstonoff] => 1
[showsignatures] => 1
[showavatars] => 1
[showimages] => 1
[showusercss] => 1
[dstauto] => 0
[maxposts] => -1
|
Quote:
Originally Posted by Marco van Herwaarden
And you must be on the same cookie domain
|
In the Admin CP the cookie domain was "blank". Are there something wrong? My forum was instaled at
public_html/OPS/vbulletin/.
Thanks for help me.