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
  #62  
Old 09-29-2005, 03:33 PM
chanzero chanzero is offline
 
Join Date: Jul 2003
Posts: 39
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Kusadasi-Guy
****** IMPORTANT - SECURITY PROBLEM!!!!!!!!!!!!! ******


Please delete your custom page that powered by vBExternal if you updated your forums to VB3.5-Gold! It is showing your database's password in error message.

instead of -> Access denied for user: 'username@localhost' (Using password: YES)

it is showing -> Access denied for user: 'your-db-password@localhost' (Using password: YES)

--------------
There is a slight problem with the script and i have a temporary solution.
-------------

****** TEMPORARY SOLUTION ******


find your old /includes/class_core.php file (VB3.5RC or Beta) and change the name (for example -> /includes/class_core-old.php) then upload to server.

then open vBexternal.php and
find :
require_once('./includes/class_core.php);
change to:
require_once('./includes/class_core-old.php);


as i said, this is a temporary solution but it is working.

gah, i don't have my old class_core. can anyone attach it here?
Reply With Quote
  #63  
Old 09-30-2005, 12:47 AM
solokron solokron is offline
 
Join Date: Mar 2003
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I was using this in 3.0x and upgraded to 3.5 and this version to find it does not work with gold. I don't have an old 3.5x class_core either.

Quote:
Originally Posted by chanzero
gah, i don't have my old class_core. can anyone attach it here?
Reply With Quote
  #64  
Old 09-30-2005, 01:10 AM
aus_dave aus_dave is offline
 
Join Date: Jan 2004
Location: Adelaide, Australia
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is this still supported by the author? I tried installing this yesterday to use with 3.5 and have run into the same database problems as others have.
Reply With Quote
  #65  
Old 09-30-2005, 01:51 AM
chanzero chanzero is offline
 
Join Date: Jul 2003
Posts: 39
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

here's class_core.php from 3.5 RC2 which worked for me

mods, if this is against the rules i apologize (and feel free to remove, obviously)
Reply With Quote
  #66  
Old 10-01-2005, 02:07 AM
solokron solokron is offline
 
Join Date: Mar 2003
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This old class_core results in DB connect issues for me.

Quote:
Originally Posted by chanzero
here's class_core.php from 3.5 RC2 which worked for me

mods, if this is against the rules i apologize (and feel free to remove, obviously)
Reply With Quote
  #67  
Old 10-01-2005, 07:08 AM
mark99 mark99 is offline
 
Join Date: Oct 2002
Posts: 61
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Try this one from my RC3, it's the one I use and is as close to GOLD release as you're going to get without the bug. Sadly this is no solution and I hope the author returns to this wonderful mod and fixes it since there's not much in the way of alternatives.

Remember to place it under the /includes dir as usual and change the call inside the vBE file to it.
Reply With Quote
  #68  
Old 10-03-2005, 06:49 PM
jugo jugo is offline
 
Join Date: Feb 2004
Location: Reading your emails.
Posts: 573
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

that is not the proper way to get this running.

That core file is crucial to vBulletin and by replacing the new one with an old one, may in fact create bigger problems for you.

I am going to install it on mine and play with it. If I can come up with a solution I willpost it here.
Reply With Quote
  #69  
Old 10-04-2005, 08:46 AM
phonexpo phonexpo is offline
 
Join Date: Sep 2005
Location: Dublin
Posts: 231
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm a bit lost on this one... :ermm:

My forum is at www.phonexpo.net/index.php & my main site is at www.phonexpo.net (welcome.html file name).

It says;

Quote:
How To Use vBExternal:
First the webpage you use it on must be php, if it is .htm/.html just re-name the extension to .php
Next step is to call the file, in this example we assume that your site is: http://hello.com, and your
forum is located at: http://hello.com/forums, so insert this code at the very top of our php file:
<?php
chdir('./forums');
require_once('./vBExternal.php');
?>
So do I have to change the welcome.html file name to welcome.php ?
Reply With Quote
  #70  
Old 10-04-2005, 10:33 AM
solokron solokron is offline
 
Join Date: Mar 2003
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That or parse html as php via a .htaccess rule.

At the moment this extension does not work with 3.5 gold anyhow so don't waste your time.

Quote:
Originally Posted by phonexpo
I'm a bit lost on this one... :ermm:

My forum is at www.phonexpo.net/index.php & my main site is at www.phonexpo.net (welcome.html file name).

It says;



So do I have to change the welcome.html file name to welcome.php ?
Reply With Quote
  #71  
Old 10-04-2005, 01:01 PM
phonexpo phonexpo is offline
 
Join Date: Sep 2005
Location: Dublin
Posts: 231
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ah ok, thanks for the reply...


Quote:
Originally Posted by solokron
That or parse html as php via a .htaccess rule.

At the moment this extension does not work with 3.5 gold anyhow so don't waste your time.
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 04:41 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.05299 seconds
  • Memory Usage 2,313KB
  • 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
  • (6)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_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