Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons

Reply
 
Thread Tools
vBExternal v1.6 Details »»
vBExternal v1.6
Version: 1.00, by Zero Tolerance Zero Tolerance is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.5.0 Beta 1 Rating:
Released: 06-12-2005 Last Update: Never Installs: 213
 
No support by the author.

Well, this doesn't modify any php, nor use a plugin, so i wasn't sure exactly where to stick it

Anyhow, this is a port of the vBExternal for vb 3.0.7, so look at this thread for more information: https://vborg.vbsupport.ru/showthrea...threadid=81943

Enjoy

- Zero Tolerance

Show Your Support

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

Comments
  #22  
Old 07-30-2005, 02:03 PM
ohgenki ohgenki is offline
 
Join Date: Apr 2002
Location: Singapore
Posts: 76
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

is it possible top truncate the news ? sometimes its tooo lengthy. hmm ?

for e.g.:

news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news news

... more
Reply With Quote
  #23  
Old 07-30-2005, 02:24 PM
delds delds is offline
 
Join Date: Oct 2003
Posts: 60
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

1st I assume this should also work in vb3.5 rc1
2nd if the forums are located on a different site than the page you wish to insert the top threads into...

<?php
chdir('./forums');
require_once('./vBExternal.php');
?>

how do you fill this out.
Reply With Quote
  #24  
Old 08-02-2005, 10:57 AM
Mimoun Mimoun is offline
 
Join Date: Jul 2005
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi Zero Tolerance I like your script.
Could you add this to your script:
I want to put the small login box that is on the right side inside the navbar on an external page.
Here is a screenshot of what I would like to extract:
Reply With Quote
  #25  
Old 08-02-2005, 03:48 PM
IFor[You] IFor[You] is offline
 
Join Date: Dec 2002
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this mod has potential~
need updating with more functions though
Reply With Quote
  #26  
Old 08-06-2005, 05:35 PM
TCattitude's Avatar
TCattitude TCattitude is offline
 
Join Date: Oct 2004
Location: Chile
Posts: 195
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<a href="https://vborg.vbsupport.ru/showpost.php?p=750786&postcount=119" target="_blank">https://vborg.vbsupport.ru/showp...&postcount=119</a>

please?
Reply With Quote
  #27  
Old 08-10-2005, 06:30 PM
jalliday jalliday is offline
 
Join Date: Jan 2004
Posts: 4
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

great hack thanks a lot
i just have a little problem:
News Article: Londres attaquй instead of attaqu?.
What's my problem?
Reply With Quote
  #28  
Old 08-13-2005, 07:55 AM
welo welo is offline
 
Join Date: Jan 2004
Location: Portland, Oregon
Posts: 172
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay, this is pretty cool. Have it running on RC2.

Couple of things though:

1. Can something be done to more easily eliminate forums you don't want posts drawn from except leave them out of the whole list? Like for instance:
restrict_NewestThreads(5,"1,2,3");
...would draw from every forum except 1,2,3. Would make it a lot easier to exempt your admin and special usergroup forums.

2. Would be really nice if thread titles could be restricted to a certain specified character limit. So if the thread title is really long you could chop it off and add ... after 20 characters f.ex.

Otherwise very cool indeed :up:
Reply With Quote
  #29  
Old 08-15-2005, 06:18 PM
jugo jugo is offline
 
Join Date: Feb 2004
Location: Reading your emails.
Posts: 573
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by welo
Okay, this is pretty cool. Have it running on RC2.

Couple of things though:

1. Can something be done to more easily eliminate forums you don't want posts drawn from except leave them out of the whole list? Like for instance:
restrict_NewestThreads(5,"1,2,3");
...would draw from every forum except 1,2,3. Would make it a lot easier to exempt your admin and special usergroup forums.

2. Would be really nice if thread titles could be restricted to a certain specified character limit. So if the thread title is really long you could chop it off and add ... after 20 characters f.ex.

Otherwise very cool indeed :up:

Change this line:

PHP Code:
        if($Forums){
        
$SQL " where forumid in({$Forums})";
        } 

To this:

PHP Code:
        if($Forums){
        
$SQL " where forumid NOT in({$Forums})";
        } 
Reply With Quote
  #30  
Old 08-15-2005, 06:36 PM
jugo jugo is offline
 
Join Date: Feb 2004
Location: Reading your emails.
Posts: 573
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by welo
Okay, this is pretty cool. Have it running on RC2.

Couple of things though:

1. Can something be done to more easily eliminate forums you don't want posts drawn from except leave them out of the whole list? Like for instance:
restrict_NewestThreads(5,"1,2,3");
...would draw from every forum except 1,2,3. Would make it a lot easier to exempt your admin and special usergroup forums.

2. Would be really nice if thread titles could be restricted to a certain specified character limit. So if the thread title is really long you could chop it off and add ... after 20 characters f.ex.

Otherwise very cool indeed :up:

Change this line:

PHP Code:
        if($Forums){
        
$SQL " where forumid in({$Forums})";
        } 

To this:

PHP Code:
        if($Forums){
        
$SQL " where forumid NOT in({$Forums})";
        } 
Reply With Quote
  #31  
Old 08-16-2005, 10:26 AM
matt2cacnio matt2cacnio is offline
 
Join Date: Jul 2005
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I dont get what this hack does. It gives you a way to make another html page integrated into vbulletin so you can put any content with vbulletin headerS?
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:37 AM.


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.04612 seconds
  • Memory Usage 2,315KB
  • Queries Executed 27 (?)
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
  • (4)bbcode_php
  • (2)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_postinfo_query
  • fetch_postinfo
  • 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