vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Login Redirect (https://vborg.vbsupport.ru/showthread.php?t=97942)

Mr Chad 10-09-2005 07:03 AM

Login Redirect
 
How would i make it so, After a user logs in make it redirect them to the usercp?

Chris M 10-09-2005 11:47 AM

There are two forseeable ways:

The first is to edit /includes/functions_login.php, changing the filename to whichever file you want:
PHP Code:

$vbulletin->url $vbulletin->options['forumhome'] . '.php' $vbulletin->session->vars['sessionurl_q']; 

You could also set the [high]$vbulletin->url[/high] variable to your desired location via the login_redirect hook location :)

However the manual code change will only alter logins from the forum home - The second part of that entire if statement refers to the url you logged in from - To alter that you will need to alter the code:
PHP Code:

$vbulletin->url fetch_replaced_session_url($vbulletin->url);
$vbulletin->url preg_replace('#^/+#''/'$vbulletin->url); // bug 3654 don't ask why 

By using the hook location you should remove this from being an issue :)

Chris

Mr Chad 10-09-2005 04:53 PM

Quote:

Originally Posted by Chris M
There are two forseeable ways:

The first is to edit /includes/functions_login.php, changing the filename to whichever file you want:
PHP Code:

$vbulletin->url $vbulletin->options['forumhome'] . '.php' $vbulletin->session->vars['sessionurl_q']; 

You could also set the [high]$vbulletin->url[/high] variable to your desired location via the login_redirect hook location :)

However the manual code change will only alter logins from the forum home - The second part of that entire if statement refers to the url you logged in from - To alter that you will need to alter the code:
PHP Code:

$vbulletin->url fetch_replaced_session_url($vbulletin->url);
$vbulletin->url preg_replace('#^/+#''/'$vbulletin->url); // bug 3654 don't ask why 

By using the hook location you should remove this from being an issue :)

Chris

^^, thank you very much.

Chris M 10-09-2005 06:26 PM

Your welcome :)

Chris

Mr Chad 10-09-2005 06:39 PM

Quote:

Originally Posted by Chris M
Your welcome :)

Chris

I got it to work from the denied access login box, but its not working for forumhome.

But all i really want is it to work w/ the forumhome login.


All times are GMT. The time now is 03:57 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.00963 seconds
  • Memory Usage 1,732KB
  • 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
  • (4)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete