vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Question about 'print_stop_message' (https://vborg.vbsupport.ru/showthread.php?t=131845)

Antivirus 11-17-2006 11:44 PM

Question about 'print_stop_message'
 
I am submitting info through a form in AdminCP. If the script fails my error check, I use 'print_stop_message' to display an error message and then redirect back to the original script.

Problem is the information previously entered in the form is no longer there. How can I get the form to remember what was previously entered so Admin doesn't have to enter it again?

I know it's possible as most forms in vbulletin's admincp have this feature, i just can't figure out how it's done. I was thinking of puting all the field values into a session array, but there's got to be an easier way.

Anyone know?

Adrian Schneider 11-17-2006 11:46 PM

If you redirect using JavaScript (which IIRC is the same as hitting back) then you won't lose your form data.
Code:

history.go(-1);
Lazy answer though - too busy to dig any deeper right now.

Antivirus 11-18-2006 12:07 AM

i tried your suggestion (thanks) but it didn't work, however i did figure outthe solution, rather simple which never occurred to try before.

I was using the following which was erasing the data upon returning to the page:
PHP Code:

define('CP_REDIRECT''scst_stuffsmanager.php?' $vbulletin->session->vars['sessionurl'] . "&do=add");
print_stop_message('error_user_has_no_active_stuff'); 

however if i just use the print_stop_message function, it simply allows me to click a back button, and the data is there... !
PHP Code:

print_stop_message('error_user_has_no_active_stuff'); 

wow...


All times are GMT. The time now is 04:12 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.01099 seconds
  • Memory Usage 1,722KB
  • 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_code_printable
  • (2)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