Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
[Ajax] Check for similar thread before posting a new one Details »»
[Ajax] Check for similar thread before posting a new one
Version: 1.00, by MrNase MrNase is offline
Developer Last Online: Sep 2010 Show Printable Version Email this Page

Category: New Posting Features - Version: 3.6.7 Rating:
Released: 07-07-2007 Last Update: 07-09-2007 Installs: 515
Uses Plugins Template Edits
Additional Files  
No support by the author.

You love the 'similar threads' function and you are sick of duplicate threads just because your users don't use the search function?

Why not just combine them?

This Add-on will grab the thread title the user typed in and it will load a small box (using Ajax magic ) with 5 similar threads just like the 'similar threads' function that you can normally find under an already posted thread.

The box also tells the user to search through the similar threads first BEFORE starting a new one.


Features:
- no edits whatsoever needed, just import the product file, enable the Add-on and it works (well, it should )
- you can turn it off for certain forums or
- you can turn it off completely without leaving any code that messes your templates/files
- it can be translated
- don't like it anymore? Remove the product and you'll never see that Add-on again


Known issues:
- none


Things to consider:

It uses jQuery to get the information from ajax.php. jQuery is great and you can do many great things with it and unlike the vBulletin method it's quite easy to understand.
The jQuery file is compressed and only 20kb large.
To download the file, visit the homepage at http://jquery.com/
The link to download the file is on the right hand side.

Here's the version I use: http://code.google.com/p/jqueryjs/do....1.3.1.pack.js

Just download it and put it into the 'clientscript' folder without renaming the file.


Installation:
Download jQuery as described above.
Import the attached file using the Product Manager. Go to your vBulletin settings and search for 'Check for similar threads?'. Enable it.


Important:
It adds 2 new templates, it changes 1 template and it edits 2 files. I highly doubt that it will break you vBulletin but do a back-up and be on the safe side.



Version history:
1. initial release
2. current release
*** fixed some browser issues. The attached file is up to date.





How to fix the Opera problems in the first release:
The first release of this Add-on didn't work on Opera. To fix the problems, please follow these steps:
Open the template 'mrnasesimilarthreadcheck_header' and REPLACE the content with this code:
HTML Code:
    <script type="text/javascript" src="clientscript/jquery-1.1.3.1.pack.js"></script>
    <script type="text/javascript">
        $(function(){
            $("#inputthreadtitle").bind("blur", function(){
                var value =$(this).val(); 
                $('td#similarthreadcheckcontent').html('<img src="$stylevar[imgdir_misc]/13x13progress.gif" />');
                $.ajax({
                    type: "GET",
                    url: "ajax.php",
                    data: "do=getsimilarthreads&title="+value,
                    success: function(msg){
                        $('td#similarthreadcheckcontent').html(msg);
                         }
                });
            });
        });
    </script>
The attached file is up to date.


Support will only given to those who have clicked 'install'.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #62  
Old 07-10-2007, 02:50 AM
Invalid ID's Avatar
Invalid ID Invalid ID is offline
 
Join Date: Apr 2006
Location: Karachi. Pakistan
Posts: 411
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks again
Reply With Quote
  #63  
Old 07-10-2007, 05:13 AM
4x4 Mecca 4x4 Mecca is offline
 
Join Date: Feb 2007
Posts: 396
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I get this error in firefox, it doesn't work for me in IE either.

Code:
Error: [Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) [nsIDOMNSHTMLDocument.queryCommandState]"  nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)"  location: "JS frame :: http://www.myforum.com/clientscript/vbulletin_textedit.js?v=364 :: anonymous :: line 1469"  data: no]
Source File: http://www.myforum.com/clientscript/vbulletin_textedit.js?v=364
Line: 1469
Reply With Quote
  #64  
Old 07-10-2007, 09:43 AM
lolo? lolo? is offline
 
Join Date: Jun 2005
Posts: 243
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thx work fine for me

edit small probl?me:
Quote:
Uncached templates: mrnasesimilarthreadcheck_header (1)
Uncached templates: mrnasesimilarthreadcheck_main (1)
Reply With Quote
  #65  
Old 07-10-2007, 09:51 AM
TheMilkCarton TheMilkCarton is offline
 
Join Date: Jan 2007
Posts: 294
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Brilliant. I love how assertive it is... it really prevents people from using the excuse "Well I searched and couldn't find anything".. when posting a new thread.

*Installed!!*

EDIT: Small question/feature request:

Would it be too intensive to add the parent forum to the "Forum" column? So say I was posting in this forum, it would say "vBulletin Modifications > vBulletin Add-ons" instead of just "vBulletin Add-ons"? Not the best example, but the location can be very vague if it doesn't show a breadcrumb.

Alternatively, what about at least wrapping a link around the forum name in the forum column? So they can at least click to visit the forum.

Anyway, I haven't even looked at the templates/plugins yet.. I may be able to make this modification easy enough, but I still thought I'd share the idea.
Reply With Quote
  #66  
Old 07-10-2007, 11:07 AM
Lizard King Lizard King is offline
 
Join Date: Jan 2005
Location: Mersin
Posts: 907
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by lolo? View Post
thx work fine for me

edit small probl?me:
Hook : cache_templates
Code:
if (THIS_SCRIPT == 'newthread')

{
$globaltemplates[] = 'mrnasesimilarthreadcheck_header';
$globaltemplates[] = 'mrnasesimilarthreadcheck_main';
}
This will take care of your problem
Reply With Quote
  #67  
Old 07-10-2007, 11:52 AM
MrNase MrNase is offline
 
Join Date: May 2003
Location: Germany
Posts: 670
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lizard King View Post
This will take care of your problem
Thanks, I included it into the product file.
Reply With Quote
  #68  
Old 07-10-2007, 12:58 PM
lolo? lolo? is offline
 
Join Date: Jun 2005
Posts: 243
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lizard King View Post
Hook : cache_templates
Code:
if (THIS_SCRIPT == 'newthread')

{
$globaltemplates[] = 'mrnasesimilarthreadcheck_header';
$globaltemplates[] = 'mrnasesimilarthreadcheck_main';
}
This will take care of your problem
Quote:
Originally Posted by MrNase View Post
Thanks, I included it into the product file.
great work fine thanks :up::up:
Reply With Quote
  #69  
Old 07-10-2007, 01:57 PM
sunrise2006's Avatar
sunrise2006 sunrise2006 is offline
 
Join Date: Feb 2006
Posts: 208
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks, it's great mod. I installed it.
Reply With Quote
  #70  
Old 07-10-2007, 05:08 PM
Mecho's Avatar
Mecho Mecho is offline
 
Join Date: Aug 2006
Posts: 648
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

is it possible that u add one picture like this :
when this system is trying to find similar topics ??? so ppl know something trying to happen

thanks
Reply With Quote
  #71  
Old 07-10-2007, 05:43 PM
Lizard King Lizard King is offline
 
Join Date: Jan 2005
Location: Mersin
Posts: 907
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Mecho View Post
is it possible that u add one picture like this :
when this system is trying to find similar topics ??? so ppl know something trying to happen

thanks
It already have a picture but something is wrong within the picture. Download images/misc/progress.gif to your computer and rename it to 13x13progress.gif and reupload it.

I also modified the hack to work with GARS , here is the how to.

Open GARS_newthread and search for
Code:
$GARS_options[options]
Replace it with
Code:
<!-- / subject field -->
$GARS_options[options]
Open newthread_form_complete plugin and add the following just after
Code:
            $vbulletin->templatecache["newthread"] = str_replace('<!-- / subject field -->', fetch_template('mrnasesimilarthreadcheck_main'),$vbulletin->templatecache["newthread"]);
Code:
            $vbulletin->templatecache["GARS_newthread"] = str_replace('</head>',fetch_template('mrnasesimilarthreadcheck_header').'</head>',$vbulletin->templatecache["GARS_newthread"]);
            $vbulletin->templatecache["GARS_newthread"] = str_replace('name=\"subject\"','id=\"inputthreadtitle\" name=\"subject\"',$vbulletin->templatecache["GARS_newthread"]);
            $vbulletin->templatecache["GARS_newthread"] = str_replace('<!-- / subject field -->', fetch_template('mrnasesimilarthreadcheck_main'),$vbulletin->templatecache["GARS_newthread"]);
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:05 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05414 seconds
  • Memory Usage 2,320KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (7)bbcode_code
  • (1)bbcode_html
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete