vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   Extended! Useful Admin Stuff (https://vborg.vbsupport.ru/showthread.php?t=53533)

shovel 05-30-2003 04:39 PM

Quote:

Today at 12:02 PM hellsatan said this in Post #38
Ok dude;) But as demonstrated, it already works for me - These crazy guys with their wackey sites:p

Maybe you can find something new for another version? Like a "search.php" in admin, where you can search for specific stuff on vB.org / vB.com etc;)

Satan

Yeah, like searching for specific words on pages. :)

Boofo 05-31-2003 02:31 AM

I found the fix! Play with it long enough and it usually works out. ;) The following code works for vb.org:

PHP Code:

<form action="https://vborg.vbsupport.ru/search.php" method="post" name="vbform" target="_blank">
<
input type="hidden" name="s" value="$session[sessionhash]">
<
input type="hidden" name="forumchoice" value="-1">
<
input type="hidden" name="action" value="simplesearch">
<
input type="hidden" name="searchdate" value="-1">
<
tr class="secondalt">
 <
td><a href="http://www.vbulletin.org/" target="_blank">vBulletin.org Search</td>
 <
td><input type="text" size="30" class="bginput" name="query" tabindex="1"> <span id="submitrow"><input type="submit" class="bginput" name="submit" value="vB.org" accesskey="s"></span></td>
</
tr>
</
form


csidlernet 05-31-2003 06:14 AM

Quote:

Yesterday at 02:08 AM hellsatan said this in Post #12
Here is a screenshot:)

Satan




Sweet! it looks good!

Chris M 05-31-2003 09:27 AM

@Boofo - Um thats what I posted with a little bit less pre-defined data:

Code:

<form action="https://vborg.vbsupport.ru/search.php" method="post" target="_blank">
<input type="hidden" name="s" value="" />
<input type="hidden" name="action" value="simplesearch" />
<input type="hidden" name="forumchoice" value="-1" />
<input type="hidden" name="titleonly" value="" />
<input type="hidden" name="showposts" value="" />
<input type="hidden" name="searchdate" value="-1" />
<input type="hidden" name="beforeafter" value="after" />
<input type="hidden" name="sortby" value="title" />
<input type="hidden" name="sortorder" value="descending" />
<tr class="secondalt">
        <td><a href="http://www.vbulletin.org/" target="_blank">vBulletin.org Search</a></td>
        <td><input type="text" class="bginput" name="query" size="30"> <span id="submitrow"><input type="submit" value="vB.org"></span></td>
</tr>
</form>

:)

@csidlernet - Thanks:)

Satan

Boofo 05-31-2003 09:32 AM

And that's why it worked. For some reason, it doesn't need all the pre-definitions that you had there. They were interfering with it. Actually, I used the definitions filburt has in his forumhome quick search hack and that worked.

And you didn't have the $session[sessionhash] in yours.

Chris M 05-31-2003 09:48 AM

Oh...

Because I don't use sessionhash;):p

Fair enough - I was just trying to make it more accurate;)

Satan

Boofo 05-31-2003 10:30 AM

More accurate is great if it works. Thanks for trying though. It gave me a place to start.

Chris M 05-31-2003 01:42 PM

Yeh....I think shovel is gonna do some kind of page where you can search more accurately, pretty much like the vB.org search page only on your site;)

Satan

yxboom 05-31-2003 02:28 PM

W00t!

Boofo the code worked. I can now set my control panel as my home page ;)

WEForums 06-01-2003 05:06 AM

Strange how you guys get blank pages. Just so hellsatan doesn't go crazy it also works for my admin panel. Great work, hellsatan. Makes searching a lot easier. Kudos.
Quote:

05-29-03 at 04:05 PM hellsatan said this in Post #11
@Boofo - It seriously does work:)

I updated my code to include a dropbox for vB.org forums:

Code:

<form action="https://vborg.vbsupport.ru/search.php" method="post" target="_blank">
<input type="hidden" name="s" value="" />
<input type="hidden" name="action" value="simplesearch" />
<input type="hidden" name="titleonly" value="" />
<input type="hidden" name="showposts" value="" />
<input type="hidden" name="searchdate" value="-1" />
<input type="hidden" name="beforeafter" value="after" />
<input type="hidden" name="sortby" value="title" />
<input type="hidden" name="sortorder" value="descending" />
<tr class="secondalt">
        <td>vBulletin.org Search</td>
        <td><input type="text" class="bginput" name="query" size="30"><select name="forumchoice">
                <option value="-1" selected>All Open Forums</option>
                <option>-- vBulletin.org --</option>
                <option value="2">Announcements</option>
                <option value="7">Site Feedback</option>
                <option>-- Main Forums --</option>
                <option value="10">General Hacking Discussion</option>
                <option value="26">Pre-Sales Questions</option>
                <option value="8">Hack Requests</option>
                <option value="9">Help Me Finish</option>
                <option value="5">Beta Hacks</option>
                <option value="4">Full Releases</option>
                <option value="20">Hacking Hints & Tips</option>
                <option value="11">Support</option>
                <option value="15">PHP / MySQL</option>
                <option>-- Graphics & Templates --</option>
                <option value="27">Template and Button Requests</option>
                <option value="22">Template Modifications</option>
                <option value="24">Buttons and Graphics</option>
                <option>-- Off Topic --</option>
                <option value="13">The Lounge</option>
                <option value="14">Forum Commenting</option>
                <option value="30">Service Requests</option>
        </select><span id="submitrow"><input type="submit" value="Go"></span></td>
</tr>
</form>

Satan


WEForums 06-01-2003 05:10 AM

Second image.

Chris M 06-01-2003 10:20 AM

Cheers WEForums;)

I was sure I am crazy, but I was sure that it worked nevertheless:D

Maybe it is because of certain hacks they have installed and we have not?:)

Satan

WEForums 06-01-2003 10:33 AM

That's probably the case. That is the first edit in that part of the /admin/index.php file ever, so that could be it.

FWF 06-01-2003 11:08 AM

wow, this is an awesome hack...and easy to install for n00bs like me :)

Boofo 06-01-2003 12:12 PM

LOL Chris, are you ready for this? Here is the exact code I am using now for this. Look familiar? And now it decides to work.

PHP Code:

<form action="https://vborg.vbsupport.ru/search.php" method="post" target="_blank">
<
input type="hidden" name="s" value="" />
<
input type="hidden" name="action" value="simplesearch" />
<
input type="hidden" name="titleonly" value="" />
<
input type="hidden" name="showposts" value="" />
<
input type="hidden" name="searchdate" value="-1" />
<
input type="hidden" name="beforeafter" value="after" />
<
input type="hidden" name="sortby" value="title" />
<
input type="hidden" name="sortorder" value="ascending" />
<
tr class="secondalt">
    <
td><a href="http://www.vbulletin.org/" target="_blank">vBulletin.org Search</td>
    <
td><input type="text" class="bginput" name="query" size="30">&nbsp;<select name="forumchoice">
        <
option value="-1" selected>All Open Forums</option>
        <
option>-- vBulletin.org --</option>
        <
option value="2">Announcements</option>
        <
option value="7">Site Feedback</option>
        <
option>-- Main Forums --</option>
        <
option value="10">General Hacking Discussion</option>
        <
option value="26">Pre-Sales Questions</option>
        <
option value="8">Hack Requests</option>
        <
option value="9">Help Me Finish</option>
        <
option value="5">Beta Hacks</option>
        <
option value="4">Full Releases</option>
        <
option value="20">Hacking Hints Tips</option>
        <
option value="11">Support</option>
        <
option value="15">PHP MySQL</option>
        <
option>-- Graphics Templates --</option>
        <
option value="27">Template and Button Requests</option>
        <
option value="22">Template Modifications</option>
        <
option value="24">Buttons and Graphics</option>
        <
option>-- Off Topic --</option>
        <
option value="13">The Lounge</option>
        <
option value="14">Forum Commenting</option>
        <
option value="30">Service Requests</option>
    </
select>&nbsp;<span id="submitrow"><input type="submit" value="vB.org"></span></td>
</
tr>
</
form


Chris M 06-01-2003 03:56 PM

I'm telling you Bob you were definately staring at that screen for too long:p

So I did make viable code:D:p

Satan

Boofo 06-01-2003 07:25 PM

Now I'm curious as to what changed on my end to make it work. It did not work before, all I got was a blank screen or the vb.org search page. And I haven't changed anything at all in the admin/index.php. :surprised:

Chris M 06-01-2003 08:37 PM

Maybe your host did an upgrade of something and for some reason it worked:eek:

Satan

Boofo 06-01-2003 11:03 PM

The only change I noticed is this: MySQL v4.0.12, which was done over 5 days ago and should have nothing to do with searching vb.org. I don't know, but it's working, that's all that matters. ;)

shovel 06-02-2003 12:18 PM

Quote:

Yesterday at 09:12 AM Boofo said this in Post #55
LOL Chris, are you ready for this? Here is the exact code I am using now for this. Look familiar? And now it decides to work.

PHP Code:

<form action="https://vborg.vbsupport.ru/search.php" method="post" target="_blank">
<
input type="hidden" name="s" value="" />
<
input type="hidden" name="action" value="simplesearch" />
<
input type="hidden" name="titleonly" value="" />
<
input type="hidden" name="showposts" value="" />
<
input type="hidden" name="searchdate" value="-1" />
<
input type="hidden" name="beforeafter" value="after" />
<
input type="hidden" name="sortby" value="title" />
<
input type="hidden" name="sortorder" value="ascending" />
<
tr class="secondalt">
    <
td><a href="http://www.vbulletin.org/" target="_blank">vBulletin.org Search</td>
    <
td><input type="text" class="bginput" name="query" size="30">&nbsp;<select name="forumchoice">
        <
option value="-1" selected>All Open Forums</option>
        <
option>-- vBulletin.org --</option>
        <
option value="2">Announcements</option>
        <
option value="7">Site Feedback</option>
        <
option>-- Main Forums --</option>
        <
option value="10">General Hacking Discussion</option>
        <
option value="26">Pre-Sales Questions</option>
        <
option value="8">Hack Requests</option>
        <
option value="9">Help Me Finish</option>
        <
option value="5">Beta Hacks</option>
        <
option value="4">Full Releases</option>
        <
option value="20">Hacking Hints Tips</option>
        <
option value="11">Support</option>
        <
option value="15">PHP MySQL</option>
        <
option>-- Graphics Templates --</option>
        <
option value="27">Template and Button Requests</option>
        <
option value="22">Template Modifications</option>
        <
option value="24">Buttons and Graphics</option>
        <
option>-- Off Topic --</option>
        <
option value="13">The Lounge</option>
        <
option value="14">Forum Commenting</option>
        <
option value="30">Service Requests</option>
    </
select>&nbsp;<span id="submitrow"><input type="submit" value="vB.org"></span></td>
</
tr>
</
form


Lol. Yeah, I've also decided to do the same with vBulletin.com. Also, I'm adding Chris to the 'Special Thanks' list. :)

shovel 06-02-2003 12:38 PM

Can somebody test this code in place of the old vB.com search? Thanks.

PHP Code:

<form action="http://www.vbulletin.com/forum/search.php" method="post" name="vbform" target="_blank">
<
input type="hidden" name="s" value="" />
<
input type="hidden" name="do" value="process" />
<
input type="hidden" name="sortby" value="lastpost" />
<
tr class="firstalt">
 <
td><a href="http://www.vbulletin.com/" target="_blank">vBulletin.com Search</a></td>
 <
td><input type="text" class="bginput" name="query" size="30" value="" tabindex="1" />&nbsp;<select name="forumchoice[]" tabindex="3">
          <
option value="0" selected>All Open Forums</option>
          <
option value="30" class="fjdpth0">vBulletin</option>
          <
option value="1" class="fjdpth1" >&nbsp; &nbsp;  vBulletin Announcements</option>
          <
option value="74" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Jelsoft eBulletin Archives</option>
          <
option value="32" class="fjdpth1" >&nbsp; &nbsp;  Announcements Discussions</option>
          <
option value="28" class="fjdpth0" vBulletin 2</option>
          <
option value="20" class="fjdpth1" >&nbsp; &nbsp;  vBulletin 2 Suggestions and Feedback</option>
          <
option value="29" class="fjdpth1" >&nbsp; &nbsp;  vBulletin 2 'How Do I' Questions</option>
          <
option value="47" class="fjdpth1" >&nbsp; &nbsp;  vBulletin 2 Pre-sales Questions</option>
          <
option value="39" class="fjdpth1" >&nbsp; &nbsp;  vBulletin 2 Installation</option>
          <
option value="38" class="fjdpth1" >&nbsp; &nbsp;  vBulletin 2 Troubleshooting and Problems</option>
          <
option value="19" class="fjdpth1" >&nbsp; &nbsp;  vBulletin 2 Bugs</option>
          <
option value="33" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Pre beta 4.1 bugs</option>
          <
option value="40" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Pre 2.0.1 bugs</option>
          <
option value="41" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Pre 2.0.2 bugs</option>
          <
option value="46" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Pre 2.2.0 bugs</option>
          <
option value="49" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Pre 2.2.1 bugs</option>
          <
option value="50" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Pre 2.2.2 bugs</option>
          <
option value="51" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Pre 2.2.4 bugs</option>
          <
option value="52" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Pre 2.2.6 bugs</option>
          <
option value="60" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Pre 2.2.7 bugs</option>
          <
option value="61" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Pre 2.2.8 bugs</option>
          <
option value="65" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Pre 2.2.9 Bugs</option>
          <
option value="75" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Pre 2.3.0 Bugs</option>
          <
option value="54" class="fjdpth0" vBulletin 3</option>
          <
option value="55" class="fjdpth1" >&nbsp; &nbsp;  vBulletin 3 Suggestions and Feedback</option>
          <
option value="56" class="fjdpth1" >&nbsp; &nbsp;  vBulletin 3 'How Do I' Questions</option>
          <
option value="59" class="fjdpth1" >&nbsp; &nbsp;  vBulletin 3 Troubleshooting and Problems</option>
          <
option value="64" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Pre-Beta Troubleshooting</option>
          <
option value="53" class="fjdpth1" >&nbsp; &nbsp;  vBulletin 3 Bugs</option>                            
          <
option value="68" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Resolved vB3 Bugs</option>
          <
option value="63" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  Pre-Beta Bugs</option>
          <
option value="26" class="fjdpth0" Customizing vBulletin</option>
          <
option value="7" class="fjdpth1" >&nbsp; &nbsp;  vBulletin Templates</option>
          <
option value="10" class="fjdpth1" >&nbsp; &nbsp;  vBulletin Graphics and Styles</option>
          <
option value="42" class="fjdpth0" vBulletin Hints and Tips</option>
          <
option value="43" class="fjdpth1" >&nbsp; &nbsp;  vBulletin Hints and Tips</option>
          <
option value="37" class="fjdpth1" >&nbsp; &nbsp;  FAQs</option>
          <
option value="24" class="fjdpth0" General</option>
          <
option value="11" class="fjdpth1" >&nbsp; &nbsp;  vBulletin Hosting Options</option>
          <
option value="12" class="fjdpth1" >&nbsp; &nbsp;  PHP coding</option>
          <
option value="18" class="fjdpth1" >&nbsp; &nbsp;  MySQL</option>
          <
option value="13" class="fjdpth1" >&nbsp; &nbsp;  HTML Questions</option>                                                   
          <
option value="14" class="fjdpth1" >&nbsp; &nbsp;  Server Configuration</option>
          <
option value="6" class="fjdpth1" >&nbsp; &nbsp;  Chit Chat</option>
          <
option value="15" class="fjdpth1" >&nbsp; &nbsp;  A place to test things out</option>
          <
option value="25" class="fjdpth0" vBulletin.com Web site</option><option value="5" class="fjdpth1" >&nbsp; &nbsp;  Site Feedback</option>
          <
option value="66" class="fjdpth1" >&nbsp; &nbsp;  Archives</option>
          <
option value="23" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  vBulletin 1.1.x Archives</option>
          <
option value="2" class="fjdpth3" >&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  vBulletin 1.1.x Suggestions and Feedback</option>
          <
option value="9" class="fjdpth3" >&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  vBulletin 1.1.x Questions</option>
          <
option value="3" class="fjdpth3" >&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  vBulletin Installation</option>
          <
option value="4" class="fjdpth3" >&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  vBulletin 1.1.x Bug Reports</option>
          <
option value="27" class="fjdpth2" >&nbsp; &nbsp; &nbsp; &nbsp;  vBulletin Lite</option>
          <
option value="16" class="fjdpth3" >&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  vBulletin Lite</option>
    </
select>&nbsp;<span id="submitrow"><input type="submit" value="vB.com" accesskey="s" tabindex="4" /></span></td>
</
tr>
</
form


Chris M 06-03-2003 08:33 PM

Tested:)

You need a search field;):p

Satan

Chris M 06-03-2003 08:53 PM

2 corrections:)

Code:

<form action="http://www.vbulletin.com/forum/search.php" method="post" name="vbform">
should be:
Code:

<form action="http://www.vbulletin.com/forum/search.php" method="post" name="vbform" target="_blank">
Code:

<td><type="text" class="bginput" name="query" size="30" value="" tabindex="1" />&nbsp;<select name="forumchoice[]" tabindex="3">
should be:
Code:

<td><input type="text" class="bginput" name="query" size="30" value="" tabindex="1" />&nbsp;<select name="forumchoice[]" tabindex="3">
You missed the input in input type;)

Satan

shovel 06-04-2003 12:19 PM

Oops. Lol! Thanks Chris!

FIXED!

WEForums 06-04-2003 01:35 PM

Very nice. Looks tons better and much more impressive. Good job shovel and hellsatan. :)

Chris M 06-04-2003 02:48 PM

NP shovel;):)

Satan

shovel 06-05-2003 10:12 AM

Quote:

Yesterday at 10:35 AM WEForums said this in Post #65
Very nice. Looks tons better and much more impressive. Good job shovel and hellsatan. :)
Thanks WEF. :)

Boofo 06-05-2003 05:11 PM

I've made a couple of useful (to me, anyway) tweaks for this hack. If you replace:

PHP Code:

<td><a href="http://www.vbulletin.org/" target="_blank">vBulletin.org Search</a></td

with:

PHP Code:

<td><a href="https://vborg.vbsupport.ru/search.php?s=$session[sessionhash]&action=getnew"" target="_blank">vBulletin.org Search</a></td> 

and replace:

PHP Code:

<td><a href="http://www.vbulletin.com/" target="_blank">vBulletin.com Search</a></td

with:

PHP Code:

<td><a href="http://www.vbulletin.com/forum/search.php?do=getnew" target="_blank">vBulletin.com Search</a></td

you can search for any new posts by just clicking on the link.

shovel 06-06-2003 10:23 AM

Oh that's neat. Thanks Bob. :)

Chris M 06-07-2003 09:03 AM

Nice idea Bob, but I removed the links on mine due to the fact that IMO it looks too clustered...

What I might do, is add 3 links at the bottom of the table saying "Get New Posts", 2 with the ones you put above, and one with:

PHP Code:

<a href="$bburl/search.php?s=$session[sessionhash]&action=getnew" target="_blank">$bbtitle Search</a

:)

Satan

Boofo 06-07-2003 09:29 AM

What do you mean "too clustered"? By doing it that way, you just make the words into a link. Clustered would be more like adding 3 more links than needed. And one of those links is for vbulletin.com. You won't get anything by doing "&action=getnew" on vb3, you have to use "?do=getnew". I got it straight off of their site.

Chris M 06-07-2003 09:48 AM

I know Boofo me old plum - I forgot to change the name of the Search;):p

And I didn't like the large mass of links - It makes it look clustered;)

Satan

shovel 06-08-2003 03:51 PM

Quote:

Yesterday at 06:29 AM Boofo said this in Post #71
What do you mean "too clustered"? By doing it that way, you just make the words into a link. Clustered would be more like adding 3 more links than needed. And one of those links is for vbulletin.com. You won't get anything by doing "&action=getnew" on vb3, you have to use "?do=getnew". I got it straight off of their site.
Yeah, with the new vB3 comes the removal of all those action loops. Finally!!

Chris M 06-08-2003 07:46 PM

I hate the do;)

Satan

S.Shady 06-08-2003 11:03 PM

well i gotta get some php books now :)

btw im thinking about using this but is there a way to posibly get the forums auto and not have it in the source i doubt it posibile but i dont know much about php

Chris M 06-09-2003 12:20 PM

If you wanted to get the forums automatically entered for your own site, it is possible, but other sites you cannot (to my knowledge:()

Satan

shovel 06-09-2003 12:26 PM

No, but I'm looking at trying to search a given url for keywords using maybe JScript or PHP.


All times are GMT. The time now is 06:54 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.01588 seconds
  • Memory Usage 2,016KB
  • 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
  • (6)bbcode_code_printable
  • (9)bbcode_php_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (37)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete