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
  #282  
Old 04-17-2006, 08:20 PM
C.Birch C.Birch is offline
 
Join Date: Apr 2002
Posts: 459
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this no longer works with 3.5.4:

just get a page that says:

HTML Code:
There seems to have been a problem with the database.
Please try again by clicking the Refresh button in your web browser.

An E-Mail has been dispatched to our Technical Staff, whom you can also contact if the problem persists.

We apologise for any inconvenience.
and when you view its code it as:

PHP Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html>
<
head>
    <
titleDatabase Error</title>
    <
meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <
style type="text/css">
    <!--
    
blockquote margin-top75px; }
    
font11px tahomaverdanaarialsans-serif; }
    -->
    </
style>
</
head>
<
body>
    <
blockquote>
        <
blockquote>

            <
p><strong>There seems to have been a problem with the  database.</strong><br />
                
Please try again by clicking the <a href="#" onclick="window.location = window.location;">Refresh</abutton in your web browser.</p>
            <
p>An E-Mail has been dispatched to our <a href="mailto:">Technical Staff</a>, whom you can also contact if the problem persists.</p>
            <
p>We apologise for any inconvenience.</p>

            
<!--
Database error in vBulletin :

mysql_connect(): Access denied for user'***********@localhost' (Using passwordYES)
/
home/*******/public_html/includes/class_core.php on line 279

MySQL Error  

Error Number 
Date         MondayApril 17th 2006 09:14:54 PM
Script       
http://forums.evo-network.com/topics.php
Referrer     
IP Address   : ************
Username     
Classname    vb_database
-->


        </
blockquote>
    </
blockquote>
</
body>
</
html
Reply With Quote
  #283  
Old 04-17-2006, 08:33 PM
C.Birch C.Birch is offline
 
Join Date: Apr 2002
Posts: 459
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok i fixed it, needed to add:

$config['MasterServer']['port'],

under

$config['MasterServer']['servername'],

in the vBExternal.php file
Reply With Quote
  #284  
Old 04-18-2006, 03:06 AM
furst furst is offline
 
Join Date: Dec 2005
Posts: 362
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can anyone explain to me how I can get this to work with 3.5.4? I want to display newest replies underneath my navbar.

I put this underneath my $navbar in forumhome after uploading all the files but it didn't do anything at all. What am I doing wrong?

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

<?php
output_NewestReplies(5,"72,66");
?>
Reply With Quote
  #285  
Old 04-23-2006, 07:08 PM
Jay... Jay... is offline
 
Join Date: Jan 2006
Location: Sunderland, UK
Posts: 351
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can someone explain how i can get this to work with the external login deluxe system?

<?php
chdir("./forums");
require_once('./vBExternal.php');
require('./global.php');
chdir("../");

there seems to be problems when index.php requires both files. im sure someone must know
?>
Reply With Quote
  #286  
Old 04-24-2006, 02:00 AM
Dave-ahfb Dave-ahfb is offline
 
Join Date: Mar 2002
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Jay...
Can someone explain how i can get this to work with the external login deluxe system?

<?php
chdir("./forums");
require_once('./vBExternal.php');
require('./global.php');
chdir("../");

there seems to be problems when index.php requires both files. im sure someone must know
?>
I cannot for the life of me figure this out.
Reply With Quote
  #287  
Old 04-24-2006, 05:37 AM
Jay... Jay... is offline
 
Join Date: Jan 2006
Location: Sunderland, UK
Posts: 351
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

its got my head done right in!
Reply With Quote
  #288  
Old 04-24-2006, 04:57 PM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Jay...
Can someone explain how i can get this to work with the external login deluxe system?

<?php
chdir("./forums");
require_once('./vBExternal.php');
require('./global.php');
chdir("../");

there seems to be problems when index.php requires both files. im sure someone must know
?>
What happens when you require both? I mean errors, nothing? what?
Reply With Quote
  #289  
Old 04-24-2006, 05:02 PM
Jay... Jay... is offline
 
Join Date: Jan 2006
Location: Sunderland, UK
Posts: 351
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zachery
What happens when you require both? I mean errors, nothing? what?
Fatal error: Cannot redeclare runerror() in /home/donkedne/public_html/forums/vBExternal.php on line 169

thats the error i have, i have also attached my index page
Reply With Quote
  #290  
Old 04-24-2006, 05:22 PM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Look and see if and where runerror is declared.
Reply With Quote
  #291  
Old 04-24-2006, 05:37 PM
Jay... Jay... is offline
 
Join Date: Jan 2006
Location: Sunderland, UK
Posts: 351
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

heres the vBExternal.php file, i dont know what to look for, im not good with pohp you see
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:15 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.05385 seconds
  • Memory Usage 2,330KB
  • 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_html
  • (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
  • (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
  • (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