vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   vBExternal v1.6 (https://vborg.vbsupport.ru/showthread.php?t=83005)

boduzapho 03-26-2006 09:39 PM

Quote:

Originally Posted by Larrysw
I just updated my post try it if it doesn't work I'll PM you the code I have.


Ok i got it to work sort of, found the new code, installed on a FRESH copy of VB 3.5.4, now seeing this:
------------------------------------------------------------------------
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.
------------------------------------------------------------------------

weird... it is a fresh clean install, weird..

boduzapho 03-27-2006 08:49 PM

Quote:

Originally Posted by boduzapho
Ok i got it to work sort of, found the new code, installed on a FRESH copy of VB 3.5.4, now seeing this:
------------------------------------------------------------------------
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.
------------------------------------------------------------------------

weird... it is a fresh clean install, weird..


Ok its working, sort of...


Quote:

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

<fieldset>
<legend>News Article: <a href='{url}/showthread.php?t={threadid}'>{threadname}</a></legend>
<table cellpadding='0' cellspacing='0' border='0' width='100%'>
<tr>
<td width='100%'>{post}</td>
</tr>
<tr>
<td width='100%' style='white-space:nowrap'><span style='float:right'>[Comments: {comments}]</span>
<b>Posted By:</b> <a href='{url}/member.php?u={postuserid}'>{postusername}</a></td>
</tr>
</table>
</fieldset>
this is the page I am using, but it is not producing any data....

The site is running off of an active forum, there are users, new posts ect...

any suggestions?

boduzapho 03-27-2006 09:55 PM

Never mind, re did the hack in ASP, works good for me

webgeek247 03-27-2006 10:05 PM

Quote:

Originally Posted by boduzapho
Ok its working, sort of...




this is the page I am using, but it is not producing any data....

all I get is this

http://63.209.191.131/info.php

The site is running off of an active forum, there are users, new posts ect...

any suggestions?

Firstly create a blank php file and copy this into it

Code:

<?php
echo getcwd();
?>

name this path.php, upload it to your webservers root and point your browser at it and this will tell you your servers path.

Now enter that path into chdir and require once also naming the location of your servers root and forum folder

Code:

<?php
chdir('/xxx/xxx/x/xxxx/xxxx/forum_root_folder/your_forum_folder');
require_once('/xxx/xxx/x/xxxx/xxxx/forum_root_folder/your_forum_folder/vbexternal.php');
?>

this needs the full path

enter this inbetween

Code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
chdir('/xxx/xxx/x/xxxx/xxxx/forum_root_folder/your_forum_folder');
require_once('/xxx/xxx/x/xxxx/xxxx/forum_root_folder/your_forum_folder/vbexternal.php');
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

</head>
<body>
<!-- Where output code goes -->

<?php
output_TopPosters(5);
?>

<?php
output_NewestMembers(5);
?>
<!-- etc etc -->
</body>
</html>

the other code you have there has to be in a external .html file within your vbexternal folder

also make sure your vbexternal folder is the same lettercase as your path eg. if its vbexternal name your path that otherwise if its vBexternal (note the capital B, name it like that)

hope that helps :)

blacklancer 03-31-2006 10:32 PM

ok...i finally got rid of errors, but now, nothing is showing up. my normal html is showing up fine, but none of the php info. i'm completly lost right now.........

i attached my index.php, and my website is www.sclc.net.

someone please help!! https://vborg.vbsupport.ru/external/2006/12/8.gif https://vborg.vbsupport.ru/external/2006/12/8.gif

Paul_Hollibone 04-02-2006 06:38 AM

Question.

I am running a site which uses vb 3.5.4, and it is also using this script as a login script.
PHP Code:

        <? 



if ($vbulletin->userinfo['userid']!=0) { 
$username=$vbulletin->userinfo['username']; 
   
print("<align='center'><span class='sectionheader'>Welcome back, $username!<br>"); ?>
        <? 

} else { 
  


?>
      </p>
      <form action='/forums/login.php' method='post' class="style46" onsubmit='md5hash(vb_login_password,vb_login_md5password)'>
        <p align="center" class="inbottom">
          <script type='text/javascript' src='/forums/clientscript/vbulletin_md5.js'></script>
          <span class="style57">Username:</span><span class="style57">
          <input type='text' class='button' name='vb_login_username' id='navbar_username' size='15' accesskey='u' tabindex='1' value='' onfocus='if (this.value == 'username="username"') this.value = '';>
          <br />
          Password:
          <input type='password' class='button' name='vb_login_password' size='15' accesskey='p' tabindex='2' />
          <br />
          <input type='checkbox' name='cookieuser' value='1' tabindex='3' id='cb_cookieuser_navbar' accesskey='c' />
          Remember Me</span><br />
          <input name="submit" type='submit' class='button' accesskey='s' tabindex='4' title='Log In' value='Log In' />
          <input type='hidden' name='do' value='login' />
          <input type='hidden' name='forceredirect' value='1' />
          <input type='hidden' name='vb_login_md5password' />
        </p>
      </form>
      <div align="left" class="style46">
        <div align="center">
          <p><a href="/forums/register.php?"><span class="inbottom">Support ThrillHistory.com &amp; Register Today. It only takes two Minutes! </span></a>
              <? 



?>

Which also uses this.
PHP Code:

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

Now I have tried many times to implement a few of these enhancments onto my website, however I am greeted with the Vbulletin DB error page. Any help?

Sean James 04-07-2006 11:55 AM

i have tried almost everything and for some reason i cant get a stylesheet to work with this, internal or external.

Charmedfan 04-08-2006 03:33 PM

Is there any solution to show HTML on the external page?

djjeffa 04-08-2006 05:26 PM

still wonderin if anyone got this to work on a diffrent domain?

pewp 04-17-2006 01:53 PM

is there anyway to make the news output keep stickied threads at the top of the output?


All times are GMT. The time now is 12:34 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01454 seconds
  • Memory Usage 1,761KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (2)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete