PDA

View Full Version : problem with the $vbulletin object


ghiboz
09-22-2008, 02:35 PM
Hi, this is a strange question, but I hope to someone help me to solve..
I explain.. i'm trying to make a thing like a bridge... for the first test I used to retrieve the logged user information...
to do this first thing i created a file test.php in the root of the forum and the code is this:
require("includes/config.php");
require("global.php");
print_r( $vbulletin->userinfo );and if I go to my http://forum/test.php the result is the print array, and the vaues are ok...

second step I want check this thing from another place... so I use this code:
$fp = @fopen( "http://forum/test.php", 'r');
if( $fp )
{
$html = "";
while (!feof($fp))
{
$html .= fgets($fp, 128);
}
fclose( $fp );
}
else
{
echo "error! page";
}
echo $html;and also here I have the print array, but here the username is "unregistered" and all is like there's no user registered....
what can I solve this thing?
thanks in advance!

ghiboz

Dismounted
09-22-2008, 02:59 PM
"Unregistered" == Guest/Not Logged In User

ghiboz
09-22-2008, 03:04 PM
yes, this I understand, but my problem is that the user is registered.....

Marco van Herwaarden
09-23-2008, 07:27 AM
Most likely you are calling this script from another domain, and there is no cookie set for this domain.

ghiboz
09-25-2008, 04:51 AM
Most likely you are calling this script from another domain, and there is no cookie set for this domain.

yes, my target is to call from another domain...
is there a chance to make this think working?
thanks mate!

Dismounted
09-25-2008, 04:54 AM
You will have to set cookies at the other domain. Cookies are not shared cross-domain for security reasons.

ghiboz
09-25-2008, 05:52 AM
hmm thanks... and to do this how can I do??

Dismounted
09-25-2008, 07:22 AM
The only way to set cookies is for the user to load a page/image.

ghiboz
09-25-2008, 07:27 AM
so, if before to call my page, i load a vbulletin page it works?

my problem is not to set the vbulletin cookies, but read them from another domain!

Marco van Herwaarden
09-25-2008, 07:33 AM
That is basic internet security: You can not read cookies from another domain!

ghiboz
09-25-2008, 08:10 AM
That is basic internet security: You can not read cookies from another domain!
so isn't possible make what I'm making?:confused: