vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Redirect after submit (https://vborg.vbsupport.ru/showthread.php?t=103878)

steven s 12-28-2005 01:49 AM

Redirect after submit
 
On the edit profile page there are buttons
HTML Code:

        <input type="submit" class="button" value="$vbphrase[save_changes]" accesskey="s" />
<input type="reset" class="button" value="$vbphrase[reset_fields]" accesskey="r" />

After hitting submit you are taken from profile.php to usercp.php.
I would like to go to a custom page, newthread.php?do=hpde.

One site I found recommended
HTML Code:

onclick="document.location = '/index.php';"
Well that didn't work or I did do it correctly.

Any hints?

Marco van Herwaarden 12-28-2005 06:01 AM

In profile.php, find and change the following lines:
PHP Code:

    if (empty($vbulletin->GPC['gotopassword']))
    {
        
$vbulletin->url 'usercp.php' $vbulletin->session->vars['sessionurl_q'];
    }
    else
    {
        
$vbulletin->url 'profile.php?' $vbulletin->session->vars['sessionurl'] . 'do=editpassword';
    }

    eval(
print_standard_redirect('redirect_updatethanks')); 

Maybe adding a plugin to the hook location 'profile_updateprofile' with something like the following will also work (but is risky):
PHP Code:

    if (empty($vbulletin->GPC['gotopassword']))
    {
        global 
$userdata;
        
// save the data
        
$userdata->save();
        
$vbulletin->url YOUR REDIRECT URL;
        eval(
print_standard_redirect('redirect_updatethanks'));
    } 


steven s 12-28-2005 11:42 AM

To continue from last post.
Thank you. Editing profile.php worked just fine.
Although if the person is on the edit password page they will be redirected to the wrong page otherwise the redirect is exactly what I am looking for. In the statement.
PHP Code:

    // save the data
    
$userdata->save();

    if (empty(
$vbulletin->GPC['gotopassword']))
    {
        
$vbulletin->url 'usercp.php' $vbulletin->session->vars['sessionurl_q'];
    }
    else
    {
        
$vbulletin->url 'profile.php?' $vbulletin->session->vars['sessionurl'] . 'do=editpassword';
    } 

I'd like to add a statement

If $vbulletin->url = 'profile.php?do=editdereg' . $vbulletin->session->vars['sessionurl_q'];
Then goto $vbulletin->url = 'newthread.php?do=hpde' . $vbulletin->session->vars['sessionurl_q'];
So I can retain the original function of the statement. Is that possible?

Thanks again.


All times are GMT. The time now is 01:00 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.02851 seconds
  • Memory Usage 1,729KB
  • 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
  • (2)bbcode_html_printable
  • (3)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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