Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases

Reply
 
Thread Tools
Thread Torrent Details »»
Thread Torrent
Version: 1.00, by Kriek Kriek is offline
Developer Last Online: Sep 2004 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 06-03-2003 Last Update: Never Installs: 15
 
No support by the author.

Description

After discussion with the Serence development team and several members of this community including cloudrunner would wrote KlipFolio Integration, I have decided to release Thread Torrent for Serence KlipFolio and vBulletin, moreover This hack was essentially requested by Koutaru here to provide a way to display newest threads. KlipFolio is a desktop application that allows you to easily view and manage live, automated and customizable channels to unique information sources called Klips. A Klip is a live, automated and customizable channel to a unique information source that runs in KlipFolio. For more information you can reference the KlipScript Guide for documentation (Also see Klip Tags). The basics are essentially self explanatory; let me know if you have any more questions concerning this topic.



Installation Information
Code:
Files to edit: (2) vbTT.php, vbTT.klip
Files to upload: (2) vbTT.php, vbTT.klip
Queries to Run: (0) nada
Templates to edit: (1) nada
Templates to add: (0) nada
Time to install: approx 3 minutes

Show Your Support

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

Comments
  #22  
Old 06-08-2003, 03:06 PM
iggy123's Avatar
iggy123 iggy123 is offline
 
Join Date: Jan 2003
Posts: 128
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

works fine for me - thnx

http://www.klipfarm.com/farm.php?page=info&klip=1400
thnx
Reply With Quote
  #23  
Old 06-08-2003, 04:49 PM
Kevorkian's Avatar
Kevorkian Kevorkian is offline
 
Join Date: Dec 2002
Location: behind you...
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

only for me don't work ;___________;
Reply With Quote
  #24  
Old 06-08-2003, 06:13 PM
SZ|TalonKarrde SZ|TalonKarrde is offline
 
Join Date: Jun 2002
Posts: 60
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Heh, when I saw this I thought it had something to do with Bit Torrent. Oh well, useful hack, regardless.
Reply With Quote
  #25  
Old 06-08-2003, 07:35 PM
Kevorkian's Avatar
Kevorkian Kevorkian is offline
 
Join Date: Dec 2002
Location: behind you...
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

it's possible that the problem caused by iss 5 configuration?
Reply With Quote
  #26  
Old 06-08-2003, 10:37 PM
Kriek's Avatar
Kriek Kriek is offline
 
Join Date: Jul 2002
Location: Florida
Posts: 135
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Kevorkian, anything is possible, but I am confident this problem has nothing to do with vBulletin or Thread Torrent. Perhaps someone here will be able to help you more than I can :ermm:
Reply With Quote
  #27  
Old 06-10-2003, 10:35 AM
alesis404 alesis404 is offline
 
Join Date: May 2003
Posts: 52
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have edited online.php code with the suggested code but I still see a guest?, any idea what might cause this.

Great hack BTW
Reply With Quote
  #28  
Old 06-10-2003, 12:22 PM
Kriek's Avatar
Kriek Kriek is offline
 
Join Date: Jul 2002
Location: Florida
Posts: 135
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you Alesis, I appreciate your positive annotations. If you renamed vbTT.php subsequently you will need to amend that in the NOT LIKE comparison operator string. Is is displaying Guest Unknown Location in online.php?
Reply With Quote
  #29  
Old 06-10-2003, 06:46 PM
alesis404 alesis404 is offline
 
Join Date: May 2003
Posts: 52
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Kriek, I have not renamed vbTT.php or the klip file, they are using the default names as they came in the rar file, I just changed the config file to suit my installation.

I then edited the code as you mentioned in the online.php file and uploaded but i still see a "Guest" logged in even though I am only one on my forum..my forum is in testing so I *know* there is no guests and I am only person logged in.

Once again the "NOT LIKE comparison operator string" is the same as you posted because I did *not* change the name of the klip file or the vbTT.php file...they are default

None the less it is working perfectly other than that and could be very handy to many for use on thier forums

**I have included small .jpg capture showing what I mean by it displaying a "Guest" even though I am only one on the forum, this is happening after editing the online.php file with the operator string and all file names are default
Reply With Quote
  #30  
Old 06-10-2003, 10:16 PM
Kriek's Avatar
Kriek Kriek is offline
 
Join Date: Jul 2002
Location: Florida
Posts: 135
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Alesis, you attempted the first method, please try these.
(Also consider trying without the forward slash)

Method no.2
PHP Code:
". iif(!$WOLguests, " AND session.userid user.userid", "") ." 
AND session.location NOT REGEXP '/vbTT.php' ORDER BY user.username"); 
Method no.3
PHP Code:
". iif(!$WOLguests, " AND session.userid user.userid", "") ." 
AND session.location NOT RLIKE '%/vbTT.php%' ORDER BY user.username"); 
Method no.4
PHP Code:
". iif(!$WOLguests, " AND session.userid user.userid", "") ." 
AND session.location != '%/vbTT.php%' ORDER BY user.username"); 
Reply With Quote
  #31  
Old 06-10-2003, 10:56 PM
alesis404 alesis404 is offline
 
Join Date: May 2003
Posts: 52
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Kriek, just so you are aware I have tested all 3 of these also just now and also tested each one without the "forward slash" and each time I logged out and logged back in and still see a *guest*

**Note however I did these all one after another editing the code in online.php and then logging out and logging back in, *possibly* the guest was still showing because of a session ID? I cannot confirm this unless I do the edit and wait in between each one unless of course when I logout each time it logs both myself and the guest* out...I'm not positive how that works.

The reason i mention this is because of an earleir comment on the first page of this thread

Quote:
And also,if a member stays logged into the forums,i.e their session hasn't expired,and then clicks a link via the klip,they will appear twice on the WOL,(as their username,and further down the list as a guest).You can check this by logging into your forums,and then open klipfolio and click one of the thread links.Look at the IP's column and you'll be listed with the same IP as "username" and "guest".Which means your forums currently active users count will be wrong.
**If worse comes to worse and there is and extra guest that is fine...at least I know what it is but have tried all 4 methods and each does not seem to work
Reply With Quote
Reply

Thread Tools

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 05:00 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.10059 seconds
  • Memory Usage 2,306KB
  • 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
  • (1)bbcode_code
  • (3)bbcode_php
  • (1)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
  • (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