View Single Post
  #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
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01223 seconds
  • Memory Usage 1,768KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)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 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • 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
  • showpost_complete