Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

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
  #312  
Old 05-24-2006, 06:58 AM
welo welo is offline
 
Join Date: Jan 2004
Location: Portland, Oregon
Posts: 172
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by upnorth
For Newest Threads the default pulls from all forums if left blank. Is there a easy way to pull from all forums accept for select ones.
i.e. I want all Newest Threads from all forums accept for number 1 and 5

Any ideas on how to make this happen?
Try this.
Reply With Quote
  #313  
Old 05-24-2006, 12:14 PM
Thug Thug is offline
 
Join Date: Feb 2004
Location: Sheffield : uk
Posts: 783
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<a href="https://vborg.vbsupport.ru/showthread.php?t=116546" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=116546</a>
see this please
Reply With Quote
  #314  
Old 05-24-2006, 12:22 PM
Thug Thug is offline
 
Join Date: Feb 2004
Location: Sheffield : uk
Posts: 783
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by djpassion
You need to put in your forums path in the
PHP Code:
<?php
chdir
('./forum');
require_once(
'./vBExternal.php');
?>
section

create a blank php file and enter this into it

PHP Code:
<? print $PATH_TRANSLATED; ?>
name it path.php and upload it to the root of your server

now browse to your path.php file in your web broswer and you will see your servers path, this is what needs to be entered into that section eg:

PHP Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
chdir
('/<server path from path.php file goes here>/forum');
require_once(
'/<server path from path.php file goes here>/forum/vBExternal.php');
?>
<html xmlns="http://www.w3.org/1999/xhtml">
Some servers can be case sentive so make sure the file name on the server is in exactly the same lettercase as the code above. also your page needs to have the .php extension, not .html

another way is to create a blank php for it - save the file with any name eg: vbexternal_script.php
PHP Code:
<?php
chdir
('/<server path from path.php file goes here>/forum');
require_once(
'/<server path from path.php file goes here>/forum/vBExternal.php');
?>
and then insert this into your webpage

PHP Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<? include 'vbexternal_script.php'; ?>
<html xmlns="http://www.w3.org/1999/xhtml">

i get DB error from link abuv
Reply With Quote
  #315  
Old 05-31-2006, 03:18 PM
mdbw mdbw is offline
 
Join Date: May 2006
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm getting the same error:

PHP Code:
Warningmain(./includes/db_mysql.php): failed to open streamNo such file or directory in /home/******/public_html/mdbwforums/vBExternal.php on line 67

Fatal error
main(): Failed opening required './includes/db_mysql.php' (include_path='.:/usr/lib/php:/usr/local/lib/php'in /home/******/public_html/mdbwforums/vBExternal.php on line 67 
This is the code of my file:

PHP Code:
<?php
chdir
('./mdbwforums');
require_once(
'./vBExternal.php');
?>

<?php
output_NewestReplies
(30);
?>
So what's wrong?
Reply With Quote
  #316  
Old 06-06-2006, 03:48 PM
[email protected] vbmenu_register("postmenu_1000209", true);
Guest
 
Posts: n/a
Default

Does anyone had make this work with 3.54? is it any updates???
Reply With Quote
  #317  
Old 06-07-2006, 11:29 AM
aramik aramik is offline
 
Join Date: Apr 2006
Location: Sydney.Australia
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

damn I really need this hack... anything similiar? for displaying latest members, threads, online users etc?
Reply With Quote
  #318  
Old 06-08-2006, 04:42 PM
C.Birch C.Birch is offline
 
Join Date: Apr 2002
Posts: 459
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

got a error when running on 3.6

any ideas?

Fatal error: Call to undefined function: query_read_slave() in /home/forumls/public_html/includes/class_bbcode.php on line 198
Reply With Quote
  #319  
Old 06-08-2006, 04:54 PM
[email protected] vbmenu_register("postmenu_1002275", true);
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by C.Birch
got a error when running on 3.6

any ideas?

Fatal error: Call to undefined function: query_read_slave() in /home/forumls/public_html/includes/class_bbcode.php on line 198
was it working on 3.54? if so, can you post what you did or your fixed release?
Reply With Quote
  #320  
Old 06-08-2006, 05:29 PM
C.Birch C.Birch is offline
 
Join Date: Apr 2002
Posts: 459
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

it was working on 3.5.4 for me and i did not have to edit anything, i only got a prob when updating to 3.6
Reply With Quote
  #321  
Old 06-08-2006, 05:54 PM
Jesus05uk Jesus05uk is offline
 
Join Date: Feb 2006
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm getting a database error.
http://www.gmodcentral.com/gmod/index2.php
I even tried adding

Code:
require_once('/home/gmodcent/forums.gmodcentral.com/includes/config.php');
Reply With Quote
Reply


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:35 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.04691 seconds
  • Memory Usage 2,318KB
  • 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
  • (7)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
  • (2)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
  • (9)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