View Full Version : How to create your own vBulletin-powered page! (uses vB templates)
Gary King
03-03-2004, 10:00 PM
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 :D
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! :D
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
// ####################### 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_once('./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') . '");');
?>Be sure to change 'TEST' to the actual template name, and change 'test' to the filename. Also, change 'Test Page' to whatever you want to show in the navbar, such as 'Viewing Member Profile' (just an example).
Now create the template, called TEST with the following content:$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions</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>
All done :D
Now check it out by going to test.php ;)
[B]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: case 'bugs.php':
$userinfo['activity'] = 'bugs';
break;Below, add: case 'test.php':
$userinfo['activity'] = 'test';
break; (Be sure to change the values to your own!)
Then find: case 'modcplogin':
$userinfo['action'] = $vbphrase['moderator_control_panel_login'];
break;
Below add: case 'test':
$userinfo['action'] = 'Viewing Test Page';
break;All done! :D
----------------------------------
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:
if ($_REQUEST['do'] == 'xxx')
{
eval('print_output("' . fetch_template('TEMPLATE_XXX') . '");');
}Replace 'xxx' with whatever you want ?do= in the query string to be (for example, replace 'xxx' with 'showprofile' so then someone would type in example.php?do=showprofile to view this template.) Then of course, change TEMPLATE_XXX to your template name, it's that simple! :D
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.php?p=1871303&postcount=1171
alkatraz
03-04-2004, 10:20 PM
very cool
user permissions system as well
how would you go about using that?
also, would it be hard to pass the members username/id into this page? (sorry if thats an easy question)
SVTBlackLight01
03-04-2004, 10:23 PM
This is great! I assume the template standard condtionals will work here?
What's the best way to use this on a non-vb page?
dirtymerc
03-04-2004, 10:27 PM
Installed, works marvelously! Thank YOU SO MUCH!
TheAnt
03-04-2004, 11:14 PM
SVT. I believe that as long as global is called via the files, the conditionals will work.
Gary King
03-04-2004, 11:14 PM
This is great! I assume the template standard condtionals will work here?
What's the best way to use this on a non-vb page?
I'd suggest to copy the non-vB page content and copy into a template ;)
Gary King
03-04-2004, 11:15 PM
very cool
how would you go about using that?
also, would it be hard to pass the members username/id into this page? (sorry if thats an easy question)
You don't really have to worry about those, they are already in action ;)
Try it yourself - install this hack and you'll see the user/pass login part at the top :)
Also if guests are not allowed to view your forums, then they can't view these new pages you create, etc. :)
Zachery
03-05-2004, 12:38 AM
Wow Gary, great thing considering this is my tutorial :P
SVTBlackLight01
03-05-2004, 01:00 AM
I'd suggest to copy the non-vB page content and copy into a template ;)
What I'm saying is how can you make test.php (in this case) work outside the vBulletin directory?
Boofo
03-05-2004, 01:02 AM
Wow Gary, great thing considering this is my tutorial :PNow why doesn't that surprise me? That seems to be the norm around here. ;)
Gary King
03-05-2004, 01:05 AM
Now why doesn't that surprise me? That seems to be the norm around here. ;)
Wow thanks for following me around and saying these types of things as you please ;)
Anyways, what do you mean Zachery? That I copied your tutorial..? I never even knew you released one (to add to that, I never even seen you around here before ;))
For 'tutorials' such as generic as this one, I don't think that there is really any proprietorship for anyone since it can be displayed in many forms; I haven't seen yours but I bet that mine is at least noticeably different from yours.
Boofo
03-05-2004, 01:20 AM
Wow thanks for following me around and saying these types of things as you please ;)
Then be original. 90% of the hacks you have released for vB3 have been someone else's. I mean, look at your sig. You're working on vBWar for vB3? Have you even checked with Dark_Wizard to see if he minds?
Gary King
03-05-2004, 01:22 AM
Then be original. 90% of the hacks you have released for vB3 have been someone else's. I mean, look at your sig. You're working on vBWar for vB3? Have you even checked with Dark_Wizard to see if he minds?
Actually, for your information, I am working with Dark_Wizard on vBWar v3. We are in a partnership for this. Have you even taken a look at the vBWar site yet? ( http://vbwar.dpclan.us/forums/showgroups.php? )
Boofo
03-05-2004, 01:42 AM
Ok, 89%, then. Maybe you ought to put Helping with vBWar then, It is his hack.
Jagang
03-05-2004, 01:47 AM
oooh he got you on that one Boofo. ;)
Gary King
03-05-2004, 01:47 AM
Ok, 89%, then. Maybe you ought to put Helping with vBWar then, It is his hack.
Well I am working on vBWar for vB3, we are practically re-building it from the ground up. Him and I are the developers of vBWar for vB3, and yes he knows that I know that he has put more time into it than I have, but mainly because I joined him only after he already had many of the things working, if not completely 100%. Anyways, this would be between me and him, and truly, it doesn't really matter what it says in my signature in my opinion, it's the final product that counts ;)
Boofo
03-05-2004, 02:02 AM
Not even close. He still couldn't do an original hack if he had to. He has to partner with someone who has a hack that IS original. You figure out the math.
Gio Takahashi
03-05-2004, 02:12 AM
Come on guys, regardless that this is original or not, he still took the time to come up with this, and you gotta give him credit for that. this guy put in everything in a test page including headers and such, I found that very helpful.
SVTBlackLight01
03-05-2004, 02:17 AM
So is this a hack or just a debate over who is stealing what from who? Either way, it's a vb.org staff issue, so if there is a problem click here (https://vborg.vbsupport.ru/report.php?p=482308).
I was looking for something like this and if there was already a tutorial, then I haven't seen it.
alkatraz
03-05-2004, 04:18 AM
So is this a hack or just a debate over who is stealing what from who? Either way, it's a vb.org staff issue, so if there is a problem click here.
^ amen.. too many hacks/threads/hackers have been spoiled over pointless public accusations. if there's a problem, report it to the staff and leave it at that
Gary W: thx for answering my question =)
Gary King
03-05-2004, 11:15 AM
^ amen.. too many hacks/threads/hackers have been spoiled over pointless public accusations. if there's a problem, report it to the staff and leave it at that
Gary W: thx for answering my question =)
No problemo :)
gmarik
03-05-2004, 04:18 PM
Not very promissing, waiting for somehting more fundamental ...
SVTBlackLight01
03-05-2004, 04:37 PM
What's the best way to use this on a non-vb page?
OK. To answer my own question, on line 32, I replaced
require_once('./global.php');
with this
chdir('/home/site/public_html/testvb/');
require('./global.php');
;)
surfhog
03-05-2004, 04:53 PM
Sorry newbie here, can some kind sole please explain what this is suppose to do.
I have created the test.php and called it and yes looks nice:) What is the template part for and how would you best make use of this please.
Thanks
lol well hush my mouth, I see now (-0-0-) ;)
Yes nice concept and thanks
monstergamer
03-05-2004, 07:04 PM
i have done some thing like this a while ago and i loe it as i use it for my affialites and rules page
Gary King
03-05-2004, 07:35 PM
Not very promissing, waiting for somehting more fundamental ...
This is as basic as it gets ;)
dpakman91
03-05-2004, 08:04 PM
alright, hopefully someone can help me with this:
i have some large files i want to make available to certain usergroups, but not other. the files are way too large to upload as "attachments" with vb so i would have to upload them via ftp and then just post a link in a thread...of course this means the only way to prevent people from downloading it is to prevent them from seeing the thread at all, which is not my intention.
with this new way of making a vb page, is there any way to do what i am trying to do?
any help would be great.
Gary King
03-05-2004, 10:42 PM
alright, hopefully someone can help me with this:
i have some large files i want to make available to certain usergroups, but not other. the files are way too large to upload as "attachments" with vb so i would have to upload them via ftp and then just post a link in a thread...of course this means the only way to prevent people from downloading it is to prevent them from seeing the thread at all, which is not my intention.
with this new way of making a vb page, is there any way to do what i am trying to do?
any help would be great.
Try something like:
<?php
require_once('./global.php');
if ($_REQUEST[filename])
{
if ($bbuserinfo[usergroupid] == 6)
{
header("Location: $_REQUEST[filename]");
}
}
?>
Be sure to change the path to the global.php and the usergroupid as well (currently it's 6 for admins only).
Also, save this code in a file such as download.php and then you can use the file by linking to it like www.example.com/forum/download.php?filename=something.php which will download www.examlpe.com/forum/files/something.php if the user is an administrator.
Ryan Ashbrook
03-05-2004, 10:55 PM
Nice job although I think personally this would be a template mod rather than a hack, since no vBulletin files were modified.
Still good job though. ;)
The Watcher
03-05-2004, 11:44 PM
This looks promising gary -> a few questions !!!
1) How can I use this outside my forums directory? Do i just use this?
chdir('/home/site/public_html/forums/');
require('./global.php');
2) How can I limit access to this page to only users in the usergroups 7, 8 and 9 ?
3) I have a php links script which I would like integrated into my forums in terms of the way it looks and the way only certain usergroups can access it. Can i use your hack to do this? If so, how I would I make a php page appear in the content area instead of the TEST template ???
Thanks again :)
Gary King
03-06-2004, 12:15 AM
This looks promising gary -> a few questions !!!
1) How can I use this outside my forums directory? Do i just use this?
chdir('/home/site/public_html/forums/');
require('./global.php');
2) How can I limit access to this page to only users in the usergroups 7, 8 and 9 ?
3) I have a php links script which I would like integrated into my forums in terms of the way it looks and the way only certain usergroups can access it. Can i use your hack to do this? If so, how I would I make a php page appear in the content area instead of the TEST template ???
Thanks again :)
1) correct
2) replace $bbuserinfo[usergroupid] == 6 with $bbuserinfo[usergroupid] == 7 or $bbuserinfo[usergroupid] == 8 or $bbuserinfo[usergroupid] == 9
3) Replace eval('print_output("' . fetch_template('TEST') . '");'); with your PHP stuff.
VeoMorphine
03-07-2004, 01:23 PM
Try something like:
<?php
require_once('./global.php');
if ($_REQUEST[filename])
{
if ($bbuserinfo[usergroupid] == 6)
{
header("Location: $_REQUEST[filename]");
}
}
?>
Be sure to change the path to the global.php and the usergroupid as well (currently it's 6 for admins only).
Also, save this code in a file such as download.php and then you can use the file by linking to it like www.example.com/forum/download.php?filename=something.php which will download www.examlpe.com/forum/files/something.php if the user is an administrator.
I just want to make a correctiion to your code:
You use if($bbuserinfo[usergroupid]. On vb3, there is a new is_member_of function, that will search your primary and secondary groups for that user. Here is how the code works with it.
<?php
require_once('./global.php');
if ($_REQUEST[filename])
{
if (is_member_of($bbuserinfo, 6) OR is_member_of($bbuserinfo, 5) OR is_member_of($bbuserinfo, 7));
{
header("Location: $_REQUEST[filename]");
}
}
?>
that makes it so usergroup 6 5 and 7 can download that file.
Gary King
03-07-2004, 01:33 PM
I just want to make a correctiion to your code:
You use if($bbuserinfo[usergroupid]. On vb3, there is a new is_member_of function, that will search your primary and secondary groups for that user. Here is how the code works with it.
<?php
require_once('./global.php');
if ($_REQUEST[filename])
{
if (is_member_of($bbuserinfo, 6) OR is_member_of($bbuserinfo, 5) OR is_member_of($bbuserinfo, 7));
{
header("Location: $_REQUEST[filename]");
}
}
?>
that makes it so usergroup 6 5 and 7 can download that file.
Ah okay thanks I never knew about that function :)
Davey-UK
03-07-2004, 01:55 PM
I like the idea of this, but looking around the Mod request pages, alot of people are looking for the last posts etc also to be displayed on a non vb page. I remember using something called API over at invision which was great. All you did was put includes in the page where you wanted specific things that were pulled from your board via templates which you could modify. Anyone know if something like this is going to be made? Gary W?
attroll
03-08-2004, 02:52 AM
I have been using this mod since VB 2. I see some changes. I don't care who wrote it. But I have two request.
1. I would like the new navbar that Beta 3 uses. Below the header in each page that I create.
2. I would like to see an icon or something on each page for a printable version.
SVTBlackLight01
03-08-2004, 04:49 AM
This looks promising gary -> a few questions !!!
1) How can I use this outside my forums directory? Do i just use this?
chdir('/home/site/public_html/forums/');
require('./global.php');
That works, but I discovered that you have to have the full URL for vbulletin_global.js and vbulletin_menu.js in the headinclude template. Otherwise the drop-down menus in the navbar will not work outside of the forum directory.
Osterling
03-08-2004, 08:56 AM
i hope some one answers my question here..
on the second part you say to make a template.. now what should i save the extention of my template..
for your ur example: test < should it have an exention be?
i am really new to php and all of it, so if you could please explain this 2 me, i'd be grateful
Gary King
03-08-2004, 11:08 AM
i hope some one answers my question here..
on the second part you say to make a template.. now what should i save the extention of my template..
for your ur example: test < should it have an exention be?
i am really new to php and all of it, so if you could please explain this 2 me, i'd be grateful
Templates don't have extensions :)
Osterling
03-08-2004, 11:09 AM
so if i create it in notepad and save it as test that will work?
Gary King
03-08-2004, 11:09 AM
I have been using this mod since VB 2. I see some changes. I don't care who wrote it. But I have two request.
1. I would like the new navbar that Beta 3 uses. Below the header in each page that I create.
2. I would like to see an icon or something on each page for a printable version.
1. already is there
attroll
03-08-2004, 01:17 PM
1. already is there
Gary W
If it is already there then why can't I see it? I see no navbar or anywhere where there is an option for a printable version. I did one of your mods and it did not show up. Here is the mod I did:
http://www.whiteblaze.net/forum/2004.php?
Gary King
03-08-2004, 06:39 PM
so if i create it in notepad and save it as test that will work?
Nope you have to make a new template by using the Template Manager in admin cp :)
Gary King
03-08-2004, 06:41 PM
Gary W
If it is already there then why can't I see it? I see no navbar or anywhere where there is an option for a printable version. I did one of your mods and it did not show up. Here is the mod I did:
http://www.whiteblaze.net/forum/2004.php?
*sigh* please don't bash hacks unless they truly don't work and it wasn't the installer's fault :)
Take a look at this screenshot, that's how it should look: https://vborg.vbsupport.ru/attachment.php?attachmentid=17205
Also, I never said I had included a printable version now did I? :)
Boofo
03-08-2004, 07:56 PM
Who's Online Modification
Now if you want to show who is browsing this new page of yours, just open up online.php and find:
You might want to change the file they should edit to /includes/functions_online.php instead of online.php. ;)
Gary King
03-08-2004, 11:05 PM
You might want to change the file they should edit to /includes/functions_online.php instead of online.php. ;)
Fixed now.
Boofo
03-08-2004, 11:31 PM
You're welcome. ;)
attroll
03-09-2004, 01:56 AM
Bump
Osterling
03-09-2004, 03:13 PM
greak hack got it working! only question.. is there a way to make it so when some one searches the forum, the pages i made are searched too?
Zachariah
03-09-2004, 03:40 PM
I was trying to add this to the php file and show up in the "TEST" template.
Can anyone could give me a hand on how to make it VB3 friendly. :cross-eyed:
<?
$contribreport=mysql_query("SELECT userid,username,contrib FROM user WHERE contrib='1' ORDER BY userid");
while(list($userid,$username,$contrib)=mysql_fetch _row($contribreport)){
?>
<table border='0' cellspacing='1' cellpadding='0' align='center'>
<tr>
<td align='center' width='100%'><a target='_blank' href='../forums/member.php?u=<? echo"$userid"; ?>'><font size='1' face='Verdana'><? echo" $username"; ?></font></a></td>
</tr>
<?
}
?>
</tr></td>
</td>
</tr>
</table>
Gary King
03-09-2004, 06:53 PM
greak hack got it working! only question.. is there a way to make it so when some one searches the forum, the pages i made are searched too?
No because search function only searches threads and posts anyways.
Gary King
03-09-2004, 06:55 PM
I was trying to add this to the php file and show up in the "TEST" template.
Can anyone could give me a hand on how to make it VB3 friendly. :cross-eyed:
<?
$contribreport=mysql_query("SELECT userid,username,contrib FROM user WHERE contrib='1' ORDER BY userid");
while(list($userid,$username,$contrib)=mysql_fetch _row($contribreport)){
?>
<table border='0' cellspacing='1' cellpadding='0' align='center'>
<tr>
<td align='center' width='100%'><a target='_blank' href='../forums/member.php?u=<? echo"$userid"; ?>'><font size='1' face='Verdana'><? echo" $username"; ?></font></a></td>
</tr>
<?
}
?>
</tr></td>
</td>
</tr>
</table>
PHP code goes in the file before outputting the TEST template, and HTML goes into the temlpate :)
Alien
03-09-2004, 07:07 PM
Very nice job on this, I finally got around to adding all the miscellaneous forum policies and a few subpages and this was just what the doctor ordered to accomplish it!
Thanks a lot!
b6gm6n
03-09-2004, 08:59 PM
Gary, looks like a great mod... i have a question though
Would it be possible to call an external html page to be included within instead of using templates?
Is there anything like this for vB2.3.X?
Gary King
03-09-2004, 09:03 PM
Gary, looks like a great mod... i have a question though
Would it be possible to call an external html page to be included within instead of using templates?
Well then there wouldn't be a header or footer, so no point in using this mod then :) I'd suggest copying the HTML and placing into the body of my template :)
Is there anything like this for vB2.3.X?
Is this like Logicians Template hack?
TCSoul
03-12-2004, 08:09 PM
Alright... vB newbie here, and this question is so basic, it almost makes me feel dirty...
Be sure to change 'TEST' to the actual template name, and change 'test' to the filename. Also, change 'Test Page' to whatever you want to show in the navbar, such as 'Viewing Member Profile' (just an example).
Now create the template, called TEST with the following content:$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>
All done :D
Now check it out by going to test.php ;)
Here's my (oh so humble :o ) question... I'm looking everywhere, and I'm very confused about templates, and the Template Manager. First of all, is the Template Manager the same thing as the Style Manager? And regardless of that, the above code doesn't look like somethign that would be dealt with in the Style Manager anyway... at least not anywhere I can find. Do I need to save this as a template file in my code source (can't find a place it would make sense for it to go), and if not, where would I drop it in in the Style Manager?
Gary King
03-12-2004, 09:11 PM
Alright... vB newbie here, and this question is so basic, it almost makes me feel dirty...
Here's my (oh so humble :o ) question... I'm looking everywhere, and I'm very confused about templates, and the Template Manager. First of all, is the Template Manager the same thing as the Style Manager? And regardless of that, the above code doesn't look like somethign that would be dealt with in the Style Manager anyway... at least not anywhere I can find. Do I need to save this as a template file in my code source (can't find a place it would make sense for it to go), and if not, where would I drop it in in the Style Manager?
Style Manager manages several styles. Each style contains hundreds of templates :) Let me know if that doesn't help, but should at least set you off on the right foot!
Ravenheart
03-12-2004, 09:24 PM
Style Manager > Click the drop down box > Edit templates :)
Is this like Logicians Template hack?
umm Gary, would you prefer me to PM these questions to you?
Zachery
03-13-2004, 04:49 AM
umm Gary, would you prefer me to PM these questions to you?
im suprised this thread has made it to 5 pages, this isnt even a hack... if you would like to learn you could try a link in my sig, also this could have bee much better done with a call to GENERIC_SHELL template using a second template ;)
gmarik
03-13-2004, 06:04 AM
Who is online system new variables should be in ACP MySQL DB, not the PHP files, I think ... for quicker eiditing ...
Zachery
03-13-2004, 06:27 AM
Who is online system new variables should be in ACP MySQL DB, not the PHP files, I think ... for quicker eiditing ...
Actually you need to add a few new lines of code to make whos online recgonize where you are :)
Gary King
03-13-2004, 12:58 PM
umm Gary, would you prefer me to PM these questions to you?
Closest thing I can think of is this: https://vborg.vbsupport.ru/showthread.php?s=&threadid=36600
Kakarot
03-15-2004, 12:40 AM
How would you get a straight HTML, non-vbulletin related page to show up on "Who's Online" on another forum (on the same server of course).
I'm assuming you must reference it to a PHP snippet of code that records Who's Online, but how would I go about doing it?
Gary King
03-15-2004, 01:49 AM
How would you get a straight HTML, non-vbulletin related page to show up on "Who's Online" on another forum (on the same server of course).
I'm assuming you must reference it to a PHP snippet of code that records Who's Online, but how would I go about doing it?
Just type in <?php require_once('global.php'); ?> at the top of the file (global.php being the one in forum so change accordingly.)
attroll
03-15-2004, 03:21 AM
*sigh* please don't bash hacks unless they truly don't work and it wasn't the installer's fault :)
Take a look at this screenshot, that's how it should look: https://vborg.vbsupport.ru/attachment.php?attachmentid=17205
Also, I never said I had included a printable version now did I? :)
Gary W
I am sorry if it looked like I was bashing the hack. That was the furthest thing from my mind. I just can not get the navbar thing to work. I followed your instructions and paisted the php code into the correct files. But I can not get the navbar to work.
You can look at my file buy going to this link. There is no navbar. Could you give me some advice?
http://www.whiteblaze.net/forum/test.php
I guess there was a misunderstanding about the printable version because in the previous post I asked two questions and your response was "already is there". So I asumed that was the answer to both questions. So I guess that was my bust?
https://vborg.vbsupport.ru/showpost.php?p=483409&postcount=40
attroll
03-15-2004, 03:29 AM
Gary W
I found out what happened. It was my fault that the navbar was not showing up. I deleted ths $navbar in the template by mistake. I am sorry about the misunderstanding.
But I would still like to see a option for a prinatble version added if it is possible.
Marulatree
03-15-2004, 02:03 PM
I just get a blank page;
I have put the test.php file in my forum root e.g. /forum/test.php
And I have created the template...
All I get is a blank page...???
Gary King
03-15-2004, 02:41 PM
I just get a blank page;
I have put the test.php file in my forum root e.g. /forum/test.php
And I have created the template...
All I get is a blank page...???
What's the template name? Use UPPERCASE not lowercase.
phenomenon
03-19-2004, 11:45 PM
I'm intrigued by this. I keep coming back to it, wondering if this is something that could be combined with Coppermine or with 4images to get the gallery integrated with the forum. I'm currently running 4images; it allows me to login etc. but logs me out as soon as someone else looks at the forum or the gallery. Drives me nuts. I'd like it to have the navbar across the top, but replace the search functionality with the gallery search (which I've done already once before I scrapped and started over -- basically built a search that looks like vbulletins but calls 4images code)
That gallery is installed into a different directory, but I see you've got the code here for the diff directory.
There is a hack that unfortunately no one is paying attention to anymore here that linked the user login/cp of vb3 to the 4images... so now what I'm curious about is getting basically this to work the other way around -- make the login/etc. work with the gallery.
Hmm... I suppose if I were to copy all the 4images html into these templates it may work.
SilverDawn
03-20-2004, 06:43 PM
great! I have been looking to get my custom pages to display correctly on who's online!
Thanks!
AshAbed
03-20-2004, 11:01 PM
is it possible to make it so test.php?page=xxx works? thanks
Gary King
03-20-2004, 11:10 PM
is it possible to make it so test.php?page=xxx works? thanks
Yes it's possible but it would be harder to explain and to make it work properly; why not just create a new file? :)
Grendel
03-21-2004, 05:00 PM
I try to put the "whats-going-on"-content of the forumhome-template into a custom template. Works fine - besides the "calender events". Is there any way to put the events on an "vBulletin-powered page"?
Greetings
Grendel
Gary King
03-21-2004, 05:20 PM
You'd have to copy the code in the file to produce the results for that; easiest thing to do would be to copy all of the contents of the index.php but remove the print_output() line.
Grendel
03-21-2004, 05:33 PM
That's what I had done.
It shows the statistics, online-users and birthdays. But the events are not shown :(.
Grendel
03-21-2004, 06:37 PM
Is there any chance to get the "Quick-Links" of the navbar running on "vBulletin-powered pages"? That would be nice.
Sorry, my fault. forgot the $navbar.
But the other problem exists nevertheless. ;)
Gary King
03-21-2004, 10:58 PM
Is there any chance to get the "Quick-Links" of the navbar running on "vBulletin-powered pages"? That would be nice.
Sorry, my fault. forgot the $navbar.
But the other problem exists nevertheless. ;)
Well I haven't looked into how the code creates the events data, but I suppose it would require more than index.php then. I will look into it when I have time, or maybe someone else could give it a go :)
AshAbed
03-21-2004, 11:02 PM
Yes it's possible but it would be harder to explain and to make it work properly; why not just create a new file? :)
I was using vBadvanced and had 100+ pages running through it, they're all saved as index_(pagename), I was hoping to be able to do this without making a page for each and keeping them named as index_pagename
Gary King
03-22-2004, 12:03 AM
Put the following, probably best place would be at the very end right before the ?>
if ($_REQUEST['do'] == 'xxx')
{
eval('print_output("' . fetch_template('TEMPLATE_XXX') . '");');
}
AshAbed
03-22-2004, 12:42 AM
http://www.maddpc.com/~ashraf/index.php
the index page works fine, I added the extra code you put to the end of index.php but when I put something like http://www.maddpc.com/~ashraf/index.php?page=psdmain I'm not brought to the template index_psdmain, how would this be done?
Grendel
03-22-2004, 08:52 AM
Well I haven't looked into how the code creates the events data, but I suppose it would require more than index.php then. I will look into it when I have time, or maybe someone else could give it a go :)
That would be great. I'll take a look as well, but I tried various things yesterday and none was working.
SVTBlackLight01
03-23-2004, 02:35 AM
http://www.maddpc.com/~ashraf/index.php
the index page works fine, I added the extra code you put to the end of index.php but when I put something like http://www.maddpc.com/~ashraf/index.php?page=psdmain I'm not brought to the template index_psdmain, how would this be done?
Have you gotten this to work? This could be useful for me as well.
AshAbed
03-23-2004, 10:14 AM
Have you gotten this to work? This could be useful for me as well.
unfortunatley I haven't, I'll work on it and tell you how it goes
Osterling
03-23-2004, 10:30 AM
is tehre a way to have it seach pages that are not off the forum?
Gary King
03-23-2004, 01:14 PM
Have you gotten this to work? This could be useful for me as well.
I've placed instructions in the first post a few days ago :)
Silverstangs
03-23-2004, 05:14 PM
Thank you Gary W for the tutorial, I needed that!
Silver
SVTBlackLight01
03-23-2004, 05:54 PM
I've placed instructions in the first post a few days ago :)
OK. I have it working now. Thanks.
Gary King
03-23-2004, 06:52 PM
No problem glad it worked :)
AshAbed
03-23-2004, 08:12 PM
sorry to be a hassle, but can you please tell me what I'm supposed to do here?
my templates are named index_fonts, index_psds...etc like that, what would I change this code to for it to work correctly?
if ($_REQUEST['do'] == 'xxx')
{
eval('print_output("' . fetch_template('TEMPLATE_XXX') . '");');
}
thanks alot
Gary King
03-23-2004, 11:13 PM
sorry to be a hassle, but can you please tell me what I'm supposed to do here?
my templates are named index_fonts, index_psds...etc like that, what would I change this code to for it to work correctly?
if ($_REQUEST['do'] == 'xxx')
{
eval('print_output("' . fetch_template('TEMPLATE_XXX') . '");');
}
thanks alot
Change TEMPLATE_XXX to index_fonts, etc.
AshAbed
03-23-2004, 11:19 PM
ok.. sorry about this, but http://www.maddpc.com/~ashraf/index.php? is the page, I added
if ($_REQUEST['do'] == 'xxx')
{
eval('print_output("' . fetch_template('index_fonts') . '");');
}
and I don't see index_fonts template when I go to
http://www.maddpc.com/~ashraf/index.php?do=fonts
or
http://www.maddpc.com/~ashraf/index.php?do=index_fonts
thanks
Acido
03-23-2004, 11:49 PM
I think you must try this code:
if ($_REQUEST['do'] == 'fonts')
{
eval('print_output("' . fetch_template('index_fonts') . '");');
}
Gary King
03-24-2004, 01:15 AM
ok.. sorry about this, but http://www.maddpc.com/~ashraf/index.php? is the page, I added
if ($_REQUEST['do'] == 'xxx')
{
eval('print_output("' . fetch_template('index_fonts') . '");');
}
and I don't see index_fonts template when I go to
http://www.maddpc.com/~ashraf/index.php?do=fonts
or
http://www.maddpc.com/~ashraf/index.php?do=index_fonts
thanks
If you use that code, then go to ?do=xxx
Grendel
03-24-2004, 11:43 AM
I try to put the "whats-going-on"-content of the forumhome-template into a custom template. Works fine - besides the "calender events". Is there any way to put the events on an "vBulletin-powered page"?Even if I'm the only one who is interested in this problem I post my solution anyway:
If the events should show up:
define('THIS_SCRIPT', 'test'); (where test is the name of the nonvb-page)
should be
define('THIS_SCRIPT', 'index');
SideFX
03-25-2004, 03:54 PM
Ok i am having one hell of an issue, I made a index page for a site i am building but when your not logged into the forum the homepage doesnt show up. This page is out side vb and in the home directory. any help would be appreciated.
EDIT: i put it back into vb and still logged out user cant see it how do i give them permissions to veiw this page?
Marulatree
03-25-2004, 10:37 PM
linux server files are case sensitive...
it's all lowercase /forum/test.php - still give me a blank page...
What's the template name? Use UPPERCASE not lowercase.
Marulatree
03-25-2004, 10:40 PM
got it!!!! test at the bottom of test.php is uppercase there your template needs to be "TEST" uppercase
AutomatikStudio
03-26-2004, 01:14 AM
Alright gary...thanks for the tips thus far. He's what I'm trying to do. I'm trying to create an article system of sorts. My database table will have the following fields: Author, Date, Article, Title, and ID. Now, what I'd like to do is have something like:
articles.php?do=viewarticles&artid=4
And that would call the article in the database with the ID of 4. At any rate, how would I do that without having to make a new template for every article.
SVTBlackLight01
03-26-2004, 01:49 AM
AutomatikStudio,
Just a suggestion. It may be easier to use a variation of one of the portal hacks.
Gary King
03-26-2004, 02:00 AM
Alright gary...thanks for the tips thus far. He's what I'm trying to do. I'm trying to create an article system of sorts. My database table will have the following fields: Author, Date, Article, Title, and ID. Now, what I'd like to do is have something like:
articles.php?do=viewarticles&artid=4
And that would call the article in the database with the ID of 4. At any rate, how would I do that without having to make a new template for every article.
Basically just use a generic 'shell' template which has generic stuff that all the pages will have. Then just use variables in the templates, I'm sure you can go from there :)
GoTTi
03-26-2004, 02:34 AM
n/m got it.
GoTTi
03-26-2004, 02:37 AM
can u make vb code work with this ?
otherwise this is like HTML pages i guess...gotta use HTML tags.
The Wise One
03-27-2004, 01:10 AM
is it possible to get the member age (if specified by the user in in his options) to show on the page...and is it possible to get the contact column from memberlist.php to work on this custom page? if so...how?
SVTBlackLight01
03-27-2004, 02:22 AM
I have also been wondering if it is possible to include info for a specific user on the page.
AutomatikStudio
03-28-2004, 03:11 AM
How would I add the title of the page in to the <title> tags?
SVTBlackLight01
03-28-2004, 03:59 AM
This is what I am doing to make it a little more automated.
Between the title tags, use
$navbits[lastelement]
This will display what ever you use for you navbits here
$navbits[$parent] = 'Whatever'; (test.php)
in the title.
See here:
http://www.modernengineuity.com/specs/ford_gt.html
AutomatikStudio
03-28-2004, 04:23 AM
Where can I find the <title> tags to edit? I seriously feel like I've looked everywhere..I'm sure they're right under my nose.
SVTBlackLight01
03-28-2004, 04:32 AM
It's in the template.
AutomatikStudio
03-28-2004, 04:38 AM
Yeah..that's what I'm saying...I've looked through just about every template. Which specific template did you edit?
SVTBlackLight01
03-28-2004, 04:45 AM
If you use the first post as an example, the template would be called TEST.
It should look something like this
$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>
AutomatikStudio
03-28-2004, 04:46 AM
Doh...I'm an idiot.
PKRWUD
03-28-2004, 05:06 AM
Okay, I created the php files and uploaded them, and made the templates and named them in uppercase. But when I enter the addy in my browser, I get this:
Parse error: parse error, expecting `')'' in /home/pkrwud/public_html/vbulletin/decals.php on line 13
BTW, I am rather clueless when it comes to this stuff, but I try.
PKRWUD
03-28-2004, 05:08 AM
also, "decals.php" is the "test" file.
Enforcerman
03-28-2004, 06:24 AM
Ok. I read all 8 pages so far and i havent seen this question asked. So, I am going to go for it. Lets say that you have two different styles for a forum and you want to specific exactly which style you want a page to display. Can you think of any code that can be included that will load a specific style.
Oh yeah. I dont want to add the styleid variable to the URL either. I want this to be hidden in the php page.
FASherman
03-28-2004, 11:28 AM
This looks promising gary -> a few questions !!!
1) How can I use this outside my forums directory? Do i just use this?
chdir('/home/site/public_html/forums/');
require('./global.php');
1) correct
I believe this is incorrect. If yo do it this way, you will display a non-functioning navbar. The pop-up menus will not work. I don't know why, and I don't know how to fix it, but I do know if you create test.php in your forum root dir and the TEST template exactly as given in the first post, it works.
Take that same script and more it to another directory and it breaks on global.php. Add the chdir as above just before your require statement and you will have a non-functioning navbar. No pulldown menus.
Any ideas on how this is resolved?
PKRWUD
03-28-2004, 11:54 AM
Well, I just tried all over again from scratch, and did it exactly the way I read it, and this time received this error:
Parse error: parse error, expecting `')'' in /home/pkrwud/public_html/vbulletin/test.php on line 23
What does this mean? On line 23, is 'TEST', the name of the TEST template I made.
Anyone?
AutomatikStudio
03-28-2004, 12:49 PM
What is your WHOLE line 23? Copy and paste it here.
PKRWUD
03-28-2004, 01:41 PM
<?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_once('./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') . '");');
?>
PKRWUD
03-28-2004, 01:43 PM
Okay, I just copied it straight out of the control panel, and those "+" marks weren't there. I have no idea where they came from, but when I pasted here, they showed up.
PKRWUD
03-28-2004, 01:49 PM
Fascinating. For some reason, my copy of BBEdit is placing characters in those places in my files when I save them. Looks like problem solved. Thank you.
One question, though; There's no link in the NavBar for the page. Where in the NavBar should it be?
Gary King
03-28-2004, 02:07 PM
I believe this is incorrect. If yo do it this way, you will display a non-functioning navbar. The pop-up menus will not work. I don't know why, and I don't know how to fix it, but I do know if you create test.php in your forum root dir and the TEST template exactly as given in the first post, it works.
Take that same script and more it to another directory and it breaks on global.php. Add the chdir as above just before your require statement and you will have a non-functioning navbar. No pulldown menus.
Any ideas on how this is resolved?
Just chdir() back to the vBulletin directory.
SVTBlackLight01
03-28-2004, 03:13 PM
I believe this is incorrect. If yo do it this way, you will display a non-functioning navbar. The pop-up menus will not work. I don't know why, and I don't know how to fix it, but I do know if you create test.php in your forum root dir and the TEST template exactly as given in the first post, it works.
Take that same script and more it to another directory and it breaks on global.php. Add the chdir as above just before your require statement and you will have a non-functioning navbar. No pulldown menus.
Any ideas on how this is resolved?
Check out this post.
https://vborg.vbsupport.ru/showpost.php?p=483363&postcount=36
$vboptions[homeurl]/
also needs to be added to the beginning of all the relative linnks in the navbar and footer templates.
I have many operating pages outside the forums directory using this hack.
AutomatikStudio
03-28-2004, 03:36 PM
One question, though; There's no link in the NavBar for the page. Where in the NavBar should it be?You have to manually code in what you want in the navbar. Just go to the navbar template and type it in and link it to your custom page.
FASherman
03-28-2004, 05:19 PM
Check out this post.
https://vborg.vbsupport.ru/showpost.php?p=483363&postcount=36
$vboptions[homeurl]/
also needs to be added to the beginning of all the relative linnks in the navbar and footer templates.
I have many operating pages outside the forums directory using this hack.
I knew I could count on a fellow Texan for help.
SVTBlackLight01
03-28-2004, 06:12 PM
Some of us need all the help we can get. :D
attroll
03-29-2004, 03:51 PM
I have removed the following code from the PHP file and it still works. Could you tell me what the purpose of this code is and what it does?
// ################### 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(
);
OK, read through everything - I think. When I run test.php located in my development forum dir, it comes out correct
When I try to run test.php outside of my dev forum, I get this:
http://www.rimfirecentral.com/test.php
I have modified test.php with:
chdir('/home/rfc/public_html/forumsdev/');
require('./global.php');
I'll keep playing with it until someone responds, but any assistance would be appreciated.
Thanks,
Dan
raynett
03-29-2004, 05:41 PM
I had the same style problem on my page outside of the forum. Copying the clientscript and images folders in the directory the test.php page resides seemed to correct that.
The problem I can't figure out though... the links in the navbar and footer portion of the test page do not link properly if the page is outside of the forum folder. The address is missing the forum portion of the URL. Example: link leads to http://www.yourdomain.com/register.php when it should lead to http://www.yourdomain.com/forum/register.php.
I had the same style problem on my page outside of the forum. Copying the clientscript and images folders in the directory the test.php page resides seemed to correct that.
The problem I can't figure out though... the links in the navbar and footer portion of the test page do not link properly if the page is outside of the forum folder. The address is missing the forum portion of the URL. Example: link leads to http://www.yourdomain.com/register.php when it should lead to http://www.yourdomain.com/forum/register.php.
$vboptions[homeurl]/
"also needs to be added to the beginning of all the relative links in the navbar and footer templates."
If I have to copy any script out there, I'm not even going to mess with it. I did have use for it if I could get it to work though. I'm also going to use it within my forum dir for two or three pages that I need too. Will start working on those tonight!
Gary King
03-29-2004, 07:09 PM
I have removed the following code from the PHP file and it still works. Could you tell me what the purpose of this code is and what it does?
// ################### 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(
);
They save you queries; yes you can remove them, but they are there as 'fillers' so you can put in your own values if you ever need to.
They are for phrasegroups, and also for template-cache; meaning if you put your template names there then you will save 1 extra query.
attroll
03-30-2004, 03:53 AM
They save you queries; yes you can remove them, but they are there as 'fillers' so you can put in your own values if you ever need to.
They are for phrasegroups, and also for template-cache; meaning if you put your template names there then you will save 1 extra query.
The reason I asked this is because shortly after I install this mod and replaced it with the other version I was using I started getting MYSQL errors. I narrowed down where the errors were coming from. They were coming from to much memory being used. So I removed this mod and put the other version back in and now I have not had any problem any MYSQL errors. I don't know if this was just coindence or not. But I like this version of the mod here and would like to reinstall it. But I am afraid to put it back in because the errors might come back. The other mod that I am using now it pretty much identical to this mod except for the lines I asked about.
Would those lines cause more memory usage?
Gary King
03-30-2004, 12:19 PM
Those lines would cause less memory usage.
attroll
03-30-2004, 12:50 PM
Those lines would cause less memory usage.
I will switch back over and reinstall it again later this week and see if the errors come back. I hope they do not. I like this version of the hack. I will keep you posted.
The Wise One
04-01-2004, 12:31 AM
is it possible to get the member age (if specified by the user in in his options) to show on the page...and is it possible to get the contact column from memberlist.php to work on this custom page? if so...how?
anyone have any thoughts on this?
da prez
04-01-2004, 03:13 AM
i am wondering if i can use $post[musername] or other varibles in the text.
i have tried every combination i can think of with no luck.
da prez
04-01-2004, 05:17 PM
nevermind i got it.
well most of it.
i needed the following : $bbuserinfo[username]
ogden2k
04-04-2004, 09:13 PM
Great hack!
SVTBlackLight01
04-04-2004, 10:18 PM
is it possible to get the member age (if specified by the user in in his options) to show on the page...and is it possible to get the contact column from memberlist.php to work on this custom page? if so...how?
Is this for the person viewing the page or for making a page about a specific member?
To display the info about whoever is viewing the page (if they're a member) shouldn't be too hard.
joeychgo
04-05-2004, 02:01 AM
How could I stick coppermine into this page??
contramontanum
04-06-2004, 11:45 AM
I must be doing something wrong. I've created test.php, renamed to privacy.php, changed all occurences of "test" to "privacy", uploaded to root folder and created template "privacy" in ACP, but all I get when going to myforums.org/privacy.php (http://www.loudmouthforums.org/privacy.php) is a blank page. I'm befuddled...
attroll
04-06-2004, 12:25 PM
I must be doing something wrong. I've created test.php, renamed to privacy.php, changed all occurences of "test" to "privacy", uploaded to root folder and created template "privacy" in ACP, but all I get when going to myforums.org/privacy.php (http://www.loudmouthforums.org/privacy.php) is a blank page. I'm befuddled...
Did you create a template in you admincp titled "privacy" and put your own data in it? It sounds like you forgot to do that.
CdaKnight
04-06-2004, 11:37 PM
I have a question, and everybody is forewarned that I'm a bit of a hacking n00b.
Alrighty, taken care of that.
I'm interesting in making my site run off of vB templates, etc to make it all look continuous (same footer, etc). However, I know you can't run php code in most of the templates (php_start, and end excluded from that), but a large section of my site uses php and mySQL to retrieve information.
Am I correct in saying that if I put the php code in the actual page (test.php for example), that in my template "test", I can call the variables that are in test.php? (Like if I have the array $comicinfo, and I need $comicinfo[date], or even just "$date" that it would display?)
Thanks in advance
Chris
Bro_Joey_Gowdy
04-08-2004, 01:47 PM
/me clicks install
attroll
04-08-2004, 01:53 PM
I was wondering. I don't see where this has been asked before or not. But can you use this hack and put another site withing the template? What I want to do is have my template and have another URL upen within the template so that my header is still on top and the other site can be viewed.
Bryan Ex
04-08-2004, 05:41 PM
What's the template name? Use UPPERCASE not lowercase.
Thank you! That was driving me nuts as well.
BarBeQue
04-09-2004, 10:29 AM
This was just what i needed, thanks!
Got a question though, not really a hackproblem but i'm gonna ask it anyway ;)
I have a html page that i wanted to display inside the forum, and using this hack could do that perfectly, by just copying that html page inside the template.
But, the html page is generated automatically each day so hardcopying it into the template isn't an option.
Is there a way to grab the html contents and to display it inside the template?
It kinda works by using an iframe in the template, but iframes need height dimensions and the generated page varies in height (and a scrollbar for the iframe looks very ugly).
Any idea on how to do this? or how to set the height of the iframe to be variable?
Or alternatively, is there a way to do it the other way around, add the header/navbar/footer to the html page (everthough it's generated i can determine what fixed components should be in this html page) and maybe shange the html page in an php page?
Oh btw...
* BarBeQue clicks install :D
wolfgang2
04-09-2004, 11:41 AM
very nice:)
installed and thank You!
[FG]Omega
04-15-2004, 07:28 PM
Omega]fantastic. thank you very much, Gary :)
gspot
04-16-2004, 03:19 AM
Have a question for you all???
I have added exactly what you have shown on the 1st page in order for this hack to work, but I'm running into a problem when this page is called up like this:
http://www.gspotracing.com/4x4rigs/showphoto.php/photo/75/sort/1/size/medium/cat/516/page/
I added your hack to the showphoto.php page and it only works in the whos online area when the page is being visited by:
This link: http://www.gspotracing.com/4x4rigs/showphoto.php?photo=61
And by a direct link to the page, but not by the 1st link I have given you above...
PLEASE HELP ME.. I REALLY NEED THIS INTEGRATED HACK... :(
SVTBlackLight01
04-16-2004, 03:27 AM
You must be a registered user to view images!
To register click on the REGISTER button in the menu above.
gspot
04-16-2004, 04:31 AM
You must be a registered user to view images!
To register click on the REGISTER button in the menu above.
Sorry I have this option so new members will register in order to view the images the forum has to offer. Non-the-less, I'm still having the same problem.. And this doesn't effect the coding problem I'm running into, does it???
gspot
04-21-2004, 08:09 AM
I dont know what I'm doing wrong here, please can someone help me on this. I have the following file being called: "referals.php" with the .php scripting in it and one template being used as well called: "reflist"... Any help would be appreciated, no matter what I do, nothing is outputed from the database. I see the columns correctly, but no usernames or number of referrals, I know there are many members with referrals at this time also. Maybe it's just something messed up in my coding.. PLEASE HELP...
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] - Top Referrers</title>
$headinclude
</head>
<body>
$header
$navbar
<table cellpadding="$stylevar[outerborderwidth]" cellspacing="0" border="0" class="tborder" width="$stylevar[tablewidth]" align="center"><tr><td>
<table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%">
<tr>
<td class="thead" colspan="3"><b>Top Referers!</b></td>
</tr>
<td class="alt1" align="center" $stylevar[tablewidth]><smallfont><b><u>Members</u></b></smallfont></td>
<td class="alt2" align="center"><smallfont color="{tableheadtextcolor}"><b><u>Actual
# of referrals verified</u></b></smallfont></td>
<td class="alt1" align="center"><smallfont><b><u>Members
Referred<br>
And Successfully Registered/Activated</u></b></smallfont></td>
</tr>
<tr align="center">
<td><smallfont><b><a href="member.php?s=$session[sessionhash]&action=getinfo&userid=$referrer[userid]">$referrer[username]</a></b></smallfont></td>
<td><smallfont>$referreractual</smallfont></td>
<td><smallfont>$referrerlist</smallfont></td>
</tr>
</table>
</td>
</tr>
</table>
$footer
</body>
</html>
gspot
04-21-2004, 10:19 PM
I dont know what I'm doing wrong here, please can someone help me on this. I have the following file being called: "referals.php" with the .php scripting in it and one template being used as well called: "reflist"... Any help would be appreciated, no matter what I do, nothing is outputed from the database. I see the columns correctly, but no usernames or number of referrals, I know there are many members with referrals at this time also. Maybe it's just something messed up in my coding.. PLEASE HELP...
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] - Top Referrers</title>
$headinclude
</head>
<body>
$header
$navbar
<table cellpadding="$stylevar[outerborderwidth]" cellspacing="0" border="0" class="tborder" width="$stylevar[tablewidth]" align="center"><tr><td>
<table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%">
<tr>
<td class="thead" colspan="3"><b>Top Referers!</b></td>
</tr>
<td class="alt1" align="center" $stylevar[tablewidth]><smallfont><b><u>Members</u></b></smallfont></td>
<td class="alt2" align="center"><smallfont color="{tableheadtextcolor}"><b><u>Actual
# of referrals verified</u></b></smallfont></td>
<td class="alt1" align="center"><smallfont><b><u>Members
Referred<br>
And Successfully Registered/Activated</u></b></smallfont></td>
</tr>
<tr align="center">
<td><smallfont><b><a href="member.php?s=$session[sessionhash]&action=getinfo&userid=$referrer[userid]">$referrer[username]</a></b></smallfont></td>
<td><smallfont>$referreractual</smallfont></td>
<td><smallfont>$referrerlist</smallfont></td>
</tr>
</table>
</td>
</tr>
</table>
$footer
</body>
</html>
SO no one can help me here... WOW.. thanks. :(
PuntoPower
04-23-2004, 04:43 PM
hi, i installed this and it worked all ok.
wat im trying to achieve is have a phpMyChat section in it inbetween the header and the footer.
how do i go about this? is there code that can call the file for the chat
www.mywebsite.com/chat/chat/index.php3
that places it in the center. im only have basic html. can i create a table and have the page inside that?
plz help
attroll
04-24-2004, 03:15 PM
SO no one can help me here... WOW.. thanks. :(
I have found that you don't always get replies to any questions you ask here. I wish the support were better. But this is a hack so I guess we should expect that.
You say you have done exactly as shown in the first page of this post. But you added to the PHP file. The way I understand this hack is that is was created so you can use the template that you create to put all your information in that you want displayed.
I looked at your PHP file and you added to that. I doin think it was intended for this to be done. That is why I think no-one has replied to you on this. You have added the following code in you PHP file:
//start referral script//
$max=3; //This number decides how many users to display
$referrers = $DB_site->query("SELECT COUNT(*) AS referrals, user.username, user.userid FROM user AS users LEFT JOIN user ON (users.referrerid = user.userid)
WHERE users.referrerid <> 0
AND user.usergroupid=2
GROUP BY users.referrerid
ORDER BY referrals DESC
LIMIT $max");
while ($referrer=$DB_site->fetch_array($referrers)) {
$referreds = $DB_site->query("SELECT username FROM user WHERE referrerid = '$referrer[userid]' AND user.usergroupid=2
GROUP BY username
ORDER BY username ASC");
while ($referred = $DB_site->fetch_array($referreds)){
$enc_username = urlencode($referred[username]);//get username for href link info below
if ($referrerlist) {
$referrerlist.=", <A HREF=member.php?action=getinfo&username=$enc_username>$referred[username]</A>";//make referred members clickable to user info.
} else {
$referrerlist ="<A HREF=member.php?action=getinfo&username=$enc_username>$referred[username]</A>"; //make referred members clickable to user info.
}
}
//show actual number of verified/registered members script
$referredstest = $DB_site->query("SELECT COUNT(*) AS username FROM user WHERE referrerid = '$referrer[userid]' AND user.usergroupid=2
GROUP BY user.usergroupid
ORDER BY referrerid DESC");
while ($referred11 = $DB_site->fetch_array($referredstest)){
if ($referreractual) {
$referreractual.=", $referred11[username] ";
} else {
$referreractual = "$referred11[username]";
}
//end actual # script
}
}
Cold Steel
04-27-2004, 01:17 AM
$vboptions[bburl] works better than $vboptions[homeurl] for those who don't have vB installed in the root directory.
Rick Sample
04-29-2004, 03:22 AM
I'm lost can someone try to fill me in? LOL :)
Ok all I need to do is open up notepad and copy the first set of text in their right? I don't need to add any other <body> tags or anything?
When I want to add stuff I just edit the template or do I edit the so called test file?
Thanks for helping a NewB :)
Cold Steel
04-29-2004, 07:18 PM
Save the first set of text as a .php file in Notepad. Upload to your server.
When you want to add stuff edit the template. You don't need to edit the PHP file again.
I've been playing with this and it's a pretty neat thing :). Cheers for putting this info together. I do a quick question I'm hoping someone can point me in the right direction on, however.
I'm working on being able to being able to display a list of agreements all from one primary page using the do= thing. So I have agreement.php setup like is described in the tutorial and instead of
eval('print_output("' . fetch_template('AGREEMENT') . '");');
...at the end of the file, I have instead added something like:
// Grab template for standard agreement
if ($_REQUEST['do'] == 'standard')
{
eval('print_output("' . fetch_template('agree_standard') . '");');
}
// Or grab template for special agreement
elseif ($_REQUEST['do'] == 'special')
{
eval('print_output("' . fetch_template('agree_special') . '");');
}
// Template for main agreement page if no 'do' statement
else
{
eval('print_output("' . fetch_template('AGREEMENT') . '");');
}
This works fine except the templates for AGREEMENT, agree_standard, and agree_special all basically contain the same code except for the body of the agreement itself. Meaning, it sounds to me like each template contains a lot of redundant code, e.g.
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle]</title>
$headinclude
etc.
How do I set it up so the AGREEMENT template contains this primary structure while child templates like agree_standard aren't forced to repeat it within their own structure, and just contain the HTML I need for that page's 'do' statement?
sross
04-30-2004, 11:17 AM
I'm on the verge of a nervous breakdown here! lol
I have a nice page working, but I need the "what's going on?" info at the bottom. I've been trying to do this for 4 hours now. I think I've tried everything I'm capable of with no luck. I took the 'What's going on?' box and added it to the template, I then took the what's going on php info and added that to my php file for this hack. I got a few items to work but not all of them. Can someone please help me do this? Thanks
SVTBlackLight01
04-30-2004, 05:30 PM
welo,
Put the HTML you need for that page's 'do' statement in avariable like this:
if ($_REQUEST['do'] == 'agree_standard')
{
eval('$whatever = "' . fetch_template('agree_standard') . '";');
eval('print_output("' . fetch_template('AGREEMENT') . '");');
}
if ($_REQUEST['do'] == 'agree_special')
{
eval('$whatever = "' . fetch_template('agree_special') . '";');
eval('print_output("' . fetch_template('AGREEMENT') . '");');
}
else
{
eval('$whatever = "' . fetch_template('default_do_template') . '";');
eval('print_output("' . fetch_template('AGREEMENT') . '");');
}
Then add $whatever in your AGREEMENT template where you want the 'do' stuff to appear.
That's exactly what I was trying to do. Thanks man. I've been switching off between working on this and writing all kinds of legal crap for the actual agreements, and just couldn't see it. Sure makes sense now :). Thanks again.
sross
04-30-2004, 08:27 PM
I'll donate $15 to someone's paypal account if they can help me with my issue in post #163 , I'm desperate!
I need the "what's going on?" info at the bottom.
I don't think anyone knows what you mean. I know I sure don't have a "What's going on" something-or-other anywhere on my VB.
Okay, I see what you mean. Sorry about that. I'm running into the same issue with trying to add in "Currently Active Users Viewing..."
Mr. HillBilly
04-30-2004, 09:42 PM
Here guys, try this.
Edit the lines at the top of the file so they look like this, be sure to include your own changes if you had made any.
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array('holiday');
// get special data templates from the datastore
$specialtemplates = array(
'userstats',
'birthdaycache',
'maxloggedin',
'iconcache',
'eventcache',
'mailqueue'
);
// pre-cache templates used by all actions
$globaltemplates = array(
'FORUMHOME',
'forumhome_event',
'forumhome_lastpostby',
'forumhome_loggedinuser',
);
// pre-cache templates used by specific actions
$actiontemplates = array(
);
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
require_once('./includes/functions_bigthree.php');
Add the lines below to your script near the bottom.
// ### TODAY'S BIRTHDAYS #################################################
if ($vboptions['showbirthdays'])
{
$birthdaystore = unserialize($datastore['birthdaycache']);
if (!is_array($birthdaystore) OR ($today != $birthdaystore['day1'] AND $today != $birthdaystore['day2']))
{
// Need to update!
require_once('./includes/functions_databuild.php');
$birthdaystore = build_birthdays();
DEVDEBUG('Updated Birthdays');
}
switch($today)
{
case $birthdaystore['day1']:
$birthdays = $birthdaystore['users1'];
break;
case $birthdaystore['day2'];
$birthdays = $birthdaystore['users2'];
break;
}
// memory saving
unset($birthdaystore);
$show['birthdays'] = iif ($birthdays, true, false);
}
else
{
$show['birthdays'] = false;
}
// ### TODAY'S EVENTS #################################################
if ($vboptions['showevents'])
{
require_once('./includes/functions_calendar.php');
$future = gmdate('n-j-Y' , TIMENOW + 43200 + (86400 * ($vboptions['showevents'] - 1)));
$eventstore = unserialize($datastore['eventcache']);
if (!is_array($eventstore) OR $future != $eventstore['date'])
{
// Need to update!
require_once('./includes/functions_databuild.php');
$eventstore = build_events();
DEVDEBUG('Updated Events');
}
unset($eventstore['date']);
$events = array();
$eventcount = 0;
foreach ($eventstore AS $eventid => $eventinfo)
{
$offset = iif (!$eventinfo['utc'], $bbuserinfo['tzoffset'], $bbuserinfo['timezoneoffset']);
$eventinfo['dateline_from_user'] = $eventinfo['dateline_from'] + $offset * 3600;
$eventinfo['dateline_to_user'] = $eventinfo['dateline_to'] + $offset * 3600;
$gettime = TIMENOW - $vboptions['hourdiff'];
$iterations = 0;
if ($bbuserinfo['calendarpermissions']["$eventinfo[calendarid]"] & CANVIEWCALENDAR OR $eventinfo['holidayid'])
{
if ($eventinfo['userid'] == $bbuserinfo['userid'] OR $bbuserinfo['calendarpermissions']["$eventinfo[calendarid]"] & CANVIEWOTHERSEVENT OR $eventinfo['holidayid'])
{
while ($iterations < $vboptions['showevents'])
{
$todaydate = getdate($gettime);
if (cache_event_info($eventinfo, $todaydate['mon'], $todaydate['mday'], $todaydate['year']))
{
if (!$vboptions['showeventtype'])
{
$events["$eventinfo[eventid]"][] = $gettime;
}
else
{
$events["$gettime"][] = $eventinfo['eventid'];
}
$eventcount++;
}
$iterations++;
$gettime += 86400;
}
}
}
}
if (!empty($events))
{
ksort($events, SORT_NUMERIC);
foreach($events AS $index => $value)
{
$pastevent = 0;
$pastcount = 0;
unset($eventdates, $comma, $daysevents);
if (!$vboptions['showeventtype'])
{ // Group by Event // $index = $eventid
unset($day);
foreach($value AS $key => $dateline)
{
if (($dateline - 86400) == $pastevent AND !$eventinfo['holidayid'])
{
$pastevent = $dateline;
$pastcount++;
continue;
}
else
{
if ($pastcount)
{
$eventdates = construct_phrase($vbphrase['event_x_to_y'], $eventdates, vbdate($vboptions['dateformat'], $pastevent, false, true, false));
}
$pastcount = 0;
$pastevent = $dateline;
}
if (!$day)
{
$day = vbdate('Y-n-j', $dateline, false, false);
}
$eventdates .= $comma . vbdate($vboptions['dateformat'], $dateline, false, true, false);
$comma = ', ';
$eventinfo = $eventstore["$index"];
}
if ($pastcount)
{
$eventdates = construct_phrase($vbphrase['event_x_to_y'], $eventdates, vbdate($vboptions['dateformat'], $pastevent, false, true, false));
}
if ($eventinfo['holidayid'])
{
$callink = "<a href=\"calendar.php?$session[sessionurl]do=getinfo&day=$day\">" . $vbphrase['holiday_title_' . $eventinfo['varname']] . "</a>";
}
else
{
$callink = "<a href=\"calendar.php?$session[sessionurl]do=getinfo&day=$day&e=$eventinfo[eventid]&c=$eventinfo[calendarid]\">$eventinfo[title]</a>";
}
}
else
{ // Group by Date
$eventdate = vbdate($vboptions['dateformat'], $index, false, true, false);
$day = vbdate('Y-n-j', $index, false, false);
foreach($value AS $key => $eventid)
{
$eventinfo = $eventstore["$eventid"];
if ($eventinfo['holidayid'])
{
$daysevents .= $comma . "<a href=\"calendar.php?$session[sessionurl]do=getinfo&day=$day\">" . $vbphrase['holiday_title_' . $eventinfo['varname']] . "</a>";
}
else
{
$daysevents .= $comma . "<a href=\"calendar.php?$session[sessionurl]do=getinfo&day=$day&e=$eventinfo[eventid]&c=$eventinfo[calendarid]\">$eventinfo[title]</a>";
}
$comma = ', ';
}
}
eval('$upcomingevents .= "' . fetch_template('forumhome_event') . '";');
}
// memory saving
unset($events, $eventstore);
}
$show['upcomingevents'] = iif ($upcomingevents, true, false);
$show['todaysevents'] = iif ($vboptions['showevents'] == 1, true, false);
}
else
{
$show['upcomingevents'] = false;
}
// ### LOGGED IN USERS #################################################
$activeusers = '';
if ($vboptions['displayloggedin'])
{
$datecut = TIMENOW - $vboptions['cookietimeout'];
$numbervisible = 0;
$numberregistered = 0;
$numberguest = 0;
$forumusers = $DB_site->query("
SELECT
user.username, (user.options & $_USEROPTIONS[invisible]) AS invisible, user.usergroupid,
session.userid, session.inforum, session.lastactivity,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid
FROM " . TABLE_PREFIX . "session AS session
LEFT JOIN " . TABLE_PREFIX . "user AS user ON(user.userid = session.userid)
WHERE session.lastactivity > $datecut
ORDER BY " . iif($permissions['genericpermissions'] & CANSEEHIDDEN, 'invisible ASC, ') . "username ASC, lastactivity DESC
");
if ($bbuserinfo['userid'])
{
// fakes the user being online for an initial page view of index.php
$bbuserinfo['joingroupid'] = iif($bbuserinfo['displaygroupid'], $bbuserinfo['displaygroupid'], $bbuserinfo['usergroupid']);
$userinfos = array
(
$bbuserinfo['userid'] => array
(
'userid' => $bbuserinfo['userid'],
'username' => $bbuserinfo['username'],
'invisible' => $bbuserinfo['invisible'],
'inforum' => 0,
'lastactivity' => TIMENOW,
'musername' => fetch_musername($bbuserinfo, 'joingroupid')
)
);
$numberregistered = 1;
$numbervisible = 1;
fetch_online_status($userinfos["$bbuserinfo[userid]"]);
$loggedin = $userinfos["$bbuserinfo[userid]"];
eval('$activeusers = ", ' . fetch_template('forumhome_loggedinuser') . '";');
}
else
{
$userinfos = array();
}
$inforum = array();
while ($loggedin = $DB_site->fetch_array($forumusers))
{
$userid = $loggedin['userid'];
if (!$userid)
{ // Guest
$numberguest++;
$inforum["$loggedin[inforum]"]++;
}
else if (empty($userinfos["$userid"]['lastactivity']) OR ($userinfos["$userid"]['lastactivity'] < $loggedin['lastactivity']))
{
$userinfos["$userid"] = $loggedin;
$numberregistered++;
if ($userid != $bbuserinfo['userid'])
{
$inforum["$loggedin[inforum]"]++;
}
$loggedin['musername'] = fetch_musername($loggedin);
if (fetch_online_status($loggedin))
{
$numbervisible++;
eval('$activeusers .= ", ' . fetch_template('forumhome_loggedinuser') . '";');
}
}
}
// memory saving
unset($userinfos, $loggedin);
$activeusers = substr($activeusers , 2); // get rid of initial comma
$DB_site->free_result($loggedins);
$totalonline = $numberregistered + $numberguest;
$numberinvisible = $numberregistered - $numbervisible;
// ### MAX LOGGEDIN USERS ################################
$maxusers = unserialize($datastore['maxloggedin']);
if (intval($maxusers['maxonline']) <= $totalonline)
{
$maxusers['maxonline'] = $totalonline;
$maxusers['maxonlinedate'] = TIMENOW;
build_datastore('maxloggedin', serialize($maxusers));
}
$recordusers = $maxusers['maxonline'];
$recorddate = vbdate($vboptions['dateformat'], $maxusers['maxonlinedate'], true);
$recordtime = vbdate($vboptions['timeformat'], $maxusers['maxonlinedate']);
$show['loggedinusers'] = true;
}
else
{
$show['loggedinusers'] = false;
}
// ### BOARD STATISTICS #################################################
// get total threads & posts from the forumcache
$totalthreads = 0;
$totalposts = 0;
if (is_array($forumcache))
{
foreach ($forumcache AS $forum)
{
$totalthreads += $forum['threadcount'];
$totalposts += $forum['replycount'];
}
}
$totalthreads = vb_number_format($totalthreads);
$totalposts = vb_number_format($totalposts);
// get total members and newest member from template
$userstats = unserialize($datastore['userstats']);
$numbermembers = vb_number_format($userstats['numbermembers']);
$newusername = $userstats['newusername'];
$newuserid = $userstats['newuserid'];
// ### ALL DONE! SPIT OUT THE HTML AND LET'S GET OUTA HERE... ###
Save your file and upload it.
Now for the template edits,
place the following code anywhere you want the Whos online to show.
<!-- what's going on box -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="2">$vbphrase[whats_going_on]</td>
</tr>
</thead>
<if condition="$show['loggedinusers']">
<!-- logged-in users -->
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_activeusers')"><img id="collapseimg_forumhome_activeusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_activeusers].gif" alt="" border="0" /></a>
<a href="online.php?$session[sessionurl]">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_activeusers" style="$vbcollapse[collapseobj_forumhome_activeusers]">
<tr>
<td class="alt2"><a href="online.php?$session[sessionurl]"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="$vbphrase[view_whos_online]" border="0" /></a></td>
<td class="alt1" width="100%">
<div class="smallfont">
<div style="white-space: nowrap"><phrase 1="$recordusers" 2="$recorddate" 3="$recordtime">$vbphrase[most_users_ever_online_was_x_y_at_z]</phrase></div>
<div>$activeusers</div>
</div>
</td>
</tr>
</tbody>
<!-- end logged-in users -->
</if>
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_stats')"><img id="collapseimg_forumhome_stats" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_stats].gif" alt="" border="0" /></a>
<phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_stats" style="$vbcollapse[collapseobj_forumhome_stats]">
<tr>
<td class="alt2"><img src="$stylevar[imgdir_misc]/stats.gif" alt="<phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>" border="0" /></td>
<td class="alt1" width="100%">
<div class="smallfont">
<div>$vbphrase[threads]: $totalthreads, $vbphrase[posts]: $totalposts, $vbphrase[members]: $numbermembers</div>
<div><phrase 1="member.php?$session[sessionurl]u=$newuserid" 2="$newusername">$vbphrase[welcome_to_our_newest_member_x]</phrase></div>
</div>
</td>
</tr>
</tbody>
<if condition="$show['birthdays']">
<!-- today's birthdays -->
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_birthdays')"><img id="collapseimg_forumhome_birthdays" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_birthdays].gif" alt="" border="0" /></a>
$vbphrase[todays_birthdays]
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_birthdays" style="$vbcollapse[collapseobj_forumhome_birthdays]">
<tr>
<td class="alt2"><a href="calendar.php?$session[sessionurl]do=getday&day=$today&sb=1"><img src="$stylevar[imgdir_misc]/birthday.gif" alt="$vbphrase[view_birthdays]" border="0" /></a></td>
<td class="alt1" width="100%"><div class="smallfont">$birthdays</div></td>
</tr>
</tbody>
<!-- end today's birthdays -->
</if>
<if condition="$show['upcomingevents']">
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_events')"><img id="collapseimg_forumhome_events" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_events].gif" alt="" border="0" /></a>
<if condition="$show['todaysevents']">$vbphrase[todays_events]<else /><phrase 1="$vboptions[showevents]">$vbphrase[upcoming_events_for_the_next_x_days]</phrase></if>
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_events" style="$vbcollapse[collapseobj_forumhome_events]">
<tr>
<td class="alt2"><a href="calendar.php?$session[sessionurl]"><img src="$stylevar[imgdir_misc]/calendar.gif" alt="$vbphrase[calendar]" border="0" /></a></td>
<td class="alt1" width="100%"><div class="smallfont">$upcomingevents</div></td>
</tr>
</tbody>
</if>
</table>
<br />
<!-- end what's going on box -->
sross
05-01-2004, 12:28 AM
Mr. Hillbilly, thanks for the help so far! Still not working though. I'm not sure what I'm doing wrong. I have attachment my php code and template code. The following code shows the what's going on box as:
APUG Forums Statistics
Threads: , Posts: , Members:
Welcome to our newest member,
It only shows a few stats and they are blank. Hope you can help, thanks again!
Mr. HillBilly
05-01-2004, 03:48 AM
Forgot to add a couple of lines, this one should work.
sross
05-01-2004, 04:13 AM
Forgot to add a couple of lines, this one should work.
updated the new php file, cleared cache, went back to the page and still no change, looks the same :( seems like it should work, weird
Synicide
05-01-2004, 06:38 PM
Well, here's a question for you guys. :D
I'd be forever grateful if somebody could get this to even semi-work.
I've chosen to use this method of creating pages since the thought of customizing a portal to get rid of all the blocks is beyond me. Pretty much all I need to do what a lot of the portals do, display threads from a "news" forum with simple comment links.
That's it, I just need to know how to get the title, date, author and comment links on there and I'd be all good - from there I can customize the template normally. ^_^
Thank you for all your help in advance, and I really hope somebody can solve this for me.
BTW: Does anybody find it odd that Greg hasn't visited this thread in a while?
caislander
05-02-2004, 03:01 AM
Ok I got the extra page to display, thank all of you for the information :) I have this code in my template
$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"><h2>City Ordinances (the Rules)</h2>
This forum is a great place to post questions,
answers, or have a productive discussion on web
development. While we may delete anything we
find inappropriate, it is rare that such a post is
made as the members here have been very helpful
to each other. The following are guidelines to follow
when posting a message or reply:</td>
</tr>
<tr>
<td class="alt1">$vbphrase[insult_flame]</td>
</tr>
<tr>
<td class="alt2">$vbphrase[no_spam]</td>
</tr>
<tr>
<td class="alt1">$vbphrase[illegal_material]</td>
</tr>
<tr>
<td class="alt2">$vbphrase[cross_posting]</td>
</tr>
<tr>
<td class="alt1">$vbphrase[homework]</td>
</tr>
<tr>
<td class="alt2">$vbphrase[flooding]</td>
</tr>
<tr>
<td class="alt1">$vbphrase[all_caps]</td>
</tr>
<tr>
<td class="alt2">$vbphrase[no_politics]</td>
</tr>
<td class="alt1">$vbphrase[mod_time]</td>
</tr>
<tr>
<td class="alt2">$vbphrase[read_faq_first]</td>
</tr>
</table>
$footer
</body>
</html> the part that is hard coded into it displays just fine but the $vbphrases don't display at all, any ideas what i might have done wrong ?
Thanks for any assistance
Synicide
05-02-2004, 03:35 AM
So can anybody help me with my little problem? :]
Synicide
05-03-2004, 08:35 PM
I apologize for posting a 3rd time, but is there nobody that can help with this? It's been 2 days! o_O
SVTBlackLight01
05-03-2004, 09:25 PM
I apologize for posting a 3rd time, but is there nobody that can help with this? It's been 2 days! o_O
IMHO, it would be easier to modify one of the portals to do this than to add everything to this hack to accomplish what you need.
sross
05-03-2004, 10:37 PM
i fixed my issue a few lines up, eval stuff was in the wrong place. mine works like I want now.
Synicide
05-04-2004, 01:57 AM
IMHO, it would be easier to modify one of the portals to do this than to add everything to this hack to accomplish what you need.
Hmmm... just add it to the PHP... I guess I could take a look at that, Thanks SVT. :]
SVTBlackLight01
05-04-2004, 02:04 AM
Take a look at vBadvanced. You could propably get by with a simple template mod once you get it installed (unless you are already running one instance of it). All the blocks are contained in the index template, so you could either remove them from the template or comment them out.
Bro_Joey_Gowdy
05-08-2004, 07:48 PM
I have a statement then one question:
Ive placed this in the websites root directory as the main page of my site:
http://www.joeygowdy.com
My forums are in a different directory:
http://www.joeygowdy.com/forum
Ive already made all the required changes, now for the question:
If I ever choose the have the vbboard switched offline for updates, will the main site also be unavailable due to the fact that Im useing vbtemplates to power my main site?
Is there a way that you can add new pages on your index directory rather than the forum directory?
Meaning, the new template works only if the file is added within the forum directory but would like to know if you can make these page work outside of a forum page.
BTW: Great hack! Clicks Install.
Edit: Sorry, I just realized you can not ask questions in here. :o
SVTBlackLight01
05-09-2004, 05:08 PM
Is there a way that you can add new pages on your index directory rather than the forum directory?
This should get you started.
https://vborg.vbsupport.ru/showpost.php?p=482522&postcount=23
All your menu links will need to be absolute instead of relative too.
I used your code :
chdir('/usr/home/mydomain/www/forum');
require('./global.php');
But it still does not function properly, i am still getting js errors and images are not showing.
I have this .php file outside my forum directory too.
any help ?
caislander
05-10-2004, 04:41 PM
Anybody,
I can't get phrases created via the phrase manager to show up? Any ideas what i might have done wrong ? here (https://vborg.vbsupport.ru/showthread.php?p=507919#post507919) is the info in my template if it helps :)
As always Thanks for any assistance :0
airlinebuzz
05-20-2004, 12:42 AM
I am trying to make a rather large template (950 lines of code), for a page using this "hack" and when I try to save and reload the template in the Control Panel it won't refresh like it saved and the changes don't load when I go to the page. Is there a maximum template size limit that I am bumping into?
airlinebuzz
05-23-2004, 02:45 AM
bump
Skyline_GT
06-02-2004, 12:29 AM
great:)
love it
SVTBlackLight01
06-02-2004, 01:29 AM
I used your code :
chdir('/usr/home/mydomain/www/forum');
require('./global.php');
But it still does not function properly, i am still getting js errors and images are not showing.
I have this .php file outside my forum directory too.
any help ?
All the js references in the headinclude template need to have an absolute path.
<script type="text/javascript" src="$vboptions[bburl]/clientscript/vbulletin_global.js"></script>
<if condition="$show['popups']"><script type="text/javascript" src="$vboptions[bburl]/clientscript/vbulletin_menu.js"></script></if>
Cold Steel
06-06-2004, 07:10 PM
I'd like to do something a little different with this:
I have a PHP file as instructed, but I only want to include a header and footer (I've already set up templates for those). For the main page I want to include another page.
This is what I tried in the PHP file:
<snip>
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('extrapage_top') . '");');
include("extrapage_contents.html");
eval('print_output("' . fetch_template('extrapage_bottom') . '");');
?>
Except it only shows the information from the template extrapage_top.
It doesn't show extrapage_contents.html, nor does it show the code from the template extrapage_bottom.
What am I doing wrong?
SVTBlackLight01
06-07-2004, 02:11 PM
Includes have to go in the phpinclude_start template. Use the example as a guide:
// Example of how to include a seperate file:
// ob_start();
// require("yourheader.html");
// $header = ob_get_contents();
// ob_end_clean();
All you have to add to your template is the variable for the page you want to include ($header in the example).
Cold Steel
06-08-2004, 07:41 AM
Excellent - worked like a charm. Thanks!
SVTBlackLight01
06-08-2004, 03:26 PM
Great. Glad to help. :)
lichtflits
06-13-2004, 09:11 AM
Can cany one please tell my how i can add login,latest treads and that sort of things to the vb powerd page.
Seanie
06-13-2004, 12:38 PM
Hi
Is it possible for this to work when the forums in a subdomain on the same server?
I have tried it using PHP includes (storing the root php file in the forums dir) and that works, however permissions dont seem to work and when i use permissions via the templates(<if> statments) it doesnt recognise that Im logged in...
thanks in advance for any help
armani1072
06-15-2004, 11:54 PM
great hack :D
however i am having a few issues when i try to align the tables in the body. if i try to align the table on the left the time stamp will appear on the right in stead of the bottom of where it should be. in the attached image you can see how i made two tables side by side and the time stamp appears in between the two tables. no matter what i try in the code nothing seems to move it. i will attach the code too. Any help will be appreciated :) thanks.
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] :: Links</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">Links</td>
</tr>
<tr>
<td class="alt1"><p>Great links and friends of Mysite.org.<br>
</td>
</tr>
</table>
<br>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="48%" align="left">
<tr>
<td class="tcat">Discussion Boards</td>
</tr>
<tr valign="center">
<td class="alt1"><br><a href="http://www.site1.org/" target="_blank">Description</a><br><br><a href="http://www.site2.com/" target="_blank">Description2</a><br><br><a href="http://www.site3.com/" target="_blank">Description3</a><br><br><i>more to come...</i><br>
</td>
</tr>
</table>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="48%" align="right">
<tr>
<td class="tcat">Other Sites</td>
</tr>
<tr>
<td class="alt1"><br><a href="http://www.site1.org/" target="_blank">Description1</a><br><br><a href="http://www.site2.com/" target="_blank">Description2</a><br><br><a href="http://www.site3.com/" target="_blank">Description3</a><br><br><i>more to come...</i><br>
</td>
</tr>
</table>
<br>
<br>
<br>
$footer
</html>
The Realist
06-20-2004, 08:17 PM
Installed the test pages "Test"
Its all white and nothing shows?
Whats up, anyone?
Dean C
06-21-2004, 08:20 AM
Make sure you added the template and also added it to the template cache at the top of the page :)
sarahk
06-23-2004, 09:30 AM
I want to call this hack from the control panel but right now I'm just getting a blank screen. The template is called MAILLIST and is unchanged from page 1 of this thread.
here's my file called maillist.php which is stored at /forum/
(comments removed for brevity)
<?php
error_reporting(E_ALL & ~E_NOTICE);
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'maillist'); // change this depending on your filename
// get special phrase groups
$phrasegroups = array( );
$specialtemplates = array( );
$globaltemplates = array( 'MAILLIST', 'usercp_nav_folderbit');
$actiontemplates = array( 'MAILLIST');
require_once('./global.php');
$navbits = array();
$navbits[$parent] = 'Test Page';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('MAIL LIST MAINTENANCE') . '");');
?>
Can't see where I've gone wrong? sure it's something simple, any ideas?
Plus, how do I ensure that I get the control panel nav rather than the normal nav?
Sarah
Dean C
06-23-2004, 10:21 AM
You can't call templates from within the admincp :)
sarahk
06-23-2004, 09:00 PM
Thanks Dean
I'm trying to run this from within the user CP.
Found my mistake:
eval('print_output("' . fetch_template('MAILLIST') . '");');
should be
eval('print_output("' . fetch_template('MAIL LIST MAINTENANCE') . '");');
but I'm actually going to be doing a hybrid of this technique and extra profile fields (https://vborg.vbsupport.ru/showthread.php?s=&threadid=59618) so hopefully I'm on my way!
Dean C
06-24-2004, 11:51 AM
No problem Sarah. Good luck with whatever you're coding :D!
The Realist
06-24-2004, 01:34 PM
What do you mean by "adding it to the template cache at the top of the page" ??
Thanks M8
Make sure you added the template and also added it to the template cache at the top of the page :)
nogerorob
06-24-2004, 05:34 PM
What do you mean by "adding it to the template cache at the top of the page" ??
Thanks M8
I'm a bit confused by this also. Anyone?
rob
nogerorob
06-24-2004, 06:35 PM
Oh k. Finally i figured this out. I am such a n00b.
Ok,
You don't need to create a new custom template for this basic page stuff. You can have it display an existing template
If you're seeing the "all white"screen with the source:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD>
<BODY></BODY></HTML>
You're almost there.
The problem is probably your print_output line, you're probably printing a nonexistant template. Try using a template included with vb3 like GENERIC_SHELL. i.e.
eval('print_output("' . fetch_template('GENERIC_SHELL') . '");');
Then if you want to get creative with a new custom template, you must add it using the vB3 admin control panel. Then when you fetch_template('newCustomTemplate') it will show up instead of the "white screen."
Someone want to confirm this?
rob
armani1072
06-25-2004, 02:02 AM
anybody have any idea with this one????
https://vborg.vbsupport.ru/showthread.php?t=62164&page=13&pp=15
Post #195 all the way down at the bottom
thanks
nogerorob
07-13-2004, 04:44 AM
Everything works right, but my images aren't loading. Anyone know why the images won't load when I try this?
I'm doing the appropriate changedir to reach the vB root.
Thanks,
Jolten
07-13-2004, 06:28 AM
great hack :D
however i am having a few issues when i try to align the tables in the body. if i try to align the table on the left the time stamp will appear on the right in stead of the bottom of where it should be. in the attached image you can see how i made two tables side by side and the time stamp appears in between the two tables. no matter what i try in the code nothing seems to move it. i will attach the code too. Any help will be appreciated :) thanks.
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] :: Links</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">Links</td>
</tr>
<tr>
<td class="alt1"><p>Great links and friends of Mysite.org.<br>
</td>
</tr>
</table>
<br>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="48%" align="left">
<tr>
<td class="tcat">Discussion Boards</td>
</tr>
<tr valign="center">
<td class="alt1"><br><a href="http://www.site1.org/" target="_blank">Description</a><br><br><a href="http://www.site2.com/" target="_blank">Description2</a><br><br><a href="http://www.site3.com/" target="_blank">Description3</a><br><br><i>more to come...</i><br>
</td>
</tr>
</table>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="48%" align="right">
<tr>
<td class="tcat">Other Sites</td>
</tr>
<tr>
<td class="alt1"><br><a href="http://www.site1.org/" target="_blank">Description1</a><br><br><a href="http://www.site2.com/" target="_blank">Description2</a><br><br><a href="http://www.site3.com/" target="_blank">Description3</a><br><br><i>more to come...</i><br>
</td>
</tr>
</table>
<br>
<br>
<br>
$footer
</html>
What's your footer template look like?
You could just enclose your footer in a table.
nogerorob
07-14-2004, 08:56 PM
Everything works right, but my images aren't loading. Anyone know why the images won't load when I try this?
I'm doing the appropriate changedir to reach the vB root.
Thanks,
bump.
Anyone?
nonet
07-25-2004, 11:00 PM
Works great except the new page does not show up in the nav bar. Any ideas?
getthat
07-26-2004, 09:51 AM
Hi,
I want to create a new custom page in the root directory of my website but I always get the errors below. What am I doing wrong here (I'm using vb 3.0.3) ?
Warning: main(./includes/init.php): failed to open stream: No such file or directory in /home/autosurf/public_html/forums/global.php on line 18
Fatal error: main(): Failed opening required './includes/init.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/autosurf/public_html/forums/global.php on line 18
sully02
08-01-2004, 12:02 AM
Right now, I'm looking through the thread to see if it's there, but I want to include my homepage in the list of locations for currently active users. The problem? The homepage, like my forum homepage is also named index.php
So...
Homepage = www.livemockdraft.com/index.php
Forum main = www.livemockdraft.comforums/index.php
Is there a way to get the functions_online.php file to differentiate between the two?
Ghostsuit
08-03-2004, 02:05 AM
Excellent guide.
Eagle Creek
08-11-2004, 10:01 AM
Cool! I'm gonna install that I think!
SVTBlackLight01
08-11-2004, 02:51 PM
Is there a way to get the functions_online.php file to differentiate between the two?
I would like to know this as well.
sully02
08-12-2004, 02:41 PM
And while I'm at it, I would like a link to appear below their location of my new page. Every time I try to add one (Going off what I see in other conditions), I end up getting a parse error. Any suggestions?
wreck
08-14-2004, 11:37 PM
would this be compatible with vB2 or can anybody make it so its compatible with vB2
DarkWarriorXII
08-15-2004, 12:58 AM
I got my test page (test.php) to work, but it comes up without showing my forum style (it shows the original vB style). Here's the code of the page (oh yeah, the page is outside the vB directory):
<?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 ############################
chdir('/home/kowlcla/public_html/forum/');
require('./global.php');
// ################################################## #####################
// ######################## START MAIN SCRIPT ############################
// ################################################## #####################
$navbits = array();
$navbits[$parent] = 'vB Test Page;
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('test') . '");');
?>
1. What's wrong here?
2. And the links all point to my website's root directory, not my forum's root directory. For example: http://domain.com/usercp.php instead of http://domain.com/forum/usercp.php.
3. And the navbar drop down menus don't work. How do I fix this also?
Thanks for answering all my questions.
wreck
08-17-2004, 01:20 AM
so would this or would it not work for vb2
lichtflits
08-17-2004, 09:03 AM
Wreck look here https://vborg.vbsupport.ru/showthread.php?t=66153 for vb2 powerd pages
wreck
08-18-2004, 04:54 PM
thanks
sfowler39
08-20-2004, 01:52 PM
Ok I created the test page and in my template I try and put in this
<?php
$db = mysql_connect("localhost", "root", "");
mysql_select_db("reports",$db);
$result = mysql_query("SELECT * FROM hrc",$db);
echo "<TABLE BORDER=2>";
echo"<TR><TD><B>Full Name</B><TD><B>Credit Card Number</B><TD></TR>";
while($myrow = mysql_fetch_array($result))
{
echo "<TR><TD>".$myrow["firstname"]." ".$myrow["lastname"]."</a><TD>".$myrow["creditcardnum"];
}
echo "</TABLE>";
?>
I always get an error trying to put in php code into a template.
I am trying to have a page that only a group of people can view and which must be logged into the board to see this page. I want this code to be used to retrive info from a database. It works as it stands like it is and as it is but I cant place this code into a template.
Any Ideas?
MiLynne
08-24-2004, 01:53 AM
I looked through all 15 pages and saw the question asked that I want answered, but no one answered it sooooo..
I'd like to use this page to integrate phpMychat into it...how would I do this?
root123
08-24-2004, 08:42 AM
This is great - and it helped me a lot. But I have one problem though. I'm new to vB, so I hope that someone can help me with this problem.
I have created a non vB-page as described in this thread - and it is working fine.
But when I try to parse a variable in the URL calling the non vB-page, the variable is lost.
Ex.
http://www.mysite.com/nonvBpage.php?parm=1
In this case it seems as the the nonvBpage.php does not recieve the variable parm and its value.
How can this be (or... what am I doing wrong)?
Cheers
Root
Dean C
08-24-2004, 10:08 AM
$_REQUEST['varname']; use that for all incoming variables from a URL :)
root123
08-24-2004, 12:19 PM
Thanks :o) That solved the problem .....
sfowler39
08-25-2004, 03:48 PM
I can create the test page and it works fine, but I have a php page that I want to be part of the board with its user permissions. How do I call it up? I have followed all the instructions but still cant call it up.
On the first post of this thread Gary King has wrote this in the end of his post:
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:
if ($_REQUEST['do'] == 'xxx')
{
eval('print_output("' . fetch_template('TEMPLATE_XXX') . '");');
}
Replace 'xxx' with whatever you want ?do= in the query string to be (for example, replace 'xxx' with 'showprofile' so then someone would type in example.php?do=showprofile to view this template.) Then of course, change TEMPLATE_XXX to your template name, it's that simple!
Well my file is called test2.php in my forum dir. I added this to the bottom of my file and this is my code of the test2.php file
<?php
echo "hello";
if ($_REQUEST['do'] == 'showtest2')
{
eval('print_output("' . fetch_template('test') . '");');
}
?>
As you can see all this page is- is saying hello for my test2.php file. The webpage should be wrapped around with its pemissions that vbulletin has.
In your example you wrote this in order to view your template: example.php?do=showprofile to view this template.
HUH????
I am confused here - for one there is no file called example.php. what is the example file is this the file that is my test2.php file or index.php or cmps_index.php or I dont get it - help please to understand how to add a external php page into my site with the security of vbulletin cause i want to secure a page or 2 and if a person has not logged into the bb that is an administrator then he cant view a certain page.
If I use this http://hrc/vb/test2.php?do=showtest2
I get this as an error
hello
Fatal error: Call to undefined function: fetch_template() in c:\inetpub\wwwroot\vb\test2.php on line 6
As you can see with the hrc I am on an intranet and vb is the forum.
Gary,
Thank you very much for that, just what I needed.
It works extremely well, I changed the template code a bit so it displays several tables per page.
So thanks again.
JD. :)
btw, there is no place to click Install, but count this as one of them if you can.
indie
08-30-2004, 06:58 AM
For step 2, creating the template, how and where do we do that? From the admin panel? thx
indie,
In AdminCP select Styles & Templates -> Style Manager.
On the right there is a drop down box that displays All Style Options, click the v button to the right of it. From the drop down menu select Add New Template.
Hope that helps,
JD. :)
Adrian Schneider
09-01-2004, 08:11 PM
Sorry if this has been covered before, but for the parent link thing (for the vb navigation) on custom pages, how do you set one inbetween the site index and the page. Say if I'm working on a 'Misc Downloads' page, can I add a link between it and the index called 'Downloads'. Thanks
Adrian Schneider
09-03-2004, 08:43 PM
Bump
Surtain23
09-04-2004, 10:38 PM
For all those having problems with the query strings...
I was trying to fix this, and finally I have gotten it working! This is what I used as my test file:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'roster'); // 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(
);
// pre-cache templates used by specific actions
$actiontemplates = array(
'ROSTER_BUF'
);
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
// ################################################## #####################
// ######################## START MAIN SCRIPT ############################
// ################################################## #####################
$navbits = array();
$navbits[$parent] = 'Test Page';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
if ($_REQUEST['do'] == 'buf')
{
eval('print_output("' . fetch_template('ROSTER_BUF') . '");');
}
eval('print_output("' . fetch_template('ROSTER_MAIN') . '");');
?>
I hope I helped solve some of your problems (If you even visit this thread for help). :)
rjerina
09-29-2004, 12:12 AM
This looks promising gary -> a few questions !!!
1) How can I use this outside my forums directory? Do i just use this?
chdir('/home/site/public_html/forums/');
require('./global.php');
I have done this Gary, but my images arent showing up. :(
edit: ok i got the misc images to show up, but i have the avatar in navbit modification and the avatar in the navbar doesnt show up :(
there has got to be a better way to do this outside of the forum directory. this is just not working at all.
so to go off your topic but could some1 possible tell me how i would call a forum post on a vb powered page. title and post body ???
akirauk
09-30-2004, 08:17 AM
Thanks this is just what ive been looking for, im going to use it as a main page ratherthan have all the gubbins that comes with a portal.
Installed and working fine, but rather than edit the template for the text is it possible to pull a certain thread from a forum? what i want to do is have a description and some pics and instructions for my rpg site.
many thanks for any help
regards
this works great when my custom page is a simple display page.
I want now a page that has several possible forms which it populates from custom database fetches. The form you get depends on data you may have previously posted to the page. I have the code written, but I don't have the page integrated into vbulletin.
So for example in the part of my code that now outputs html, that html would move to a template or subtemplates, yes? (which I must declare in the template list?) How do I go about populating them with variables I make up? I see in the vbulletin code several ways to use templates, and not sure which method to use or why.
Oh one more thing: If possible, I want also this page to look like the usercp, not the main forum.
To be concrete:
Supose my code has
SELECT * from mydatatable WHERE userid=$bbuserinfo[userid]
Then I submit the query and fetch a row into a variable called $mydatatable
I'm just gonna try to use $mydatatable in the template and see what happens.
Seanie
10-10-2004, 12:15 PM
any idea how to get this working when the forum is in a sub domain...?
I really wanna use this :(:(
site... www.site.com (/home/site/public_html/)
forum... forum.site.com (/home/forum/public_html/)
djohn
10-15-2004, 12:51 PM
i have 2 questions.
1. how can i create a custom vBulletin page that can only be viewed by a certain member/usergroup?
2. how can i create a page, which consists of a few smaller ones? e.g. http://forums.site.com/tools.php?ftp, http://forums.site.com/tools.php?faq, http://forums.site.com/tools.php?bla, etc.
thanks in advance
blueuniverse
10-20-2004, 04:01 PM
Is it possible to add PHP within the templates, so they appear on the pages? Is there a mod on this, or some fix possibly? It appears from the previous posts that, sfowler who was trying to use php within the template couldn't get it to work.
blueuniverse
10-22-2004, 03:47 PM
any ideas???
trackpads
10-23-2004, 08:55 AM
I would also like to know something like this. I am running a 3rd party video gallery for my site and laready have it so that user registration is required to view the gallery but I would like to know who to restrict it further to just members of several usergroups (for promotional purposes).
Here is my current PHP file, please note that this is located outside the forum directory of course-
<?
session_start();
if (substr($_SERVER['PHP_SELF'], -9) != "index.php") {
header('Location:' . $url . '/index.php');
}
define('SCRIPT_PATH',"includes");
require_once (SCRIPT_PATH .'/mysql.inc.php');
define('DIR_PATH',"$dir_path");
require_once (DIR_PATH .'/includes/getlang.php');
require_once (DIR_PATH .'/includes/global.php');
if (!isset($HTTP_COOKIE_VARS['bbuserid'])) {
$bbuserid=0;
$logged=0;
} else {
$logged=($user=$HTTP_COOKIE_VARS['bbuserid']);
}
if ($logged >= "1") {
$time_start = getmicrotime();
require_once (DIR_PATH .'/includes/functions.gal.php');
require_once (DIR_PATH .'/includes/player.inc.php');
include_once (DIR_PATH .'/header.php');
require_once (DIR_PATH .'/includes/gallery.inc.php');
$time_end = getmicrotime();
show_queries($time_start,$time_end);
include_once (DIR_PATH .'/footer.php');
} else {
echo "<div align=center>You must be logged in and a registered user of the Trackpads Community.<br><br>";
echo "Please click <a href=http://www.trackpads.com/forum/login.php><i><b>here</b></i></a> ";
echo "to login first...<br><br>Or click <a href=http://www.trackpads.com/forum/register.php><i>";
echo "<b>here</b></i></a> to register with Trackpads.";
echo "Registration only takes a minute and is free!</div>";
}
ob_end_flush();
?>
Thanks in advance for any help,
-Jason
SnitchSeeker
10-25-2004, 06:42 AM
No one seems to be supporting this thread any more.
This is very very annoying. :(
unfortunately, i have found the same problem with some of Gary's threads.
He is probably too busy.
ipas2
10-26-2004, 07:58 PM
How do I add a custom template ? I simply cant find ADD button in the template manager. I can Custumize existing template.. but how do I add a new one ?
ACP > Styles & Templates > Style Manager > (in dropdown) Template Options > Add New Template
You have to scroll the dropdown selector content up to see it. Caught me off guard the first time too.
ipas2
10-27-2004, 06:06 AM
Thanx man ! I got it now.
JohnBee
11-09-2004, 04:42 PM
<?PHP
include("/home/servr/public_html/web/cutenews/show_news.php");
?>
Heres the PHP code snipit that usually includes the news data into
my ewb pages, hoever I cannot get it to display in my vB powered
page, cany anyone help me?
I added this in my TEST style but it just shows blank. Any help on
matter is greatly appreciated.
thx
ambumann
11-09-2004, 11:23 PM
Nice.
xeonkiller711
11-22-2004, 11:47 PM
<?PHP
include("/home/servr/public_html/web/cutenews/show_news.php");
?>
Heres the PHP code snipit that usually includes the news data into
my ewb pages, hoever I cannot get it to display in my vB powered
page, cany anyone help me?
I added this in my TEST style but it just shows blank. Any help on
matter is greatly appreciated.
thx
Yes I want to know the same thing. I am trying to get a server query to tie into my vb pages. Any help would be awesome!
JohnBee
11-25-2004, 03:28 AM
Yes I want to know the same thing. I am trying to get a server query to tie into my vb pages. Any help would be awesome!
xeonkiller711 I cured all my problems with news in my page by switching
to the coranto 1.24 news script its much more powerful than cutenews
and I was able to do anything I wanted within vBB using the phpinclude
functions.
let me know if you need any help I am more than willing to share my
configs and code.
JohnBee
11-25-2004, 05:13 AM
Anyone know how to call a template from a custom style?
I want to copy and modify some common templates but I don't want things
getting all messy.
How would I pull data from an alternate style other than default?
ex: frontpage style
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.