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 |
#622
|
|||
|
|||
I was able to make the page but the WOL part is showing unknown location. Here is what I put into functions_online.php
case 'store.php': $userinfo['activity'] = 'store'; break; case 'store': $userinfo['action'] = 'Viewing Shattered Planet Store'; break; Also, is there a way to integrate this page into VBA or at least insert a module from VBA? I have a site navigation module I'd like to add on the left side. Thanks. |
#623
|
|||
|
|||
Opened Notepad.
Created test.php Pasted the code and changed test to 'FORUMDISPLAY' Saved to test server Opened Notepad Created test.html Pasted code Saved to test server Opened Browser and entered http://localhost/forum/test.php All I get is a blank page? Am I not using the right template? What am I supposed to be doing to make this work? Thanks |
#624
|
|||
|
|||
Quote:
It says "Now create the template, called TEST with the following content:". Templates can be created through the "Styles & Templates > Style Manager" in the AdminCP. |
#625
|
|||
|
|||
Hi folks,
I'm trying to learn as much as possible in as short a time as possible hehe. This thread is a great help. I would like to have a /forums/games.php page which contains thumbnails of flash games. I have created a template for each game, i.e. custom_game1, custom_game2, etc. I have insterted the line to call the template in the games.php file, i.e. Code:
eval('print_output("' . fetch_template('custom_game1') . '");'); I realise I could do this... Code:
forums/games.php?do=game1 I'm not looking for exact code, even a hint to a thread where I could learn it. Thanks Glen |
#626
|
|||
|
|||
Hey guys, quick Q here as this is really a good method, however this is my file structure:
Site Structure 1. www.website.com/index.php < Root 2. www.website.com/forums/index.php << Forum Root Forum is located in 2, trying to make a home page for the forum in 1 to display whenever someone visits the website introducing parts of the site and the forum. The forum will be one of the main parts of the site so I'd like for the forum menus and features to work. Below is my code: test.php PHP Code:
Template called TEST 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> HTML Code:
<meta http-equiv="Content-Type" content="text/html; charset=$stylevar[charset]" /> <meta name="generator" content="vBulletin $vboptions[templateversion]" /> <if condition="$show['threadinfo']"> <meta name="keywords" content="$threadinfo[title], $vboptions[keywords]" /> <meta name="description" content="<if condition="$pagenumber>1"><phrase 1="$pagenumber">$vbphrase[page_x]</phrase>-</if>$threadinfo[title] $foruminfo[title_clean]" /> <else /> <if condition="$show['foruminfo']"> <meta name="keywords" content="$foruminfo[title_clean], $vboptions[keywords]" /> <meta name="description" content="<if condition="$pagenumber>1"><phrase 1="$pagenumber">$vbphrase[page_x]</phrase>-</if>$foruminfo[description_clean]" /> <else /> <meta name="keywords" content="$vboptions[keywords]" /> <meta name="description" content="$vboptions[description]" /> </if> </if> <!-- CSS Stylesheet --> $style[css] <if condition="is_browser('opera') AND !is_browser('opera', '8.0.1')"> <style type="text/css"> ul, ol { padding-left:20px; } </style> </if> <!-- / CSS Stylesheet --> <script type="text/javascript"> <!-- var SESSIONURL = "$session[sessionurl_js]"; var IMGDIR_MISC = "$stylevar[imgdir_misc]"; var vb_disable_ajax = parseInt("$vboptions[disable_ajax]", 10); // --> </script> <script type="text/javascript" src="http://www.website.com/forums/clientscript/vbulletin_global.js?v=$vboptions[simpleversion]"></script> <if condition="$show['popups']"><script type="text/javascript" src="http://www.website.com/forums/clientscript/vbulletin_menu.js?v=$vboptions[simpleversion]"></script></if> <if condition="$vboptions['externalrss']"> <link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] RSS Feed" href="external.php?type=RSS2" /> <if condition="$show['foruminfo'] OR $show['threadinfo']"> <link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - $foruminfo[title_clean] - RSS Feed" href="external.php?type=RSS2&forumids=$foruminfo[forumid]" /> </if> </if> at the end of all of this, this is what I get: but its supposed to look like this: Can someone help? I've seriously read through this whole thing... |
#627
|
|||
|
|||
any help would be MUCH appreciated.
|
#628
|
|||
|
|||
Your images don't work.
|
#629
|
|||
|
|||
Still can't get mine going!!
Here's my Code: Code:
<?php // ####################### SET PHP ENVIRONMENT ########################### error_reporting(E_ALL & ~E_NOTICE); // #################### DEFINE IMPORTANT CONSTANTS ####################### define('NO_REGISTER_GLOBALS', 1); define('THIS_SCRIPT', 'test'); // change this depending on your filename // ################### PRE-CACHE TEMPLATES AND DATA ###################### // get special phrase groups $phrasegroups = array( ); // get special data templates from the datastore $specialtemplates = array( ); // pre-cache templates used by all actions $globaltemplates = array( 'test', ); // pre-cache templates used by specific actions $actiontemplates = array( ); // ######################### REQUIRE BACK-END ############################ require('./global.php'); // ####################################################################### // ######################## START MAIN SCRIPT ############################ // ####################################################################### $navbits = array(); $navbits[$parent] = 'Test Page'; $navbits = construct_navbits($navbits); eval('$navbar = "' . fetch_template('navbar') . '";'); eval('print_output("' . fetch_template('test') . '");'); ?> http://i228.photobucket.com/albums/e...lobalerror.jpg Any Ideas? |
#630
|
|||
|
|||
Its a bit obvious from the error what the problem is Diesel! The global.php file doesn't exist in the folder, read the error messages its not rocket science!
To solve it: PHP Code:
|
#631
|
|||
|
|||
Quote:
--------------- Added [DATE]1203892667[/DATE] at [TIME]1203892667[/TIME] --------------- Still doesn't work... |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|