Log in

View Full Version : Integration with vBulletin - Adding new pages


ultimatearco
03-01-2010, 10:00 PM
----------------
This was moved to articles, in my opinion INCORRECT this is original and by me!
----------------


----------------
Installed! (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=237309) I don't work for nothing; please press installed if you used my addon; I won't support you either if you have a problem then!
----------------

Hello all,
In this tutorial i'm going to show you how to make extra pages
Note:

Go into your Admincp, klick Styles & Templates, klick Style Manager, klick your template that your'e working with, hover your mouse to the dropdown menu and klick, klick Add Template

Give your template a name:
(like gallerytemplate)
and add this code to it:
$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">Tutorials</td>
</tr>
<tr>
<td class="alt1">
<!-- html code here -->
PUT THE HTML CODE YOU WANT HERE
<!-- end of html code -->
</td>
</tr>
</table>
$footer
</body>
</html>

Search for:
<!-- html code here -->
and add some stuff like:
<p>Hello, this is my gallery</p><br>
<img src="yourimages" border="0"></img><br>
<p>^^My favorite picture^^
You can allways do anything else ;)

Now save it, were nothing with that
Now we are going to make the PHP file
Open notepad
add this code in it
<?php

// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'privacy'); // 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(
'privacytemplate',
);

// pre-cache templates used by specific actions
$actiontemplates = array(

);

// ######################### REQUIRE BACK-END ############################
require_once('./global.php');

// ################################################## #####################
// ######################## START MAIN SCRIPT ############################
// ################################################## #####################

$navbits = array();
$navbits[$parent] = 'name';

$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('templatename') . '");');

?>
Note: Allways put this on the root directory of the forum otherwise you will have problems with the images
Find: define('THIS_SCRIPT', 'scriptname'); // change this depending on your filename
Change privacy (keep the ' ') to the name of your file (without .php after it)

Find: $navbits[$parent] = 'name';
Change name (keep the ' ') to whatever you want

Find: eval('print_output("' . fetch_template('templatename') . '");');
Change templatename (keep the ' ') to the template you just made

Save it to whatever you want (Make sure its the same name as in edit 1 (scriptname) and with .php after it)

Upload it to your webserver and your'e done!

If you want it to appear it into your navbar i suggest to:
Use my Navbar Edit mod (https://vborg.vbsupport.ru/showthread.php?t=194704) (for all vB versions) (Manual code changes)
Or to download the double navigation bar mod

ultimatearco
03-02-2010, 06:14 PM
V1.0.1 BETA - Pre-release, being tested
V1.5.0 BETA - Bugfixes; PHP should work now!
V1.5.1 BETA - Added functionality for lower versions (3.6.x and higher!)
V2.0.0 BETA - Minor BugFixes; almost out of beta now! Current release

ultimatearco
03-02-2010, 06:15 PM
Pm me for any support; I will TRY to help you!

Make sure you READ CORRECTLY, I will not help you if you didn't follow the guide correctly..

If you're getting xhtml errors or PHP errors; check your code.. Please! I will not fix a broken html/php tag for you..

ultimatearco
03-03-2010, 02:02 PM
!!Latest update!!

Yeah! Now our script supports PHP, for flexibility, and so on!

Please report bugs..

rootshell-vb
03-14-2010, 04:02 PM
Works like a charm :)

KelliH
04-27-2010, 01:21 PM
Sweet, thank you for this!

Jaber190
05-07-2010, 12:35 PM
thanks man .

ultimatearco
05-29-2010, 09:01 AM
No problem guys.. New release

Mr Gixxer
05-29-2010, 12:45 PM
Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: navbar in [path]/includes/functions.php on line 3957

Frank Sinatra
05-29-2010, 07:31 PM
Thanks a lot, I would consider this very useful, but i remember some members say that including php in a template could be a little unsecure. Is that correct?

Morrus
06-01-2010, 12:33 PM
please press installed if you used my addon; I won't support you either if you have a problem then!


You won't offer support if we press install?

ultimatearco
06-11-2010, 03:37 PM
You won't offer support if we press install?

If you don't we won't provide support

Brandon Sheley
06-11-2010, 04:28 PM
isn't this the exact same as this article (https://vborg.vbsupport.ru/showthread.php?t=62164) from 2004?

marshal_ramdev
06-11-2010, 07:39 PM
yeah same question .. what's the difference ?

RedDevil
06-12-2010, 07:07 AM
How would you add view permissions based on usergroup to this. or mainly no guest viewing permission.

EDIT: its ok sorted the problem

oldfan
06-13-2010, 01:41 AM
thanks, but I have a question..
I'm having problems creating my custom page, I'm trying to add tables with the page?
see picture.

ultimatearco
06-22-2010, 12:53 PM
thanks, but I have a question..
I'm having problems creating my custom page, I'm trying to add tables with the page?
see picture.

Just do a line break and it'll work fine