Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 08-20-2005, 05:59 PM
10sion 10sion is offline
 
Join Date: Jul 2005
Posts: 38
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Site/Forum Intergration Quick Question

Alright, my site is on www.endless-anime.com and my forums is ea-forums.net im trying to intergrate them togehter, theyre both on the same server, and are connected to the same database. The problem is login. You cant set a cookie over domains so what im trying to do is forward back and forth to get the cookie set on both places, so you login on the site, it sets the cookie/session there, forwards to the forums sets the cookie/session there and back to the site displaying a good login message, visa versa.

My trouble is that Im not the best at vbulletin, what im planning on doing is making a "raw" file on vbulletin names something like dologin.php, and it checks if your already logged in there, if you are your forwarded back to the site, othersize your sent through the login process, the variables that dologin.php on the vbulletin domain has already, sent through the forwarding is, userid, the password already salted, and rememberme... so can anyone give me a few hints on what to do (all that file needs to do is do the standard checks, then if the userid and pass is right set cookie/session then forward to good login on the site, else forward to bad login on the site...)

I took a look at the login once again, and came up with this being dologin.php (of course minus the standard security, I just want this to work before I make it secure)

Code:
<?php
// required files
require_once('./global.php');
require_once('./includes/functions_login.php');

if (!verify_authentication($username, $password, $md5password, $md5password_utf, true))
header("Location: http://www.endless-anime.com/?id=members/login&do=badlogin");
}
else {
header("Location: http://www.endless-anime.com/?id=members/login&do=goodlogin");
}
?>
if (!verify_authentication($username, $password, $md5password, $md5password_utf, true))

has me stumped, I am pretty sure that will set the cookie... or the session, whichever is used. I need to change it to the gets,

if (!verify_authentication($_GET[username], $_GET[password]?, $md5password, $md5password_utf, true))

Now this is where it gets tricky, since I only have $_GET[userid]/$_GET[username], and $_GET[saltedpass] to work with, I dont know what to do for password, md5password, and I dont even know what the md5password_utf, and true means... any ideas?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:54 PM.


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.03077 seconds
  • Memory Usage 2,159KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete