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

Closed Thread
 
Thread Tools
[ITech] vBExternal Lite Details »»
[ITech] vBExternal Lite
Version: 1.00, by Inferno Tech Inferno Tech is offline
Developer Last Online: May 2010 Show Printable Version Email this Page

Category: Major Additions - Version: 3.6.x Rating:
Released: 05-15-2007 Last Update: Never Installs: 141
Additional Files  
No support by the author.

PLEASE REFER TO THE FOLLOWING THREAD FOR HELP/SUPPORT: https://vborg.vbsupport.ru/showthread.php?t=166791

----------------------------------
[ITech] vBExternal Lite
Created By Inferno Technologies (http://www.infernotechnologies.net)
Copyright 2004-2007
All rights reserved
Project Development Team: Zero Tolerance, Acid Burn
Project Lead: Iain "Decado" Kidd
----------------------------------

Ported from vBExternal 1.6 created by Zero Tolerance to work with vBulletin 3.6.x

Features:
  • Easy integration with your existing php scripts
  • No coding experiance needed to make it work
  • Full parsing for bbtags and emoticons/smilies + auto URL correction (no red-x's)
  • Lets you put forum information on your homepage/webpage
  • Users online
  • Latest Threads w/preview
  • More Information *Here*

Installation Information:
  • Template modifications: 0
  • Database changes: 0
  • Files added: 5
  • Files modified: 1 (website page)
  • Installation difficulty: 2/5
Installation Instructions:
1) Unzip the folder and upload the contents of UPLOAD into your root directory
2) Read Useage instructions.txt and then you are done

Version History:
None so far.

Frequently Asked Questions:
Q: So does this able you to put like phrases and stuff in external sites?
A: At the moment it allows you to Display Newest Members, Top Posters, Newest Threads, Newest Replies, News and Users Online onto a page outside of your vbulletin directory.

Q: I have a problem. My page is located at root/cms and my forum at root/forum. It's isn't possible for me to locate the forum in a subfolder of /cms.
Is there any solution for this problem?

A:Yes there is a solution try this piece of code instead of the one that the instructions says to use:
Code:
<?php
chdir('../VB');
require_once('vBExternal.php');
?>
Q: How would i do this if theres 2 different domains involved
A: If the two domains are on both the same server and the same domain account then call you need to do is chdir out of your current account folder (www/public_html/testsite/) to the other domain folder (www/public_html/site2/)

Screenshot:
https://vborg.vbsupport.ru/attachmen...4&d=1118677511
(Thanks to C.Birch)


Acid Burn - Inferno Technologies Developer

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
lange

Comments
  #82  
Old 08-22-2007, 11:15 PM
djilou djilou is offline
 
Join Date: Dec 2006
Posts: 119
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by azn_romeo_4u View Post
yea i have this on my website

www.flyffworld.com Fully customizable btw. Works nicely. Anyone know if this works on the latest version of vb?
Awesome!
can you tell me how did you managed to display just a certain number of characters from the post on my news page?

thanks!
  #83  
Old 09-06-2007, 07:43 PM
azn_romeo_4u azn_romeo_4u is offline
 
Join Date: Feb 2006
Posts: 227
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PHP Code:
array(
                                
'threadid'     => $News['threadid'],
                                
'threadname'   => $News['title'],
                                
'postuserid'   => $News['postuserid'],
                                
'postusername' => $News['postusername'],
                                
'post'         => $bbcode_parser->parse(unhtmlspecialchars(substr ($News['pagetext'],0,900)), $f), 
                                
'comments'     => vb_number_format($News['replycount']),
                                
'date'            => vbdate($vbulletin->options['dateformat'], $News['dateline']),
                                
'time'            => vbdate($vbulletin->options['timeformat'], $News['dateline']), 
I added

'post' => $bbcode_parser->parse(unhtmlspecialchars(substr ($News['pagetext'],0,900)), $f),

this to vbexternal. Change the 900 number to whatever u want. the ... you see at the end. I had to manually add that in there. LOL.

anyone know if this works in the lastest version? can anyone recommend me a script that is flexible like this?
  #84  
Old 09-07-2007, 12:05 PM
Pacman15 Pacman15 is offline
 
Join Date: Aug 2006
Posts: 54
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There is one thing not working thought... I had to set my 'news forum' to put in moderation queue the threads created by members, so that it wouldn't show stupid things on my main page, but it doesn't work. Even if the thread is not aproved yet, it will apear on the main page.

Do you have any idea in how to fix that?

My temporary solution was to create a sub-forum 'propose news', so whenever I like a news from my members I'd move it to the main 'News Forum'.
  #85  
Old 09-07-2007, 12:40 PM
PeteBlume PeteBlume is offline
 
Join Date: May 2007
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there any possibility to show the news in a template? Fpr example: I want to show 1 news-post in the template threadbit under the first post?

Do you know whta I mean? Can you help me?
  #86  
Old 09-07-2007, 05:28 PM
azn_romeo_4u azn_romeo_4u is offline
 
Join Date: Feb 2006
Posts: 227
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Pacman15 View Post
There is one thing not working thought... I had to set my 'news forum' to put in moderation queue the threads created by members, so that it wouldn't show stupid things on my main page, but it doesn't work. Even if the thread is not aproved yet, it will apear on the main page.

Do you have any idea in how to fix that?

My temporary solution was to create a sub-forum 'propose news', so whenever I like a news from my members I'd move it to the main 'News Forum'.
Just don't give permission to your members to post in that particular forum.

So does that mean on your board this works on 3.6.8?
  #87  
Old 09-07-2007, 06:39 PM
txsbmw txsbmw is offline
 
Join Date: May 2006
Posts: 238
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by azn_romeo_4u View Post
Just don't give permission to your members to post in that particular forum.

So does that mean on your board this works on 3.6.8?
I run 3.6.8 and it works like a charm.
  #88  
Old 09-10-2007, 07:55 PM
Mikhailtech Mikhailtech is offline
 
Join Date: Aug 2002
Location: USA
Posts: 76
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can someone help me exclude a specific forum from the results? I have a forum that's just for mods/admins and is invisible to normal users, but the thread titles from this forum still show up in VBE. What code modification would I have to make to exclude this particular forum from the new threads/new posts results?
  #89  
Old 09-12-2007, 08:55 AM
koby411 koby411 is offline
 
Join Date: May 2007
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there someway I can combine this with this mod:
https://vborg.vbsupport.ru/showthread.php?t=99925
To give the news categories?
Like so on the news it can say
Filed Under: Square Enix
or w/e?
  #90  
Old 09-12-2007, 11:44 AM
jGas jGas is offline
 
Join Date: May 2007
Posts: 172
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

it's a very good mod...does it works with myspace?

i'd like to insert the last posts and news on "my" myspace page...
  #91  
Old 09-13-2007, 03:21 PM
koby411 koby411 is offline
 
Join Date: May 2007
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How to do I get this:


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

Set right if my sites are like this:

Forum:
forgottenmem/forums

Site:
khtrinity


I tried using this:

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

but it didn't work.. O.o

Okay got it working now, but I have another problem..

When I put an image into the news.html template like:
http://forgottenmem.net/images/news_arrow.gif

When it shows the news on the site it changes that link to:
http://forgottenmem.net/http://forum...news_arrow.gif

Why is it adding that in the middle of the link? O.o
Closed Thread


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:50 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.05583 seconds
  • Memory Usage 2,329KB
  • 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
  • (1)bbcode_php
  • (3)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
  • (1)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • 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