vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Script on all external pages to show user login not working (https://vborg.vbsupport.ru/showthread.php?t=243040)

ritter10 05-26-2010 03:48 PM

Quote:

Originally Posted by Lynne (Post 2043638)
If you include global.php in the page at the top, then the username should be available.

look. I tried

PHP Code:

chdir ('../../vbulletin/');
require_once(
'./global.php');  

echo 
"<pre>";
print_r($vbulletin->userinfo);
echo 
"</pre>"

The global variable It's ok. But when I print the data of the $vbulletin->userinfo at my page, I receive this

Quote:

Array
(
[userid] => 0
[usergroupid] => 1
[username] => N?o Registrado (User not registered)
[password] =>
[email] =>
[styleid] => 1
[languageid] => 4
[lastactivity] => 1274807054
[daysprune] => 0
[timezoneoffset] => -3
[dstonoff] => 1
[showsignatures] => 1
[showavatars] => 1
[showimages] => 1
[showusercss] => 1
[dstauto] => 0
[maxposts] => -1
[startofweek] => 1
[threadedmode] => 0
[securitytoken] => guest
[securitytoken_raw] => guest
[options] => 1048647
[lang_options] => 1
[lang_code] => pt-br
[lang_charset] => ISO-8859-1
[lang_locale] =>
[lang_imagesoverride] =>
[lang_dateoverride] =>
[lang_timeoverride] =>
[lang_registereddateoverride] =>
[lang_calformat1override] =>
[lang_calformat2override] =>
[lang_logdateoverride] =>
[lang_decimalsep] => ,
[lang_thousandsep] => .
[lastvisit] => 1274807054
[tzoffset] => -2
[lastvisitdate] => 25-05-2010 15:04
....
}
I can acess the variable, but the information doesn't correspond to my session because at this time I was logged at the forum.

help me! Please :D

Lynne 05-26-2010 10:44 PM

Are you sure you are logged into the forum? Have you checked the session table to verify this?

ritter10 05-28-2010 08:18 PM

Quote:

Originally Posted by Lynne (Post 2043819)
Are you sure you are logged into the forum? Have you checked the session table to verify this?

I'm logged now. I only can see the forum if I log in.

After the log in I tried again the test page and I receive the same thing!!

look

Quote:

Array
(
[userid] => 0
[usergroupid] => 1
[username] => N?o Registrado
[password] =>
[email] =>
[styleid] => 1
[languageid] => 4
[lastactivity] => 1275079827
[daysprune] => 0
[timezoneoffset] => -3
[dstonoff] => 1
[showsignatures] => 1
[showavatars] => 1
[showimages] => 1
[showusercss] => 1
[dstauto] => 0
[maxposts] => -1
[startofweek] => 1
[threadedmode] => 0
[securitytoken] => guest
[securitytoken_raw] => guest
[options] => 1048647
[lang_options] => 1
[lang_code] => pt-br
[lang_charset] => ISO-8859-1
[lang_locale] =>
[lang_imagesoverride] =>
[lang_dateoverride] =>
[lang_timeoverride] =>
[lang_registereddateoverride] =>
[lang_calformat1override] =>
[lang_calformat2override] =>
[lang_logdateoverride] =>
[lang_decimalsep] => ,
[lang_thousandsep] => .
[lastvisit] => 1275079827
[tzoffset] => -2
[lastvisitdate] => 28-05-2010 18:50
I looked at the session table and my user Id was there.


I don't know what to do. :(

Lynne 05-28-2010 10:59 PM

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.

Marco van Herwaarden 05-29-2010 05:12 AM

And you must be on the same cookie domain.

ritter10 05-29-2010 07:36 AM

Quote:

Originally Posted by Lynne (Post 2044853)
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 (Post 2044944)
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.

Lynne 05-29-2010 01:31 PM

I put a page with this exact code into my vb folder:
PHP Code:

<?php

//chdir ('../../vbulletin/');
require_once('./global.php');  

echo 
"<pre>";
print_r($vbulletin->userinfo);
echo 
"</pre>"
?>

And got this:
HTML Code:

Array
(
    [userid] => 1
    [temp] =>
    [field1] =>
    [field2] =>
    [field3] =>
    [field4] => admin
    [field5] => Lynne
    [field6] => Yes
etc

So, the script works. There is something going on on your end that is causing it to not work.

ritter10 05-31-2010 04:56 PM

do you have any idea?

Cookies and HTTP Header Options
Path to Save Cookies: /
Cookie Domain: blank

Are there other place in the admincp where I can see more options/configurations about session and cookies?

Lynne 05-31-2010 09:52 PM

If you aren't putting that page into the vbulletin forums directory, then it isn't going to work as is. You would need to use the chdir line. So, where are you putting it (let's see your directory structure) and then what is your chdir line?

Tibald 06-01-2010 03:29 AM

I also tried this script, all working correctly :)

I have a question about login with external script - now trying to understand the logic from login.php file... Maybe, anybody can get me advice or code example for login (user authorization) with external script?

--------------- Added [DATE]1275366761[/DATE] at [TIME]1275366761[/TIME] ---------------

Quote:

Originally Posted by Lynne (Post 2046241)
If you aren't putting that page into the vbulletin forums directory, then it isn't going to work as is. You would need to use the chdir line. So, where are you putting it (let's see your directory structure) and then what is your chdir line?

something like this:

Quote:

$dir = getcwd();
chdir(getcwd().'/forum');
include_once('global.php');
chdir($dir);


All times are GMT. The time now is 04:35 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01177 seconds
  • Memory Usage 1,760KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_html_printable
  • (3)bbcode_php_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete