The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vBExternal v1.6 Details »» | |||||||||||||||||||||||||
Alright, the people waiting for the quiz hack are gonna kill me for making this while i'm supposed to be developing v2.. heh.
Anyway, welcome to vBExternal, the answer to all your questions of "how can i get this to show on my website from my forum?" vBExternal provides you the user with the availability to include several forms of information from your own forum, on your own website, with minimal work required! UPDATE - 1.5: This update provides more stability, the vBExternal file will only call 1 query for $vboptions and 1 query for the action, a maximum potential of 2 queries (some may execute 3 dependant on functionality used) UPDATE - 1.6: Several minor bugs fixed, 2 main one's were users online (repeating names) and emoticons (being red x's). Also using vBExternal is completely different as to before (the download contains instructions on how to set up vBExternal the new way) To update: Re-upload vBExternal.php Features:
Installation: All you have to do is upload a few files, no running an installer, no file edits, no template additions/edits, nothing!! Resources: The system uses the default 1 vB queries onload, and then only ONE additional query (if action is successful) Using vBExternal: First of all, your site will have to be php, if your site is say .htm/.html, no worries, just rename the file type to .php, it will all be the same. Then read 'Usage Instructions' contained within the download to see how to set it up Customizing HTML Output: Go inside yourforumdir/vBExternal/ You'll find a few HTML files, these files are the template "structure" for each action, you can change the HTML to your own liking, however leave in the macro's --> {bla} (These are swapped with data called from your forum) I think that's it really, really simple, really easy to use, so there ya go PS: Feel free to send me any donations, my paypal is: webmaster@gzevolution.net Enjoy, - Zero Tolerance Show Your Support
|
Comments |
#72
|
||||
|
||||
does this work on 3.0.3?
|
#73
|
|||
|
|||
Well I made a little mod to it that I hope ZT approves and some may like.
I just wanted to display a certain number of characters from the post on my news page, so I made this modification. UPDATED: Updated text file to include "...read more." link |
#74
|
|||
|
|||
Find this:
Code:
'threadname' => $News['title'], Code:
'threadname' => substr($News['title'],0,15), |
#75
|
|||
|
|||
Quote:
still need help with this |
#76
|
|||
|
|||
ok here what i got
Warning: chdir(): No such file or directory (errno 2) in /home/virtual/clubexl/public_html/liqid/indexindex.php on line 2 in the file i change chdir('./forums'); to chdir('./vb'); because my root folder for my vb is called 'vb' so whats wrong here? also i changed require_once('./vBExternal.php'); to require_once('http://clubexl.com/vb/vBExternal.php'); Could this be the culprate? |
#77
|
|||
|
|||
YES
Don't change: PHP Code:
|
#78
|
|||
|
|||
Fatal error: Call to a member function on a non-object in /htdocs/www/vBExternal.php on line 235
|
#79
|
|||
|
|||
how often does this refresh the info?
i set it up on a test page and it shows nicely however i went and posted a new thread also posted a new message and the information showing did not change.... also when the info displays it says Thread: Big Morillo Fan!!!Thread Starter: ILUVMORILLO Replies: 2 Views: 9 Last Post: clubexl ? ----------- what can i change in the array to have it NOT display the following Replies: 2 Views: 9 Last Post: clubexl ? and only display NEW THREAD Thread: Big Morillo Fan!!! you can see this in use as a test here www.clubexl.com/maintest.php |
#80
|
|||
|
|||
Quote:
HTML Code:
<fieldset> <legend>Thread: <a href='{url}/showthread.php?t={threadid}'>{threadname}</a></legend> <table cellpadding='0' cellspacing='0' border='0'> <tr> <td width='1%' style='white-space:nowrap'><b>Thread Starter:</b></td> <td width='1%' style='white-space:nowrap'><a href='{url}/member.php?u={postuserid}'>{postusername}</a></td> </tr> <tr> <td width='1%' style='white-space:nowrap'><b>Replies:</b></td> <td width='1%' style='white-space:nowrap'>{replies}</td> </tr> <tr> <td width='1%' style='white-space:nowrap'><b>Views:</b></td> <td width='1%' style='white-space:nowrap'>{views}</td> </tr> <tr> <td width='1%' style='white-space:nowrap'><b>Last Post:</b></td> <td width='1%' style='white-space:nowrap'><a href='{url}/member.php?find=lastposter&t={threadid}'>{lastposter}</a> <a href='{url}/showthread.php?t={threadid}&goto=lastpost' title='Go To Last Post'>?</a></td> </tr> </table> </fieldset> HTML Code:
<tr> <td><font color='Blue'>Thread: <a href='{url}/showthread.php?t={threadid}'>{threadname}</a></td> </tr> PHP Code:
PHP Code:
|
#81
|
|||
|
|||
Am I missing something here:
I want to create a function called: PHP Code:
PHP Code:
HTML Code:
<fieldset> <legend>Login :</legend> <form action="{url}/login.php" method="post" onsubmit="md5hash(vb_login_password,vb_login_md5password)"> <script type="text/javascript" src="{url}/clientscript/vbulletin_md5.js"></script> <table cellpadding="0" cellspacing="3" border="0"> <tr> <td>UN: </td> <td><input type="text" class="button" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="1" value="User Name" onfocus="if (this.value == 'User Name') this.value = '';" /></td> <td colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="3" id="cb_cookieuser_navbar" accesskey="c" checked="checked" />Remember Me?</label></td> </tr> <tr> <td>PWD: </td> <td><input type="password" class="button" name="vb_login_password" size="10" accesskey="p" tabindex="2" /></td> <td><input type="submit" class="button" value="Log in" tabindex="4" title="Enter your username and password in the boxes provided to login, or click the 'register' button to create a profile for yourself." accesskey="s" /></td> </tr> </table> <input type="hidden" name="s" value="" /> <input type="hidden" name="do" value="login" /> <input type="hidden" name="forceredirect" value="1" /> <input type="hidden" name="vb_login_md5password" /> </form> </fieldset> It is not displaying the username or anything. Additionally, I want to add a conditional to one of the functions for an admin sub-function by determining the usergroupid membership and that too does not work. HELP ZT HEEEELP!!!! |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|