Hello,

Maybe someone can help me...
I need to know the full URL to search all threads of a user in a specific forum.

I know that I can know this going to the advanced search, but I only need to know the URL.

Here my try:
Code: 
http://www.domain.com/forum/search.php?do=finduser&starteronly=1&forumchoice=33&userid=1
But not work...
forumchoice is not working. I tried forumchoice[] also...

I found in search.php this:

Code: 
if ($_REQUEST['do'] == 'finduser')
{
    $vbulletin->input->clean_array_gpc('r', array(
        'type'              => TYPE_ARRAY_NOHTML,
        'userid'          => TYPE_UINT,
        'starteronly'    => TYPE_BOOL,
        'forumchoice'    => TYPE_ARRAY,
        'childforums'    => TYPE_BOOL,
        'postuserid'       => TYPE_UINT,
        'searchthreadid' => TYPE_UINT,
    ));
Any ideas? Im using VB 4.x

I found this thread, but is only for 3.x versions:
https://www.vbulletin.com/forum/show...hrough-The-URL
Divvy Reviewed by Divvy on . How To Submit A Search Through The URL Hello, Maybe someone can help me... I need to know the full URL to search all threads of a user in a specific forum. I know that I can know this going to the advanced search, but I only need to know the URL. Here my try: http://www.domain.com/forum/search.php?do=finduser&starteronly=1&forumchoice=33&userid=1 Rating: 5