vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Add-On Releases - vBISpy - AJAX real-time feed of new posts/threads (https://vborg.vbsupport.ru/showthread.php?t=125947)

Julrou 03-27-2008 05:02 PM

Quote:

Originally Posted by thomasx (Post 1471600)
I would like to restrict the use to moderator and administrator usergroups, but have no idea how to do that, because there is no admin backend. any clue for me if that is possible (should be) and: how?

thanks.

Yes it is possible. See it here https://vborg.vbsupport.ru/showthrea...15#post1316415

Code:

if ($vbulletin->userinfo[usergroupid] == 1,2,3,4,8)
{
        print_no_permission();
}

Numbers are the usergroups ID of non-mods or non-admins groups.

d1150488 03-31-2008 11:56 AM

I have a weird problem, only a selection of posts are being updated, it just appears to ignor posts at random. I've got nothing configured to ignor forums, i have the right permissions etc. It just doesn't seem happy.

nirvana43 04-01-2008 04:32 AM

i'm getting these errors :
Code:

Warning: main(./global.php) [function.main]: failed to open stream: No such file or directory in /home/projects/public_html/vaSpy/vaispy.php on line 33

Fatal error: main() [function.require]: Failed opening required './global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/projects/public_html/vaSpy/vaispy.php on line 33


d1150488 04-02-2008 08:28 PM

is it installed in the root directory of your vbulletin install? it looks like you've got it in it's own folder, thats why it can't locate the vbull global file.

put it in the same directory as your forum index.php.

poolking 04-03-2008 12:32 PM

How do I get the Thread/Post links to open in a new window/tab?

nirvana43 04-04-2008 11:09 AM

Quote:

Originally Posted by d1150488 (Post 1481317)
is it installed in the root directory of your vbulletin install? it looks like you've got it in it's own folder, thats why it can't locate the vbull global file.

put it in the same directory as your forum index.php.

lolz!! thanks man working!! :p

fordsho 04-04-2008 01:35 PM

Ok, if I want to exclude specific forums from ispy, would you explain how to do that? I'm still not clear. (I did install it successfully, and it works great, I just have some things I dont want going through spy)

Quickness 04-04-2008 03:08 PM

This is a great mod -- any updates planned for it? I mean, it works fine now but it's always nice to have new features added.

Thanks :)

KrukaaN 04-06-2008 01:34 PM

I really want this on my forumhome. Can someone help me please? :(

NavS 04-06-2008 08:13 PM

I was wondering if this was possible, make it so that guests can see it the way that members see it, but still have my forums setup to not let guests see the forum without registering?

NavS 04-06-2008 11:00 PM

Quote:

Originally Posted by NavS (Post 1484655)
I was wondering if this was possible, make it so that guests can see it the way that members see it, but still have my forums setup to not let guests see the forum without registering?

ok never mind I have it now so that it shows to all, but I'd like to make it so that certain user groups can't see the content of what was posted...

PHP Code:

        if ( $thread['preview'] )
        {
        
$clip .= "<br />{$thread['preview']}";
        } 

it's that thing but I don't know what to add or edit...

NavS 04-06-2008 11:01 PM

also could I make it so that this certain thing uses a different styleid than the forum default?

gravy 04-09-2008 08:46 AM

Hello, good morning all,

Please I just install this mod my host at : http://www.dacypher.net/forums/vaispy.php

where the original forum site is located at
http://www.dacypher.net/forums/

but actually, I am not getting any result. please I need assistance from your part. I am using (vBulletin 3.6.8 Patch Level 2). How can I configure the script for all the post/thread to display on all the forums? thanks in advance

gravy 04-12-2008 08:33 PM

Dear sir,

I have been able to install VBIspy on my page which can be located at http://www.dacypher.net/forums/vaispy.php however, I am not been able to display messages when it comes. and secondly, I would like to ask for suggestion / assistance on having the new post/thread displayed on a pop up div I thing we can use this functionality to perform that.

Any suggestion will be welcomed. thanks in advance.

Also, I would like to ask how possible it is to change the ISPy title and menu link so it will only display the forum name.

Skedoozy 04-15-2008 12:47 AM

Quote:

Originally Posted by poolking (Post 1481922)
How do I get the Thread/Post links to open in a new window/tab?

I doubt the OP is ever going to answer this since he never answered it when it was first mentioned. I figured it out after pulling my hair out for awhile.

You have to edit the javascript file that pulls the url.

Open va_spy.js

And find

Code:

if(title.length == 0) {
        clip = '<strong>Unknown</strong>';
    } else {
        clip = '<img src="' + statusicon + '" alt="" /><strong><a href="' + post_url + '">' + title + '</a></strong>';
    }

    if (preview.length > 0) {
        clip = clip + '<br />' + preview ;
    }

    clip = clip + ' (' + view + ' views, ' + numreplies + ' replies)';

    if (userid.length > 0) {
        poster_clip = '<a href="' + vburl + 'member.php?u=' + userid + '">' + poster + '</a>';
    }

    poster_clip = poster_clip + '<br />' + when;

    if (parseInt(forumname.length) > 0) {
        where = where + '<strong><a href="' + vburl + 'forumdisplay.php?f=' + forumid + '">' + forumname + '</a></strong>';
    } else {
        where = '';
    }

Code:

if(title.length == 0) {
        clip = '<strong>Unknown</strong>';
    } else {
        clip = '<img src="' + statusicon + '" alt="" /><strong><a href="' + post_url + '" target=_blank>' + title + '</a></strong>';
    }

    if (preview.length > 0) {
        clip = clip + '<br />' + preview ;
    }

    clip = clip + ' (' + view + ' views, ' + numreplies + ' replies)';

    if (userid.length > 0) {
        poster_clip = '<a href="' + vburl + 'member.php?u=' + userid + '" target=_blank>' + poster + '</a>';
    }

    poster_clip = poster_clip + '<br />' + when;

    if (parseInt(forumname.length) > 0) {
        where = where + '<strong><a href="' + vburl + 'forumdisplay.php?f=' + forumid + '" target=_blank>' + forumname + '</a></strong>';
    } else {
        where = '';
    }

That's where it's pulling the new url's from so the code change has to be there or it's not going to work.

gravy 04-16-2008 10:51 PM

Oh but why are you ignoring me like that? I have posted a question 2 times but no one minds me. Have I done something wrong here?

the problem I am facing here, is simple. I only need suggestion and guidance on how to do it.

I already show a site

http://www.dacypher.net/forums/vaispy.php

now. I want to display live thread relative to each forum I know it can be hooked by forumid. but how can I do that? I even try calling [http://www.dacypher.net/forums/vaispy.php?f=9 to call a forum name or id but no result is coming.

http://www.dacypher.net/forums/

is the main forum. I want to have each forum id be operated by vbaispy instead of forumdisplay according to the link clicked but I don't know what I have done wrong?

Thanks

poolking 04-20-2008 04:49 PM

MPDev,

You say that this mod is supported, so why haven't you been in here in a long while answering member's questions?

MPDev 04-20-2008 10:55 PM

Sometimes life gets in the way of doing all the things you would like to do....

FassoL 04-21-2008 06:12 PM

ًWoW !!
Very Nice :)

odeezie 04-22-2008 04:31 AM

This recently stopped working for me...I installed flashchat and changed my forum header to the main joomla header....these are the only changes I have made recently that may have effected it....would either of those really effect this? :confused:

I deleted and re-installed and the iSpy page comes up, and teh buttons seem like they function, just no posts/threads appear...any suggestions?

Digital Jedi 04-23-2008 12:49 PM

Quote:

Originally Posted by gravy (Post 1492539)
Oh but why are you ignoring me like that? I have posted a question 2 times but no one minds me. Have I done something wrong here?

the problem I am facing here, is simple. I only need suggestion and guidance on how to do it.

I already show a site

http://www.dacypher.net/forums/vaispy.php

now. I want to display live thread relative to each forum I know it can be hooked by forumid. but how can I do that? I even try calling [http://www.dacypher.net/forums/vaispy.php?f=9 to call a forum name or id but no result is coming.

http://www.dacypher.net/forums/

is the main forum. I want to have each forum id be operated by vbaispy instead of forumdisplay according to the link clicked but I don't know what I have done wrong?

Thanks

Point of fact that everyone should remember. Free modifications, with free support means that the developer might not have the time or resources to answer every single one of your questions. And sometimes, no one else answers because no one whose read the question necessarily knows the answer.

insidedesign 05-02-2008 01:33 PM

Has anyone tried this with 3.7? Any notes?

Jase2 05-04-2008 06:46 PM

For open in a new window, you need to add to wherever the link code is:

target="_blank"

insidedesign 05-06-2008 01:50 PM

Quote:

Originally Posted by insidedesign (Post 1505749)
Has anyone tried this with 3.7? Any notes?

Everything seems to be working well with 3.7
Check it out: http://www.genxglow.com/

Astrof 05-06-2008 02:37 PM

This is a dream coming true (for me, at least). I have been wondering if a mod like existed for weeks and can't believe it's working, even with 3.7.

Okay, so I have three questions:

1) Is it possible to limit this mod to forums and subforums only (not homepage or categories)?

2) Can Private Messages update in real time as well?

3) How server intensive is this really? I've read reports that features like these actually result in less bandwidth and server consumption because there are fewer full page re-load requests.

Thanks to anyone who might take the time to answer this to me. :)

insidedesign 05-06-2008 02:45 PM

Quote:

Originally Posted by Astrof (Post 1510517)
This is a dream coming true (for me, at least). I have been wondering if a mod like existed for weeks and can't believe it's working, even with 3.7.

Okay, so I have three questions:

1) Is it possible to limit this mod to forums and subforums only (not homepage or categories)?

2) Can Private Messages update in real time as well?

3) How server intensive is this really? I've read reports that features like these actually result in less bandwidth and server consumption because there are fewer full page re-load requests.

Thanks to anyone who might take the time to answer this to me. :)

1) Yes, set by: $blockforums = "";

2) I am sure, but you will have to do custom editing of the script.

Astrof 05-06-2008 03:38 PM

Quote:

Originally Posted by insidedesign (Post 1510525)
1) Yes, set by: $blockforums = "";

2) I am sure, but you will have to do custom editing of the script.

Thanks a lot for our quick reply, insidedesign.

Do you have any knowledge of the server load? My forum is just starting, so I doubt I will have any problems with live feed of new events, but what happens when there are, for instance, 50 + online visitors?

Is this usergroup-specific? Can it be limited to registered members only?

reuben 05-11-2008 11:31 AM

I installed it in 3.7 but its showing the one latest post . any ideas ?

EhsanAhmad 05-12-2008 09:26 AM

What do i do so it shows all Posts / Threads currently it only shows a few new posts a few hours past what can i do to add posts even a day back ? etc

Julrou 05-12-2008 09:54 AM

Hey there !

This doesn't work on my board anymore...

http://www.informatiquefacile.eu/forums/vaispy.php


MPDev said :

Quote:

Appears you have a space in your numbers which is illegal:

http://www.informatiquefacile.eu/for...spy.php?do=xml
But how can i fix this ??? :confused:


Thanks to all who can help me.... ;)

fariborz 05-15-2008 01:29 PM

Please add this features to your new version:
1- Social Groups Posts
2- Albums & Pictures Comment Posts

Thanks

skariko 05-20-2008 01:45 PM

Is possible to add a code to hide?
I see that VBSpy do not show the code of [QUOTE] and other.. i want to hide the code [SPOILER] too, how can i do?

Jayphen 05-22-2008 03:12 AM

Very, very cool mod! Thankyou!

I don't know if it's been requested yet, but if possible could a number be added to the title of the page when new posts are detected? That way you can keep iSpy open in another tab while you're doing stuff, and quickly see when new posts/threads have been made

Harley D 05-27-2008 10:49 PM

I have this working just fine, and even done some modding after reading ALL the posts in this thread, and some twice.
I have also attempted to parse the smiles to no avail.
Is there anyone who might offer suggestions as to how to do this?

I know this doesn't work
Code:

require_once(DIR . '/includes/class_bbcode.php');
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$parsed_text = $parser->do_parse($text, $do_html, $do_smilies, $do_bbcode, $do_imgcode, $do_nl2br, $cachable);

What am I missing... and no I'm no coder.

David_R 05-28-2008 06:30 AM

I require a small help with modification, how can I change New post url format to new thread url format ?

New Threads links to - myforums.com/showthread.php?t=0000
New Post liks to - myforums.com/showthread.php?p=00000#post00000

I require New Post just links to thread id and not last post in that thread, please help.

Harley D 05-28-2008 09:03 PM

Theres an update to the file va_prototype.js that in the clientscript folder.
just go to the website listed below and download and rename.
This might help some with issues.
the version we all are using in this mod is 1.4.0

/* Prototype JavaScript framework, version 1.6.0
* (c) 2005-2007 Sam Stephenson
*
* Prototype is freely distributable under the terms of an MIT-style license.
* For details, see the Prototype web site: http://www.prototypejs.org/

David_R 05-29-2008 07:30 AM

is that an answer to my question above ?

Harley D 05-29-2008 11:23 PM

no, I don't believe so... Sorry.

caggla 05-30-2008 11:03 AM

I don't know if it is about this but I've recently upgraded vbseo and vaispy.php has gone.
I can see ...com/vaispy.php on the address bar but it shows the index page.
before that it worked fine

Harley D 05-30-2008 07:49 PM

try adding vaispy.php to vbseo's exception list.


All times are GMT. The time now is 07:24 AM.

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.02124 seconds
  • Memory Usage 1,841KB
  • 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
  • (5)bbcode_code_printable
  • (1)bbcode_php_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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