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 |
#422
|
|||
|
|||
I need add this code to php file but doesn't work.
$ch = curl_init ("http://www.domain.name?".$QueryString); curl_setopt ($ch, CURLOPT_HEADER, 0); curl_exec ($ch); if(curl_error($ch)) echo "Error processing request"; curl_close ($ch); But if I comment this line it works, but is not a vbulletin page anymore :-( eval('print_output("' . fetch_template('my_template') . '");'); I've solved the problem. |
#423
|
||||
|
||||
loook i made this .... but need ur help .
hi ! i have a little problem in reading and viewing some html from my database which i make it .... acually iam trying to make some differnt hack which can read templates from the database instead to include it to the style templates the idea comes to me when i was trying to add some html templates to the style and i saw that its from the stupidity to add a houndred templates to a styles so it will make the forum style very heavy for me . any way here is the idea .... i create that Code:
CREATE TABLE `testdb` ( `id` int(10) unsigned NOT NULL auto_increment, `name` varchar(50) NOT NULL default '', `descr` varchar(50) NOT NULL default '', `content` text NOT NULL, PRIMARY KEY (`id`) ) TYPE=MyISAM; i have more than 100 id with 100 full html text pages for that . so i make a php file with a name of test.php and include that code inside it : PHP Code:
while browseing the file , a blank page appears to me !!!1 so ........... if i include 'test_h' template to the style it will open it nicely but i need to read from my database by its id so to browse is as its browsed from the style it self:- now if i want to read the templates from my styles i just make that changes // pre-cache templates used by all actions PHP Code:
PHP Code:
and off couse the test_h template is included and it tooks a style like that :- Code:
$stylevar[htmldoctype] <html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]"> <head> <!-- no cache headers --> <meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Expires" content="-1" /> <meta http-equiv="Cache-Control" content="no-cache" /> <!-- end no cache headers --> <title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title> $headinclude </head> <body> $header $navbar <!-- html codes begins here--> <!-- html codes ends here --> $footer </body> </html> |
#424
|
||||
|
||||
Hi Guys!
I read this: https://vborg.vbsupport.ru/showthread.php?t=98009 But I can't get it working. It's about this page: http://www.nucia.nl/forum/donatie.php So what I do is: Quote:
Quote:
|
#425
|
|||
|
|||
Mine does that, but the page looks good and works - that's the important part to me. The location thing is nothing more than an annoyance at the moment.
|
#426
|
|||
|
|||
how can i let only people that are logged in see this page?, and if not logged in it will take them to the log in page, or the page of choice.
*sorry for the newbie question* |
#427
|
|||
|
|||
Guessing some have more constructive things to do than nail others - or some of us don't really grow up huh?
|
#428
|
|||
|
|||
Quote:
|
#429
|
||||
|
||||
blackwidow and Jordan17: Try somehting like this:
Code:
<?php if (!$vbulletin->userinfo['userid']) { header("Location: http://www.redirected_page.com/"); exit; } ?> |
#430
|
||||
|
||||
thanks
|
#431
|
|||
|
|||
I made the php file and the template exactly as you described and when I point my url to test.php I get this
Code:
Warning: Division by zero in /includes/functions.php(4320) : eval()'d code on line 98 |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|