The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
How to create your own vBulletin-powered page! (uses vB templates)
Want to create your very own vBulletin powered page which includes the header, footer, and the user permissions system as well? Well now you can Want to know how it will look? Take a look at the attached screenshot below! Now includes the Who's Online modification! Also, instructions included on how to create your own pages that are integrated with current vBulletin files! I'm going to give you a generic page but you can easily modify the contents of the page by changing the template So here we go Instructions: Create a new file, whatever you want to call it (let's say test.php). Open up test.php and add the following (replace TEST with whatever template you want to show): PHP Code:
Now create the template, called TEST with the following content: HTML Code:
$stylevar[htmldoctype] <html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]"> <head> <title>$vboptions[bbtitle]</title> $headinclude </head> <body> $header $navbar <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td class="tcat">Title</td> </tr> <tr> <td class="alt1">Text</td> </tr> </table> $footer </body> </html> Now check it out by going to test.php Who's Online Modification Now if you want to show who is browsing this new page of yours, just open up includes/functions_online.php and find: PHP Code:
PHP Code:
Then find: PHP Code:
PHP Code:
---------------------------------- Also if you want to create your own pages 'within' current vBulletin files, do the following: Open the file you want, and then right before the final ?> in the source code, add the following: PHP Code:
edit by Lynne: If running 3.8.4 or above, see this post to take care of the PHP 5.3.0-related problems - https://vborg.vbsupport.ru/showpost....postcount=1171 |
#1262
|
||||
|
||||
Well, your code goes after the section where it says START MAIN SCRIPT. Save the results of your code into variables, register them, and call them in the template.
|
#1263
|
|||
|
|||
Thnx a lot, Now i got some idea.
--------------- Added [DATE]1274196333[/DATE] at [TIME]1274196333[/TIME] --------------- can you please tell me how to dislpay registered variables in php??? what is proper code??? i am using VB4 --------------- Added [DATE]1274196683[/DATE] at [TIME]1274196683[/TIME] --------------- This Is My Code include "connect.php"; $query = "select * from plants"; $result = mysql_query($query); $row = mysql_fetch_array($result); $templater->register('query', $query); $templater->register('result', $result); $templater->register('row', $row); if(mysql_num_rows($result) > 0) { while($row = mysql_fetch_array($result)) { echo "data found"; } } else { echo "No Record With These Parameters"; } |
#1264
|
||||
|
||||
You're in the wrong thread completely. This is for vB3, but you are using vB4 and thus followed a completely different tutorial. You really need to do some reading on how to register variables for vB4 (there's a tutorial for that, too), and then ask in your own thread. This is totally off topic here, and I won't continue answering in this thread. Before doing so: Please use code or php tags if posting code, and please read the article I linked you to regarding the vB database classes. If doing database operations insinde vB, you really should use them.
|
#1265
|
|||
|
|||
|
#1266
|
|||
|
|||
hello my test.php is like this and gives some errors any help pls?
http://izmir.tr.kg/test.php ? any help? thank you... |
#1267
|
|||
|
|||
Does this work in VB4?
|
#1268
|
||||
|
||||
No. But the article in the vB4 Articles section does.
|
#1269
|
|||
|
|||
Could you please provide a link to that article, i can't find it
Thank you! |
#1270
|
||||
|
||||
It's on the first page of the vB4 articles section.
|
#1271
|
|||
|
|||
I'm having trouble getting this working.
Am getting the following errors (below). ======= Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: navbar in [path]/includes/functions.php on line 3957 Parse error: syntax error, unexpected T_STRING in /home/bostonwh/public_html/adhub1.php(42) : eval()'d code on line 1 Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: adhub1 in [path]/includes/functions.php on line 3957 ======= The last part of my custom php file (named adhub1.php) is as follows (see just below): (and I do have a template named 'adhub1'.) Line 42 - which is where the error msg points to - is the line there that contains '... fetch_template('navbar' ...' Any ideas ? I must be missing something simple. Thanks. // ############ START MAIN SCRIPT ################ $navbits = array(); $navbits[$parent] = 'adhub1'; $navbits = construct_navbits($navbits); eval('$navbar = "' . fetch_template('navbar') . '";'); eval('print_output("' . fetch_template('adhub1') . '");'); ?> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|