vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Miscellaneous Hacks - Quick search pre-populated results: give your visitors quick thread suggestions (https://vborg.vbsupport.ru/showthread.php?t=222001)

grey_goose 10-28-2009 01:31 AM

Same here. File created, autosearch.php edited... just no results.

oddmud 10-28-2009 09:33 PM

Quote:

Originally Posted by ibautocommunity (Post 1907159)
Oh, I see the problem. You are using the vBNexus product which also loads jquery. In your head template, remove the jquery line you've added for autocomplete product.

Remove this first line:

<script src="autocompfiles/jquery-latest.min.js"></script>

I've tried this too, still not working at all.. :(

Ghostt 12-16-2009 04:05 PM

i have the same problem like ALL others here, just dont getting the autocomplete shown!

the autocomplete is genereted succesful and so on!...

is it maybe because i havent unix how can i check it?

i use version 3.8.4 , FreeBSD and "Sed" installed

2. problem:
it isautocompleting the searchtext but you get redirected to the topic! how to disable that redirection to the topic?
then it would be perfect

Ghostt 12-17-2009 11:14 AM

no support=? :@

Ghostt 12-18-2009 11:50 AM

Any Support In Sight Omg? Wtf!

Ghostt 12-20-2009 05:56 PM

No Help`??? THIS MOD IS BROKEN! Can someone pls test it with 3.8.4????!!!!

Lynne 12-20-2009 06:07 PM

Quote:

Originally Posted by Ghostt (Post 1934156)
No Help`??? THIS MOD IS BROKEN! Can someone pls test it with 3.8.4????!!!!

It clearly says Not Supported which means you are on your own. You should not install unsupported mods unless you are prepared to fix any issues that come up on your board.

Ghostt 12-20-2009 06:20 PM

in supported mods i get also never help thats realy sucks i pay for that expensive vb and never get help with mods. the moderators should help with mods also if the owner isnt supporting it!

i just need a confirmation that this mod is working!

Paul M 12-20-2009 07:42 PM

Quote:

Originally Posted by Ghostt (Post 1934171)
the moderators should help with mods also if the owner isnt supporting it!

No, they should not.

We are not here to support mods, that is the task of the author - and if they choose not to, then thats their choice. This mod is not supported, and your continued rants are not going to change that. If you cannot live with that choice then dont install it - simple as that.

Ghostt 12-20-2009 08:05 PM

bad argument. not to isntall a mod which someone realy need isn't a option!

Lynne 12-20-2009 08:21 PM

Quote:

Originally Posted by Ghostt (Post 1934244)
bad argument. not to isntall a mod which someone realy need isn't a option!

The other options are to write your own or find someone else willing to write it for you. And saying you don't code is a bad argument - I didn't code either until I started a forum and had ideas about what I needed on my site. I either learned to code or went without. And guess what? I learned to code. (OK, I'm not great at it, but I know enough to get by.)

Ghostt 12-20-2009 08:33 PM

not everyone has time/wants/comprehension to learn codeing. you cant say someone who need support go learn programming... and make your own Boardsoftware

Lynne 12-20-2009 08:40 PM

Quote:

Originally Posted by Ghostt (Post 1934251)
not everyone has time/wants/comprehension to learn codeing. you cant say someone who need support go learn programming... and make your own Boardsoftware

OK, but *you* can't say "I don't have the time/wants/comprehension therefore I expect someone else to do it for me."

0ptima 12-20-2009 11:55 PM

Quote:

Originally Posted by Ghostt (Post 1931741)
2. problem:
it isautocompleting the searchtext but you get redirected to the topic! how to disable that redirection to the topic?
then it would be perfect

replace this
Code:

$("#ac_suggest").result(function(event, data, formatted) {
        if(data)
        {
            location.href = '$vboptions[bburl]/showthread.php?t='+data[1];
        }   
           
    });

with this (just add '//' in front of location.href)

Code:

$("#ac_suggest").result(function(event, data, formatted) {
        if(data)
        {
  //          location.href = '$vboptions[bburl]/showthread.php?t='+data[1];
        }   
           
    });


0ptima 12-20-2009 11:55 PM

Quote:

Originally Posted by Ghostt (Post 1934156)
No Help`??? THIS MOD IS BROKEN! Can someone pls test it with 3.8.4????!!!!


Works fine on 3.8.4 PL 1

Ghostt 12-21-2009 12:11 PM

Quote:

Originally Posted by 0ptima (Post 1934316)
Works fine on 3.8.4 PL 1

Thanks i test it now ones more on a clean testboard and give you an result by editing this post!
where can be the error?

Quote:

Originally Posted by 0ptima (Post 1934315)
replace this
Code:

$("#ac_suggest").result(function(event, data, formatted) {
        if(data)
        {
            location.href = '$vboptions[bburl]/showthread.php?t='+data[1];
        }   
           
    });

with this (just add '//' in front of location.href)

Code:

$("#ac_suggest").result(function(event, data, formatted) {
        if(data)
        {
  //          location.href = '$vboptions[bburl]/showthread.php?t='+data[1];
        }   
           
    });


very good i rly hope it works. this mod is very usefull

Ghostt 12-21-2009 02:46 PM

The mod is working on standart VB style!

but not in my boardstyle..

why it isnt working on my style?

/EDIT
i think i can fix it ,it's working on my style but not in the forumhome!

Mike-D 12-21-2009 04:22 PM

My deepest respect to the Coder and his AddOn, but AJAX Live Search is for me the better choice. It works in all Styles with conjunction in all Plugins without any problems since almost one year ;)

Mike-D 12-21-2009 04:30 PM

Quote:

Originally Posted by Lynne (Post 1934248)
I either learned to code or went without.

Well and wise said, Lynne. Exactly this is the point :up:

Ghostt 12-21-2009 04:34 PM

ok ive found the problem.
there was a conflict with my script "smoothscroll.js" a slow "anker" -scroll script

Ghostt 12-21-2009 06:02 PM

/EDIT

NOW i see there is a problem with an other mod using jquery!
https://vborg.vbsupport.ru/showthread.php?t=145187

how to solve that conflict?

to delete that part isnt working:
PHP Code:

<script src="autocompfiles/jquery-latest.min.js"></script



/////////////////////////

how to sort the results by date and not by views:

PHP Code:

$ac_sql "SELECT * FROM "TABLE_PREFIX ."thread where threadid between ".$startat." AND ".$endat." AND (views > 200 OR replycount > 200) AND visible = '1' ORDER by views DESC"

"ORDER by date DESC" isnt working

Ghostt 12-22-2009 03:17 PM

no ideas?

Ghostt 12-24-2009 03:15 PM

nice still no help -.-

Mike-D 12-24-2009 03:27 PM

Quote:

Originally Posted by Ghostt (Post 1937343)
nice still no help -.-

You know that this AddOn is NOT SUPPORTED?

Ghostt 12-24-2009 03:48 PM

no matter i need this mod!

marshal_ramdev 12-24-2009 04:14 PM

thank you

Ghostt 12-27-2009 10:22 PM

jquery conflict solved by deleting the other mods jquery.js file and using this fix of the other mod for newest jquery https://vborg.vbsupport.ru/showpost....&postcount=583


but there is still the question:
/////////////////////////

how to sort the results by date and not by views:

PHP Code:

$ac_sql "SELECT * FROM "TABLE_PREFIX ."thread where threadid between ".$startat." AND ".$endat." AND (views > 200 OR replycount > 200) AND visible = '1' ORDER by views DESC"

"ORDER by date DESC" isnt working

Ichigo88 09-08-2010 08:57 PM

work on vb4?

MoMan 09-12-2010 11:53 PM

Fantastic mod! Installed :D

(it will likely work on vB4, as the only file that really uses any vbulletin code is the cron script)

Ghostt 09-13-2010 12:09 AM

wrong post sorry


All times are GMT. The time now is 01:37 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.01559 seconds
  • Memory Usage 1,790KB
  • 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
  • (4)bbcode_code_printable
  • (3)bbcode_php_printable
  • (11)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
  • (30)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