vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Finding the forumid from a getnew search string (https://vborg.vbsupport.ru/showthread.php?t=230970)

Mark.B 12-23-2009 03:24 PM

Finding the forumid from a getnew search string
 
I need to pull the forumid variable from the getnew search string:

eg

search.php?do=getnew&f=139

I always thought this would be $_GET["f"] but it's not.

How can I use this variable? Basically I need to do a check to see if it exists. What I want to do is show something extra on the results page if the string is just search.php?do=getnew compared to where a forum is specified eg search.php?do=getnew&f=139

Lynne 12-23-2009 03:43 PM

Did you try $vbulletin->GPC['f'] or $vbulletin->GPC['forumid'] ? And don't forget to run the variable through the cleaner first.

Mark.B 12-23-2009 03:59 PM

Quote:

Originally Posted by Lynne (Post 1936496)
Did you try $vbulletin->GPC['f'] or $vbulletin->GPC['forumid'] ? And don't forget to run the variable through the cleaner first.

Not tried that...will do so now.

--------------- Added [DATE]1261592583[/DATE] at [TIME]1261592583[/TIME] ---------------

Hmm...neither of those return any value.

Lynne 12-23-2009 04:30 PM

Sounds like something else is wrong with your code. You can see this right in the search page:
Code:

    $vbulletin->input->clean_array_gpc('r', array(
        'f'                    => TYPE_UINT,
        'days'      => TYPE_UINT,
        'exclude'    => TYPE_NOHTML,
        'include'    => TYPE_NOHTML,
        'showposts'  => TYPE_BOOL,
        'oldmethod'  => TYPE_BOOL,
        'sortby'    => TYPE_NOHTML,
        'noannounce' => TYPE_BOOL,
        'contenttype' => TYPE_NOHTML,
        'type' => TYPE_STR
    ));

So, 'f' is what you want.

Mark.B 12-23-2009 04:48 PM

That's really odd....

Mine is like this:
PHP Code:

    $vbulletin->input->clean_array_gpc('r', array(
        
'days'       => TYPE_UINT,
        
'exclude'    => TYPE_NOHTML,
        
'include'    => TYPE_NOHTML,
        
'showposts'  => TYPE_BOOL,
        
'oldmethod'  => TYPE_BOOL,
        
'sortby'     => TYPE_NOHTML,
        
'noannounce' => TYPE_BOOL,
    )); 

But even if I add the line in, I still get nothing.

I am not sure I am hooking this into the right area of the file. As a test I have tried simply setting a simple variable, eg $test= 3; by hacking it into that area of the file, and it does not spit out if you put $test in the template. So that might be my problem, am I looking in the wrong area? I am right after
PHP Code:

if ($_REQUEST['do'] == 'getnew' OR $_REQUEST['do'] == 'getdaily'

and I'm thinking, if setting a simple variable THERE will not echo out on a getnew search, then is this something to do with the URL string changing to a search ID when the search is displayed?

Am I making any sense?

Lynne 12-23-2009 05:12 PM

Whoops, I was looking at the vb4 file.

It doesn't look like that variable gets passed for getnew. So, you would have to add it yourself.

Mark.B 12-23-2009 05:59 PM

Thanks Lynne....would that just be a matter of adding that line?

Lynne 12-23-2009 09:53 PM

Well, you would have to at least add a line to clean the variable for use.


All times are GMT. The time now is 01:01 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.01130 seconds
  • Memory Usage 1,735KB
  • 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)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)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