View Full Version : How to create your own vBulletin-powered page! (uses vB templates)
Boofo
11-25-2004, 08:34 AM
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.
I would be interested in seeing this. ;)
Takamine334
11-28-2004, 12:51 AM
excellent!
yellow281
11-28-2004, 11:12 PM
Couldnt this be taken one step further and include the categories and sub categories from one of the 50 forums I have to create. It would sure save me a hell of alot of typing setting up ALL these forums when theyre all the same. Be great to do one, then copy them all over doing by doing this and renaming them. Not sure how they would all link together though.. I guess I could set up the master page and have all my 50 categories link to URL's for the other boards. Least they would all be drawing off the same user database to create the larger board I wanted.
Can someone show me if this could be done using this code.. but modified somewhat?
Thanks
Kate
Xtrm2Matt
11-30-2004, 04:49 PM
Could someone make some code for me so it displays the posts from a certain forum (with forumid 38) post on the front page of a non-vB powered website? I'd also like templates.
I've tried and failed... someone please help!!!
traderx
12-20-2004, 02:51 PM
Ok... I was able to create the page to work in the /forum directory, and it work as posted. But I really want it to work in /forum/glossary directory. I finally was able to get it to work to show the header and footer AND the test template, BUT it doesn't use my CSS for the formatting, could this be because I am using it saved as a file, or did I forget to add something as this is not in the /forum directory but in my /forum/glossary directory. Any help on this would be great as I could really use this.
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'test1'); // 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/jaxen/public_html/4xtraders/forum/');
require('./global.php');
// ################################################## #####################
// ######################## START MAIN SCRIPT ############################
// ################################################## #####################
$navbits = array();
$navbits[$parent] = 'Test Page';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('test') . '");');
?>
T3MEDIA
12-20-2004, 03:01 PM
unfortunately, i have found the same problem with some of Gary's threads.
He is probably too busy.
Heh...Gary... dont tell me about this guy...
traderx
12-21-2004, 05:25 PM
3) Replace eval('print_output("' . fetch_template('TEST') . '");'); with your PHP stuff.
Could you pls give a working example so I don't screw it up :)
I am having a hell of a time getting a stand alone glossary script to work and I am now totall lost on what to do to make it happen.
Xtrm2Matt
12-21-2004, 05:59 PM
Could someone make some code for me so it displays the posts from a certain forum (with forumid 38) post on the front page of a non-vB powered website? I'd also like templates.
I've tried and failed... someone please help!!!
Done this and much more now without using any CMS's or anything, just code.
I have stats.. news.. log-in form.. user information.. and more on a non-vB page using only code now.
Thanks anyway :)
T3MEDIA
12-22-2004, 11:42 AM
Done this and much more now without using any CMS's or anything, just code.
I have stats.. news.. log-in form.. user information.. and more on a non-vB page using only code now.
Thanks anyway :)
insted of braggin why not help the poor chap? He is asking for help.
T3MEDIA
12-22-2004, 11:45 AM
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???
I know its old but you wont get support from this guy since he stole the idea from somewhere else.
Xtrm2Matt
12-22-2004, 11:52 AM
insted of braggin why not help the poor chap? He is asking for help.
I wasn't bragging, notice I quoted myself stating "I no longer need help with this".
Dionysis
12-31-2004, 10:31 PM
i did this hack for the .js files
"$vboptions[bburl]" in headerinclude
along w/ the chmod('/vbulletin/'); for globals.php
but the breadcrumbs still don't work properly... it's weird since a "view source" shows an absolute path to the .js files (so what could possibly be wrong?)
2ndly,
i'd like to create more pages outside of the forum index, is it possible to have database driven pages for these things (instead of creating a new test_x.php for each, which is totally unreasonable). the use would be to somehow integrate my current article system w/ vbulletin so that i can use all the vbulletin functions on those pages.
n_wattam
01-02-2005, 12:13 AM
Hi, i did the test example and it worked great cheers, how ever i dont want to call the template from its own file, instead i want to call the template within an exisiting one...
Does anyone know how to do this... Lets say for argument sake we are are going to call the template and display it under the navbar... Therefore i would need the correct code which i would then place in the navbar template..
ResaleBroker
01-02-2005, 12:23 AM
That works great! Thank You!
ogden2k
01-11-2005, 11:28 PM
How can I get this to work in a separate folder? I used this code:
// ######################### REQUIRE BACK-END ############################
chdir('/home/public_html/forums/');
require_once('./global.php');But I have the CSS saved in a file and it's broken now. How do I resolve this issue?
deathemperor
01-12-2005, 12:50 PM
How can I get this to work in a separate folder? I used this code:
// ######################### REQUIRE BACK-END ############################
chdir('/home/public_html/forums/');
require_once('./global.php');But I have the CSS saved in a file and it's broken now. How do I resolve this issue?
if your css has broken, just go to your ACP and go to edit style or templates and save it, vb3 will save a new css file in your server.
the code you used is correct.
Hi, i did the test example and it worked great cheers, how ever i dont want to call the template from its own file, instead i want to call the template within an exisiting one...
eval('$varible_NAME = "' . fetch_template('template_NAME') . '";');
if you want to have something under navbar (or anything else) in your custom (non-vb) files place that line in the file and in the template which was created with:
eval('print_output("' . fetch_template('TEMPLATE_NAME') . '");');
call out $varible_NAME, you can place it everwhere you want to.
and in vb3 files, well...just repeat the process ^^
2ndly,
i'd like to create more pages outside of the forum index, is it possible to have database driven pages for these things (instead of creating a new test_x.php for each, which is totally unreasonable). the use would be to somehow integrate my current article system w/ vbulletin so that i can use all the vbulletin functions on those pages.
pay attention: the file names could be whatever you want, it doesn't have to be exactly like the template names. It's just easier for you if you use the file names same as templates. so it's possible to create your own database driven pages, if you notice that's how people making hacks ^^
ogden2k
01-17-2005, 09:25 PM
No, there is nothing wrong with my CSS. I save the CSS as a file and the java script does not work either when I try to use subdomain.binarydreams.us/index.php with the code I mentioned.
ResaleBroker
01-21-2005, 06:28 PM
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');
;)With this code, I can get the page to "display" properly but the "links" are not correct. They are pointing to the "root" directory but my forum is in a folder/directory titled "forums."
Any ideas?
wrang
02-08-2005, 05:37 PM
Thanks for a great thing. It?s work fine with 3.0.6
Like this (http://www.saltvattensguiden1.se/forum/regler.php)
Is it possbile to have a include site insted of the text.
If it works how should i do to have the ReviewPost included
http://www.saltvattensguiden1.se/produktguide/
whats the code to do this?
SVTBlackLight01
02-08-2005, 06:00 PM
With this code, I can get the page to "display" properly but the "links" are not correct. They are pointing to the "root" directory but my forum is in a folder/directory titled "forums."
Any ideas?
You will have to change all your links to include the full URL like thisa href="$vboptions[bburl]/register.php?$session[sessionurl]">
wrang,
Reviewpost has an option to use the vBulletin styles by default. You don't need to use this hack. ;)
wrang
02-09-2005, 03:08 AM
Reviewpost has an option to use the vBulletin styles by default. You don't need to use this hack. ;)
If they had i would use it ;)
Photopost is intergrate with Vbulletin but not the Reviewpost :ermm:
So any clue
SVTBlackLight01
02-09-2005, 09:44 AM
I'm running a vB integrated reviewpost at my site. Check it out. http://www.modernengineuity.com/rev/ ;)
ogden2k
02-09-2005, 01:07 PM
Has anyone successfully setup this hack so it works in a different folder? Such has public_html\foldername?
I made a few posts about this awhile back (p18) and none of the suggestions help.
SVTBlackLight01
02-09-2005, 07:02 PM
It's working fine for me with 3.0.3. I have a few directories set up outside vb.
http://www.modernengineuity.com/specs/
http://www.modernengineuity.com/prod/cobra.mod?
http://www.modernengineuity.com/ebay.php
http://www.modernengineuity.com/calc/
keymistress
02-15-2005, 04:50 AM
i've got it working so far but need help with some extras, say i want someone with 500 or more posts to have access to the page how do i retrieve that info? is it possible to retrieve the username as a variable as well? cos i need these info for a form, thanks in advance!
Adrian Schneider
02-15-2005, 05:20 AM
if ($bbuserinfo[posts] >= 500)
{
eval('print_output("' . fetch_template('template_name') . '");');
}
else
{
print_no_permission();
}
This should work.
For username, it is just $bbuserinfo[username]. $bbuserinfo[fieldname] displays the field value of the member browsing the page. (so you can use tons of others as well).
keymistress
02-15-2005, 05:28 AM
right, thanks! got it working!
zemic
02-15-2005, 01:03 PM
Is it possible to create my pages in Dreamweaver, and put this vbulletin code around it so I get the header and footer + verfication thing working.??
I want to create a web site onto my Vbulletin forum. I dont want to be copying and pasting HTML into the vbulletin template system everytime I need to update the pages.
deathemperor
02-15-2005, 02:50 PM
Is it possible to create my pages in Dreamweaver, and put this vbulletin code around it so I get the header and footer + verfication thing working.??
I want to create a web site onto my Vbulletin forum. I dont want to be copying and pasting HTML into the vbulletin template system everytime I need to update the pages.
no you can't, you must write do exactly this thread guy, then in template you can do like making a HTML file in DW. it's jut you must have a php file 1st.
zemic
02-16-2005, 07:58 AM
Yeah I understand the way it works because I've got around 10 pages already, Its just im creating loads more pages now which non Vb experts need 2 update :( . Never mind, will think of something. Thanks :)
HuangA
02-19-2005, 05:45 AM
Anyone know how to modify the templates so that they work with this hack? Namely, the breadcumb and footer.
I am running into a problem right now because my forum is installed on /forums/ but I want to have these pages located in / instead. Since vB doesn't output full path, my URL for those two templates are http://domain.com/page.php, which gives noting but fugly 404's. I've tried <if condition="THIS_SCRIPT == 'lega'">forum/</if> but that doesn't work at all as nothing comes up! Is there any thing that I'm missing on? Does anyone know how to fix it?
SVTBlackLight01
02-19-2005, 07:01 AM
As far as the (footer) links using the right path. It's been discussed plenty in this thread. A few posts up in post 271 nad again here (https://vborg.vbsupport.ru/showpost.php?p=491671&postcount=125) in post 125.
To solve the navbar issues, I created a new navbar for the non-vb pages and hardcoded the breadcrumb links.
Redclan
02-23-2005, 09:10 AM
Dude, you are the man! All said and done at my site ;) www.bahamascope.net, will finish update now
Xtrm2Matt
02-23-2005, 02:00 PM
Hi,
Could anyone email (or post) some code to display the current active users on the forum on a NON-VB page? Such as:
There are current xx users online
- x registered
- x guests
..etc? I don't think it'd be too hard but obviously it's too hard for me! :)
Thanks a lot if anyone can help,
Matt
Challenge
03-06-2005, 04:56 PM
Hi.
A bit late question here baybe, hope you still help out.
I am about to make a "results" page, with your mod. I want to make a drop down list (without links) that shows the latest races won.
Anyway, how can i make a drop-down list like the 'Quick Links', just inside your mod? (not in navbar ;))
Regards,
Challenge
keymistress
03-10-2005, 05:18 AM
had to allow openbase redirect...
Revoverdrive
03-11-2005, 08:32 PM
I want to integrate only certain aspects of the forums into my site. I want to stay away from templates.
Mainly I want to get the information thats generating on the welcome/home page for the forums into the new site.
If the visitor is not logged in then the login form replaces the user CP.
Any suggestions ?
Revoverdrive
03-14-2005, 02:41 PM
I figured it out.
Jenta
04-16-2005, 04:48 PM
Also if guests are not allowed to view your forums, then they can't view these new pages you create, etc. :)
been going nuts with this on some other pages that call global.php
didnt make any sense to me since i had no restrictions on the script
guess its just the way vb behaves?
is there some trickey i can perform so that guest with no forum permission can view custom pages?
Snake
04-17-2005, 05:17 PM
Hehe, thanks for this tut. ^_^
CrimsonGT
04-20-2005, 05:24 AM
Hi,
Could anyone email (or post) some code to display the current active users on the forum on a NON-VB page? Such as:
There are current xx users online
- x registered
- x guests
..etc? I don't think it'd be too hard but obviously it's too hard for me! :)
Thanks a lot if anyone can help,
Matt
I too am looking for this...
JimBeam
05-13-2005, 01:31 AM
Thanks for the information! matters a lot :) CHEERS!
CSS59
05-13-2005, 01:56 AM
http://www.modernengineuity.com/prod/cobra.mod?
wow, how did you make the vb look alike table?
Michaelb.dk
05-23-2005, 09:48 PM
Where should i put the template?
attroll
05-24-2005, 05:12 AM
Where should i put the template?
In your Admincp you need to create a template.
JohnBee
05-24-2005, 03:05 PM
Is there a way to use an include function and call some other .php
data into this page?
When I try it, it never shows any data past the "eval templates"
I need to display some none vBul. data in a page as well and I cannot use
the php include start methgos because the file is static (changes) for every
user.
Michaelb.dk
05-30-2005, 01:56 PM
In your Admincp you need to create a template.
OK Thanks i found out :)
@include("localhost/1/get_counts.php?mode=bands"); this includes produces a number how could i asign this number to a $varible to i can use it in a template ?
paul41598
06-02-2005, 03:56 PM
Im not understanding this hack. Is this a replacement for the cpms system? Where I could take my current homepage, and just make php includes to call whatever info i want?
Adrian Schneider
06-03-2005, 12:29 AM
No it's the basic script vBulletin uses for all of its pages. You could make it into anything you want. :)
Personally I did this for all my custom content, more control this way rather than using a CMS, but if you're not much of a coder, go with the CMS.
Marcus Lau
06-10-2005, 08:46 AM
Good stuffs!.
MrToasty
06-15-2005, 03:15 PM
Would this page need to be altered much, if at all for v3.5? I've yet to try it, but has anyone had success?
Andreas
06-15-2005, 03:24 PM
It should work the same in 3.5, except the WOL stuff which can be done with Plugins now.
theoperative
06-24-2005, 09:01 AM
This hack works fine for me when logged in...however, when I am not logged in...I get this error message on a blank white page:
Unable to add cookies, header already sent.
Line 2
Thanks for the help.
Edit: PROBLEM fixed...It was white space I had left before the <?php at the top.
JohnBee
06-24-2005, 09:50 AM
Im not understanding this hack. Is this a replacement for the cpms system? Where I could take my current homepage, and just make php includes to call whatever info i want?
It works as advertised but know that you are limited to declaring your php includes
through variables in your php include start template, you cannot do any php include
straight from your pages. (which is quite limiting)
otherwise I would use it all over my site.
mismatch
06-24-2005, 11:49 AM
I've read all 21 pages of this and have the same qu a number of others had.
I can get this to work within my forums directory - which is great, thank you, especially for additional info pages.
But I want it working outside my forum directory in my own folder as I have a lot of other pages i simply want to integrate the navbar/login aspect with.
I have tried the suggestions eg chdir and stating which directory I am working in and I've tried commenting out the template call in preference of my own text and also tried someone suggestion of putting
$vbulletin[bburl] at the top. my navbar and vb header scripts etc.. all have full url so the links should work - if they ever show lol!
like others all I get is a blank page which suggests its not finding something.
Can someone repost this script as though it were for a page that resides outside the forums as no doubt it is simply an incorrect pathway or similar on my part - eg I get lost with the ../howmanydots../andslashes./beforethefolder/
Many Thanks
Snake
06-27-2005, 10:21 AM
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
Uh... what do you mean by that?
Adrian Schneider
06-27-2005, 03:54 PM
It allows one php file to output more than one template according to the address bar.
// file.php?do=eggnog
if ($_REQUEST['do'] == 'eggnog')
{
// Outputs the eggnog template
eval('print_output("' . fetch_template('eggnog') . '");');
}
// file.php?do=vbulletin
elseif ($_REQUEST['do'] == 'vbulletin')
{
// Outputs the vbulletin template
eval('print_output("' . fetch_template('vbulletin') . '");');
}
Stachel
06-30-2005, 01:56 AM
Then, putting
$eggnog
is what triggers that "if" to execute?
Stachel
Kirk Y
07-08-2005, 01:45 AM
No, putting:
// file.php?do=eggnog
if ($_REQUEST['do'] == 'eggnog')
{
// Outputs the eggnog template
eval('print_output("' . fetch_template('eggnog') . '");');
}
Would make it so that typing www.yoursite.com/forum/test.php?do=eggnog (http://www.yoursite.com/forum/test.php?do=eggnog) would show the eggnog template. Typing www.yoursite.com/forum/test.php (http://www.yoursite.com/forum/test.php) would show an entirely different page. Make sense?
Edit: I just remembered that I had a question.
$navbits[$parent] = 'Site Rules';
Makes the Site Rules show in the navbar thing, is there anyway to show something under it? Like another thing? I hope that makes sense...
Is there anyway to get it to wroth with this link? http://www.9tnclan.com/bfostat/
Right now I'm trying to do it with an Iframe but it just loads back to the stat page.
example. http://www.9tnclan.com/forum/bfs.php
Toeludeu
07-22-2005, 11:12 AM
Sorry if this has been asked already but man I wasn't gonna read through 21 pages to find it.
How can I make a page viewable to registered members only?
Cheers
attroll
07-22-2005, 12:42 PM
Sorry if this has been asked already but man I wasn't gonna read through 21 pages to find it.
How can I make a page viewable to registered members only?
Cheers
I think this was covered in post #31
Toeludeu
07-22-2005, 01:29 PM
Sorted - Thanks. :rolleyes:
Hi Thanks for the Hack! Ive created a couple of pages.
I put some php coding into the template in ACP to run a news feed but it doesnt work, just shows the coding on the page.
Can these templates use php coding? or just scrictly HTML? Is there a way around this, would I have to put that php code within the .php file for it to work?
Thanks
Adrian Schneider
07-23-2005, 02:36 AM
Put it in the PHP file, instead of using echo/print use variables, then just put the variable in the template. If that is too much work, I think you can use something like this:
ob_start();
// All your PHP you want in the template here
$above = ob_get_contents();
ob_end_clean();
Then putting $above in your template would show all the PHP.
Put it in the PHP file, instead of using echo/print use variables, then just put the variable in the template. If that is too much work, I think you can use something like this:
ob_start();
// All your PHP you want in the template here
$above = ob_get_contents();
ob_end_clean();
Then putting $above in your template would show all the PHP.
Thanks Alot TheSpecialist! Ill try this out. Where would I put this coding you have above? Anywhere within the .php file?
I tried it and it didnt work. How do I delete a template that I just created in the ACP? I dont see an option for it. I just want to get rid of it. Ill make my own .php files for the news feeds. Thanks
Adrian Schneider
07-23-2005, 04:43 AM
Well post your PHP file, hard to tell what you're trying to do without seeing it. Revert = delete, unless it is a default template, then it just goes to the unedited version (or inherited).
derekivey
07-23-2005, 04:39 PM
Anyone know how to make it use just one style, instead of the style the user is currently on?
Adrian Schneider
07-23-2005, 04:56 PM
global.php
Find define('STYLEID', $style['styleid']);
Above it, addif (THIS_SCRIPT == 'yourscriptname')
{
$styleid = X
}
Make sure you have yourscriptname defined in your custom page.
derekivey
07-24-2005, 12:47 AM
Thanks :)
Didn't work :(
MRGTB
07-26-2005, 04:11 PM
I have a question, how can you create the template so it uses it own custom folder to store the template in, so the option is there to restore the template to original state.
Just like all the other vb templates use there own folders. Like FORUMHOME stores all the forumhome templates for example, if you understand what I mean to tidy things up much better in the admin template section.
MRGTB
08-02-2005, 02:12 PM
I hate to reply to myself - but anybody got an answer to the above question? :surprised:
attroll
08-02-2005, 04:17 PM
I have a question, how can you create the template so it uses it own custom folder to store the template in, so the option is there to restore the template to original state.
Just like all the other vb templates use there own folders. Like FORUMHOME stores all the forumhome templates for example, if you understand what I mean to tidy things up much better in the admin template section.
I know you can create a folder so that it is stored in its own folder but I don't know any way to have the template have a default code.
Adrian Schneider
08-02-2005, 04:24 PM
To create the categories to store them in edit adminfunctions_template.php, at the very end add to the array.
'prefix' => 'Text', remember that for it to work, the template name must be "prefix" or contain "prefix_", and the text "Templates" is automatically added.
To be able to revert it, you must add it into the MASTER STYLE {requires being in debug mode}.
m0nde
08-02-2005, 06:30 PM
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');
;)How can that work? Wouldn't you have to put the whole path to global.php once you change the directory?
- Sid
MRGTB
08-02-2005, 07:05 PM
To create the categories to store them in edit adminfunctions_template.php, at the very end add to the array.
'prefix' => 'Text', remember that for it to work, the template name must be "prefix" or contain "prefix_", and the text "Templates" is automatically added.
To be able to revert it, you must add it into the MASTER STYLE {requires being in debug mode}.
Can you please be a little more clear in laymans terms. I really don't understand what your saying for me to do :disappointed:
Adrian Schneider
08-02-2005, 07:12 PM
Okay, in /includes/adminfunctions_template.php there is an array at the very end of the file:
// template groups
$only = array
(
// phrased groups
'buddylist' => $vbphrase['group_buddy_list'],
'calendar' => $vbphrase['group_calendar'],
'faq' => $vbphrase['group_faq'],
...
Each of these creates a 'folder' into the template manager to oraganize your templates. You can add your own in using the above format (left part is the prefix, right part is the 'folder' Name (which automatically adds Templates to the end).
Example:
'attachmentlist' => $vbphrase['group_attachment_list'],
'subscription' => $vbphrase['group_paid_subscriptions'],
'league' => 'League', // I added this one
'aaa' => 'AAA Old Backup'
MRGTB
08-02-2005, 11:41 PM
Okay, in /includes/adminfunctions_template.php there is an array at the very end of the file:
// template groups
$only = array
(
// phrased groups
'buddylist' => $vbphrase['group_buddy_list'],
'calendar' => $vbphrase['group_calendar'],
'faq' => $vbphrase['group_faq'],
...
Each of these creates a 'folder' into the template manager to oraganize your templates. You can add your own in using the above format (left part is the prefix, right part is the 'folder' Name (which automatically adds Templates to the end).
Example:
'attachmentlist' => $vbphrase['group_attachment_list'],
'subscription' => $vbphrase['group_paid_subscriptions'],
'league' => 'League', // I added this one
'aaa' => 'AAA Old Backup'
Your a star, that works great and I created a new line called:
'vbindex' => 'vBindex',
And it moved all my loose vbindex templates into the folder so everything is nice and neat now. I have one other question though that I also hope you can help me with the finish it off.
By default when you go into a templates folder and view a template there, there is an option to view the default template code in-case you mess up. So you can copy and paste that code back intoi the box and save.
I noticed even though I now have all my vbindex templates in there own folder under default template, the option to view default template just shows me a blank white box with no code in it. Is it possible to make that show the default code for all my vbindex templates when clicked for each one?
Marco van Herwaarden
08-03-2005, 04:34 AM
That is because they are custom templates. If you want to show them also as default, you will have to set them manually in the database to belong to styleid -1.
This can however mean that they get removed on a vB upgrade.
/me didn't have his coffee yet, so use the above only on a testboard.
MRGTB
08-03-2005, 12:44 PM
Does that also mean then if you make some manual edits to some of the default templates, like when you add a new mod that requires some edits in FORUMHOME templates, the chances are an update to an higher version can mess things up becuase they were default templates edited,
Out of interest how would you go about making them changes in your database. Would you go into the template section and edit each template and change the ID.
JMH11788
08-03-2005, 11:53 PM
I have this hack working perfect for my forum rules (http://forums.theoverclocked.com/forumrules.php), but I tried making another page today using a template called ARTICLES and a .php file called articles.php. I modifed the template and .php file correctly, but when I go to http://forums.theoverclocked.com/articles.php, I get that error. :confused: Can anyone help?
EDIT: Nvm...appears to be working now....wierd
Selene
08-04-2005, 12:57 AM
thanx
derekivey
08-04-2005, 01:18 AM
I still can't get it to show the page in a certain style, it always shows it in the style the user is using. Any ideas?
MRGTB
08-04-2005, 03:14 PM
Sorry can't help you there, I only use the default style here, so I don't have that problem.
But I also would still like to know how you edit your database so the new template displays a default template for in the edit template page.
James Grant
08-04-2005, 08:27 PM
This is a really useful bit of code, but i want to change the style to something different too :ermm:
TylerL
08-06-2005, 04:47 PM
Am I the ONLY one with this error?
Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/myovercl/public_html/sudburyskate/skatespots/index.php on line 43
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'index'); // 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(
'skatespots',
);
// pre-cache templates used by specific actions
$actiontemplates = array(
);
// ######################### REQUIRE BACK-END ############################
chdir('$vboptions[homeurl]/');
require('./global.php');
// ################################################## #####################
// ######################## START MAIN SCRIPT ############################
// ################################################## #####################
$navbits = array();
$navbits[$parent] = 'Sudbury Skate Spots'';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '"; ');
eval('print_output("' . fetch_template('skatespots') . '"); ');
?>
Created a template called 'skatespots'. The file is located at:
http://www.sudburyskate.com/skatespots/index.php
Adrian Schneider
08-06-2005, 05:13 PM
$navbits[$parent] = 'Sudbury Skate Spots'';
should be
$navbits[$parent] = 'Sudbury Skate Spots';
(it had an extra quote)
Also, chdir('$vboptions[homeurl]/');
won't work, as $vboptions is set after global.php is ran, and of course even if it was set, you can't use variables inside single quotes.:)
This is a really useful bit of code, but i want to change the style to something different too :ermm:
Assuming you are on 3.0.x: (mine is 3.0.7, may be a little dif)
global.php - find:
$styleid = intval($styleid);
Above it, add:
if (THIS_SCRIPT == 'yourscriptname')
{
$styleid = X;
}
(where yourscriptname is what you have defined at the top of your page)
cnczone
08-10-2005, 04:37 PM
Has this been redone for VB 3.5?
Adrian Schneider
08-10-2005, 04:38 PM
Has this been redone for VB 3.5?
Tis the exact same for both. :)
JohnBee
08-11-2005, 06:10 PM
I would l like to use vB templates to design a dynamic page (with changing content)
specificaly the page is for news and would have a: Page 2 >> Page 3 >> type of arrangement. but I want to keep the vB header and footer active.
Normally this is not a problem on a regular .php page because I can use php includes but using vBulletins php include variable in the php_include_start template I am limited to one variable. The news page links are generated on the fly with there own unique ID's.
Is there any way to call php includes from an external file or something to get this working? can this addon do this?
Any help on this would be greatly appreciated
AndyA
08-15-2005, 07:00 PM
Great I've got the page showing http://www.throttlejockey.co.uk/forum/info.php but am I right in thinking that any text is entered into the template and not the page itself ?
How do I get links or images to work on my new page ?
BigIke
08-15-2005, 09:52 PM
Great I've got the page showing http://www.throttlejockey.co.uk/forum/info.php but am I right in thinking that any text is entered into the template and not the page itself ?
How do I get links or images to work on my new page ?
Yes. What you want to put on the actual page goes into the template. However, whatever goes into the template must be html. So you can't put http://img.photobucket.com/albums/v185/andyaveyard/Tan%20Hill%20Meet%204-9-04/P9060045.jpg that url and expect to have the image come up, you must use html like this:
<img src="http://img.photobucket.com/albums/v185/andyaveyard/Tan%20Hill%20Meet%204-9-04/P9060045.jpg"></img>
keymistress
08-16-2005, 03:56 AM
erm... for those who are using this mini mod for sub-domains, you have to add these two steps for it work:
find require_once('./global.php');
and add this before it define('CHDIR_PATH', '/usr/local/psa/home/vhosts/yourdomain.com/subdomains/forums/httpdocs'); //just an example, please change to your own forum's full path
chdir(CHDIR_PATH);
next you'll need to copy the login.php from your forums folder and paste it in your sub-domain directory. also find require_once('./global.php');
and add this before it define('CHDIR_PATH', '/usr/local/psa/home/vhosts/yourdomain.com/subdomains/forums/httpdocs'); //just an example, please change to your own forum's full path
chdir(CHDIR_PATH);
after that the mod will work for your sub-domain... just something i discovered while trying it for my own site... hope it helps!
eljeffe
08-21-2005, 03:03 AM
I created a index.php file for our IRC chat client. I built a vbulletin header and footer wraper for it and it works like a champ. However, my chat client is outside the vB forum directory and the navbar links contain the wrong URL.
For the purposes of this example, my forums directory is in: http://www.mydomain.com/forums
My chat directory is in: http://www.mydomain.com/chat
I'll eventually have several other features that will be a subdirectory off of the http://www.mydomain.com/ website (i.e., chat, photos, files, journal, etc...)
Anyone have any ideas on what I can do to fix this. Here is the code in my index.php file:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'index'); // 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(
'java_irc_client',
);
// pre-cache templates used by specific actions
$actiontemplates = array(
);
// ######################### REQUIRE BACK-END ############################
chdir('/home/www/mydoman.com/forums');
require_once('./global.php');
// ################################################## #####################
// ######################## START MAIN SCRIPT ############################
// ################################################## #####################
$navbits = array();
$navbits[$parent] = 'Chat Room';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('java_irc_client') . '");');
?>
Any ideas are appreciated.
Thanks
MRGTB
08-21-2005, 03:21 AM
Can you not move your IRC into your forums folder, things would be much easier for you then
eljeffe
08-21-2005, 03:30 AM
Can you not move your IRC into your forums folder, things would be much easier for you then
I'm trying to keep my vb directory as clean as possible. I have to imagine there is some way to do this without throwing everything into the top directory of the forums.
Can you not move your IRC into your forums folder, things would be much easier for you then
Gary,
On second thought, I don't have a problem with keeping chat.php in my forum directory and accessing the chat system via http://www.mydomain.com/forum/chat
However, I would like to store the jar files, images, and support files outside of the forum directory. Even a subdirectory under forums (like chat) would work for me.
o0stephane0o
08-26-2005, 12:44 PM
How would I create a page that only group ID 6, 8, 13 can see?
I tried with the information page 2 but it doesn´t work
Adrian Schneider
08-26-2005, 03:09 PM
After calling global.php (and before the main output)
if (!is_member_of($bbuserinfo, 6) AND !is_member_of($bbuserinfo, 8) AND !is_member_of($bbuserinfo, 13))
{
print_no_permission();
}
Replace "$bbuserinfo" with "$vbulletin->userinfo" if you are using 3.5
---MAD---
08-27-2005, 11:32 AM
the online thing doesnt work :S
Adrian Schneider
08-27-2005, 06:19 PM
the online thing doesnt work :S
Yes it does.
What version of vBulletin are you using? Post the edits you made.
geoff4787
08-30-2005, 05:15 AM
Thanks, great tutorial!
o0stephane0o
08-30-2005, 07:27 AM
SirAdrian it works like a charm, thanks a lot ;)
digidivakathy
08-31-2005, 12:43 PM
PLEASE could someone help me with this?
I have made a vBulletin powered page with bio information about my team members and have managed to get everything perfect in FF, but I have one little problem in IE and don't know how to fix it. The time stat is over to the far right instead of at the bottom above the nav bar. I'm sure it's something very tiny, but I just don't know what it is...can anyone help me?
http://www.digiscrapdivas.com/forums/AAM_suzy.php
That's the page. If you have any other suggestions on how to make it look better, feel free to let me know, but I'm happy with it other than the little problem I described.
I'm sorry if this isn't the right place to ask this, but there are so many help forums out there that I didn't know where to start.
Thanks so much!!
Huijting
08-31-2005, 08:46 PM
After calling global.php (and before the main output)
if (!is_member_of($bbuserinfo, 6) AND !is_member_of($bbuserinfo, 8) AND !is_member_of($bbuserinfo, 13))
{
print_no_permission();
}
Replace "$bbuserinfo" with "$vbulletin->userinfo" if you are using 3.5
Thank U for this one , i have seen all the pages :squareeyed: and found it here
Rob
Adrian Schneider
08-31-2005, 09:01 PM
I have made a vBulletin powered page with bio information about my team members and have managed to get everything perfect in FF, but I have one little problem in IE and don't know how to fix it. The time stat is over to the far right instead of at the bottom above the nav bar. I'm sure it's something very tiny, but I just don't know what it is...can anyone help me?
Try cleaning up your HTML a bit in your template, just as an example I noticed you opened a new <tr> without closing the last one, things like that will break the page, just keep in mind that IE and FFX render things differently, so it may appear fine on one and not the other...
Also, best place for that kind of thing would be the PHP / MySQL / JS / (X)HTML (https://vborg.vbsupport.ru/forumdisplay.php?f=15) forum.
MRGTB
08-31-2005, 11:56 PM
Then find: case 'modcplogin':
$userinfo['action'] = $vbphrase['moderator_control_panel_login'];
break;
Below add: case 'test':
$userinfo['action'] = 'Viewing Test Page';
break;
Just to slightly improve on this for people who want to also add a link on there "Who's Online" page that links to the test page when clicked. You can also use this as a replacment for the above bottom code.
case 'test':
$userinfo['action'] = 'Viewing Test Page';
$userinfo['where'] = "<a href=\"test.php\">Test</a>";
break;
BlueBulletRL
09-11-2005, 12:17 AM
I am currently trying to integrate a paypal store that I had purchased into my website. I used the template in the thread and couldn't get it to work the store actually uses a few files that it calls and uses. I tried adding the main page which calls all the files to the template file and use the ob_start(); thing such as you pointed out but still am unable to get it to bring up my page. Any insight and help and kicks in the right direction would be greatly appreciated. Oh and also my paypal store uses a mysql backend. Thanks
ok sweet looks like I got it to work........somewhat I get the page to display like my store front however when I click on one of my products instead of reloading the page like it should with just the product and all the details it just reloads my whole front page again. This is driving me nuts I'm gonna keep trying but if anyone has any ideas please let me know. Oh and it uses this at the end of the page do=buy&pid=6 within the actual file it does a post within its self thanks guys I NEED HELP!
Nullifi3d
09-16-2005, 06:41 PM
After calling global.php (and before the main output)
if (!is_member_of($bbuserinfo, 6) AND !is_member_of($bbuserinfo, 8) AND !is_member_of($bbuserinfo, 13))
{
print_no_permission();
}
Replace "$bbuserinfo" with "$vbulletin->userinfo" if you are using 3.5IMO, an array would be better.
vB 3.0.x:
if (!in_array($bbuserinfo['usergroupid'], array(6,8,13))) print_no_permission();
vB 3.5.x:
if (!in_array($vbulletin->userinfo['usergroupid'], array(6,8,13))) print_no_permission();
unknowngiver
09-20-2005, 11:31 PM
OKAY
this is not working
So i add it 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">AF banner Maker</td>
</tr>
<tr>
<td class="alt1"><?php
include("header.inc");
?>
<script type="text/javascript">
<!--
function showimage() {
if (!document.images)
return
document.images.banner.src=
'banner/' + document.fastbanner.select_banner.options[document.fastbanner.select_banner.selectedIndex].value
}
//-->
</script>
<script type="text/javascript">
<!-- Begin
function showColor(val) {
document.fastbanner.titlecolor.value = val;
}
function showColor2(val2) {
document.fastbanner.tagcolor.value = val2;
}
// End -->
</script>
<div align="center">
<TABLE summary="table" cellspacing="0" cellpadding="0" width="100%">
<form action="banner.php" name="fastbanner" method="post">
<TR>
<TD align="center">
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td width="20%" aign="top">
<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
<TR>
<TD class="border">
<TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
<TR>
<TD colspan="1" class="header">
Instructions
</TD>
</TR>
<TR>
<TD class="main" colspan="4">
? Select the banner to edit.<BR>
<BR>
? Enter Title and Tag Line as this will be the text that will be on your banner.<BR>
<BR>
? Choose your Title and Tag Line colors.<BR>
<BR>
? Choose your Title and Tag Line coordinates. You can click the banner where you want the text to see the coordinates to use.<BR>
<BR>
? Submit the information and your banner will be created.
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</td>
<td width="5%"> </td>
<td width="75%">
<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
<TR>
<TD class="border">
<TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
<TR>
<TD colspan="5" class="header">
Select Your Banner.
</TD>
</TR>
<TR>
<TD class="main" colspan="5" align="center">
<select name="select_banner" onChange="showimage()">
<?php
$open = opendir("banner");
while ($files = readdir($open)) {
$filename = $files;
if ($filename == "."){
print "\n";
}
elseif ($filename == ".."){
print "\n";
}
else {
print "<option value=\"$filename\">$filename</option>\n";
}
}
?>
</select><br>
<table cellspacing="0" cellpadding="0" width="484" summary="Banner Table">
<tr>
<td rowspan="2"><img src="Yscala1.gif" width="16" height="79" border="0" alt=" " /></td>
<td><img src="Xscala1.gif" width="468" height="15" border="0" alt=" " /></td>
</tr>
<tr>
<td valign="top"><img ismap onclick="alert('Coordinates:\n\nX POS: '+self.event.offsetX+'\nY POS: '+self.event.offsetY);" name="banner" src="banner/ban01.png" width="468" height="60" /></td>
</tr>
</table>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE><br>
<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
<TR>
<TD class="border">
<TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
<TR>
<TD colspan="1" class="header">
Pick your title text.
</TD>
</TR>
<TR>
<TD class="main" colspan="4">
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td width="100"><input name="titletext" value="YourSite" size="43" maxsize="80"></td><td><INPUT type="text" size="7" name="titlecolor" maxlength="7" value="#009900"></td>
</tr>
<tr>
<td>
<map name="colmap">
<area shape="rect" coords="1,1,7,10" href="javascript:showColor('#00FF00')">
<area shape="rect" coords="9,1,15,10" href="javascript:showColor('#00FF33')">
<area shape="rect" coords="17,1,23,10" href="javascript:showColor('#00FF66')">
<area shape="rect" coords="25,1,31,10" href="javascript:showColor('#00FF99')">
<area shape="rect" coords="33,1,39,10" href="javascript:showColor('#00FFCC')">
<area shape="rect" coords="41,1,47,10" href="javascript:showColor('#00FFFF')">
<area shape="rect" coords="49,1,55,10" href="javascript:showColor('#33FF00')">
<area shape="rect" coords="57,1,63,10" href="javascript:showColor('#33FF33')">
<area shape="rect" coords="65,1,71,10" href="javascript:showColor('#33FF66')">
<area shape="rect" coords="73,1,79,10" href="javascript:showColor('#33FF99')">
<area shape="rect" coords="81,1,87,10" href="javascript:showColor('#33FFCC')">
<area shape="rect" coords="89,1,95,10" href="javascript:showColor('#33FFFF')">
<area shape="rect" coords="97,1,103,10" href="javascript:showColor('#66FF00')">
<area shape="rect" coords="105,1,111,10" href="javascript:showColor('#66FF33')">
<area shape="rect" coords="113,1,119,10" href="javascript:showColor('#66FF66')">
<area shape="rect" coords="121,1,127,10" href="javascript:showColor('#66FF99')">
<area shape="rect" coords="129,1,135,10" href="javascript:showColor('#66FFCC')">
<area shape="rect" coords="137,1,143,10" href="javascript:showColor('#66FFFF')">
<area shape="rect" coords="145,1,151,10" href="javascript:showColor('#99FF00')">
<area shape="rect" coords="153,1,159,10" href="javascript:showColor('#99FF33')">
<area shape="rect" coords="161,1,167,10" href="javascript:showColor('#99FF66')">
<area shape="rect" coords="169,1,175,10" href="javascript:showColor('#99FF99')">
<area shape="rect" coords="177,1,183,10" href="javascript:showColor('#99FFCC')">
<area shape="rect" coords="185,1,191,10" href="javascript:showColor('#99FFFF')">
<area shape="rect" coords="193,1,199,10" href="javascript:showColor('#CCFF00')">
<area shape="rect" coords="201,1,207,10" href="javascript:showColor('#CCFF33')">
<area shape="rect" coords="209,1,215,10" href="javascript:showColor('#CCFF66')">
<area shape="rect" coords="217,1,223,10" href="javascript:showColor('#CCFF99')">
<area shape="rect" coords="225,1,231,10" href="javascript:showColor('#CCFFCC')">
<area shape="rect" coords="233,1,239,10" href="javascript:showColor('#CCFFFF')">
<area shape="rect" coords="241,1,247,10" href="javascript:showColor('#FFFF00')">
<area shape="rect" coords="249,1,255,10" href="javascript:showColor('#FFFF33')">
<area shape="rect" coords="257,1,263,10" href="javascript:showColor('#FFFF66')">
<area shape="rect" coords="265,1,271,10" href="javascript:showColor('#FFFF99')">
<area shape="rect" coords="273,1,279,10" href="javascript:showColor('#FFFFCC')">
<area shape="rect" coords="281,1,287,10" href="javascript:showColor('#FFFFFF')">
<area shape="rect" coords="1,12,7,21" href="javascript:showColor('#00CC00')">
<area shape="rect" coords="9,12,15,21" href="javascript:showColor('#00CC33')">
<area shape="rect" coords="17,12,23,21" href="javascript:showColor('#00CC66')">
<area shape="rect" coords="25,12,31,21" href="javascript:showColor('#00CC99')">
<area shape="rect" coords="33,12,39,21" href="javascript:showColor('#00CCCC')">
<area shape="rect" coords="41,12,47,21" href="javascript:showColor('#00CCFF')">
<area shape="rect" coords="49,12,55,21" href="javascript:showColor('#33CC00')">
<area shape="rect" coords="57,12,63,21" href="javascript:showColor('#33CC33')">
<area shape="rect" coords="65,12,71,21" href="javascript:showColor('#33CC66')">
<area shape="rect" coords="73,12,79,21" href="javascript:showColor('#33CC99')">
<area shape="rect" coords="81,12,87,21" href="javascript:showColor('#33CCCC')">
<area shape="rect" coords="89,12,95,21" href="javascript:showColor('#33CCFF')">
<area shape="rect" coords="97,12,103,21" href="javascript:showColor('#66CC00')">
<area shape="rect" coords="105,12,111,21" href="javascript:showColor('#66CC33')">
<area shape="rect" coords="113,12,119,21" href="javascript:showColor('#66CC66')">
<area shape="rect" coords="121,12,127,21" href="javascript:showColor('#66CC99')">
<area shape="rect" coords="129,12,135,21" href="javascript:showColor('#66CCCC')">
<area shape="rect" coords="137,12,143,21" href="javascript:showColor('#66CCFF')">
<area shape="rect" coords="145,12,151,21" href="javascript:showColor('#99CC00')">
<area shape="rect" coords="153,12,159,21" href="javascript:showColor('#99CC33')">
<area shape="rect" coords="161,12,167,21" href="javascript:showColor('#99CC66')">
<area shape="rect" coords="169,12,175,21" href="javascript:showColor('#99CC99')">
<area shape="rect" coords="177,12,183,21" href="javascript:showColor('#99CCCC')">
<area shape="rect" coords="185,12,191,21" href="javascript:showColor('#99CCFF')">
<area shape="rect" coords="193,12,199,21" href="javascript:showColor('#CCCC00')">
<area shape="rect" coords="201,12,207,21" href="javascript:showColor('#CCCC33')">
<area shape="rect" coords="209,12,215,21" href="javascript:showColor('#CCCC66')">
<area shape="rect" coords="217,12,223,21" href="javascript:showColor('#CCCC99')">
<area shape="rect" coords="225,12,231,21" href="javascript:showColor('#CCCCCC')">
<area shape="rect" coords="233,12,239,21" href="javascript:showColor('#CCCCFF')">
<area shape="rect" coords="241,12,247,21" href="javascript:showColor('#FFCC00')">
<area shape="rect" coords="249,12,255,21" href="javascript:showColor('#FFCC33')">
<area shape="rect" coords="257,12,263,21" href="javascript:showColor('#FFCC66')">
<area shape="rect" coords="265,12,271,21" href="javascript:showColor('#FFCC99')">
<area shape="rect" coords="273,12,279,21" href="javascript:showColor('#FFCCCC')">
<area shape="rect" coords="281,12,287,21" href="javascript:showColor('#FFCCFF')">
<area shape="rect" coords="1,23,7,32" href="javascript:showColor('#009900')">
<area shape="rect" coords="9,23,15,32" href="javascript:showColor('#009933')">
<area shape="rect" coords="17,23,23,32" href="javascript:showColor('#009966')">
<area shape="rect" coords="25,23,31,32" href="javascript:showColor('#009999')">
<area shape="rect" coords="33,23,39,32" href="javascript:showColor('#0099CC')">
<area shape="rect" coords="41,23,47,32" href="javascript:showColor('#0099FF')">
<area shape="rect" coords="49,23,55,32" href="javascript:showColor('#339900')">
<area shape="rect" coords="57,23,63,32" href="javascript:showColor('#339933')">
<area shape="rect" coords="65,23,71,32" href="javascript:showColor('#339966')">
<area shape="rect" coords="73,23,79,32" href="javascript:showColor('#339999')">
<area shape="rect" coords="81,23,87,32" href="javascript:showColor('#3399CC')">
<area shape="rect" coords="89,23,95,32" href="javascript:showColor('#3399FF')">
<area shape="rect" coords="97,23,103,32" href="javascript:showColor('#669900')">
<area shape="rect" coords="105,23,111,32" href="javascript:showColor('#669933')">
<area shape="rect" coords="113,23,119,32" href="javascript:showColor('#669966')">
<area shape="rect" coords="121,23,127,32" href="javascript:showColor('#669999')">
<area shape="rect" coords="129,23,135,32" href="javascript:showColor('#6699CC')">
<area shape="rect" coords="137,23,143,32" href="javascript:showColor('#6699FF')">
<area shape="rect" coords="145,23,151,32" href="javascript:showColor('#999900')">
<area shape="rect" coords="153,23,159,32" href="javascript:showColor('#999933')">
<area shape="rect" coords="161,23,167,32" href="javascript:showColor('#999966')">
<area shape="rect" coords="169,23,175,32" href="javascript:showColor('#999999')">
<area shape="rect" coords="177,23,183,32" href="javascript:showColor('#9999CC')">
<area shape="rect" coords="185,23,191,32" href="javascript:showColor('#9999FF')">
<area shape="rect" coords="193,23,199,32" href="javascript:showColor('#CC9900')">
<area shape="rect" coords="201,23,207,32" href="javascript:showColor('#CC9933')">
<area shape="rect" coords="209,23,215,32" href="javascript:showColor('#CC9966')">
<area shape="rect" coords="217,23,223,32" href="javascript:showColor('#CC9999')">
<area shape="rect" coords="225,23,231,32" href="javascript:showColor('#CC99CC')">
<area shape="rect" coords="233,23,239,32" href="javascript:showColor('#CC99FF')">
<area shape="rect" coords="241,23,247,32" href="javascript:showColor('#FF9900')">
<area shape="rect" coords="249,23,255,32" href="javascript:showColor('#FF9933')">
<area shape="rect" coords="257,23,263,32" href="javascript:showColor('#FF9966')">
<area shape="rect" coords="265,23,271,32" href="javascript:showColor('#FF9999')">
<area shape="rect" coords="273,23,279,32" href="javascript:showColor('#FF99CC')">
<area shape="rect" coords="281,23,287,32" href="javascript:showColor('#FF99FF')">
<area shape="rect" coords="1,34,7,43" href="javascript:showColor('#006600')">
<area shape="rect" coords="9,34,15,43" href="javascript:showColor('#006633')">
<area shape="rect" coords="17,34,23,43" href="javascript:showColor('#006666')">
<area shape="rect" coords="25,34,31,43" href="javascript:showColor('#006699')">
<area shape="rect" coords="33,34,39,43" href="javascript:showColor('#0066CC')">
<area shape="rect" coords="41,34,47,43" href="javascript:showColor('#0066FF')">
<area shape="rect" coords="49,34,55,43" href="javascript:showColor('#336600')">
<area shape="rect" coords="57,34,63,43" href="javascript:showColor('#336633')">
<area shape="rect" coords="65,34,71,43" href="javascript:showColor('#336666')">
<area shape="rect" coords="73,34,79,43" href="javascript:showColor('#336699')">
<area shape="rect" coords="81,34,87,43" href="javascript:showColor('#3366CC')">
<area shape="rect" coords="89,34,95,43" href="javascript:showColor('#3366FF')">
<area shape="rect" coords="97,34,103,43" href="javascript:showColor('#666600')">
<area shape="rect" coords="105,34,111,43" href="javascript:showColor('#666633')">
<area shape="rect" coords="113,34,119,43" href="javascript:showColor('#666666')">
<area shape="rect" coords="121,34,127,43" href="javascript:showColor('#666699')">
<area shape="rect" coords="129,34,135,43" href="javascript:showColor('#6666CC')">
<area shape="rect" coords="137,34,143,43" href="javascript:showColor('#6666FF')">
<area shape="rect" coords="145,34,151,43" href="javascript:showColor('#996600')">
<area shape="rect" coords="153,34,159,43" href="javascript:showColor('#996633')">
<area shape="rect" coords="161,34,167,43" href="javascript:showColor('#996666')">
<area shape="rect" coords="169,34,175,43" href="javascript:showColor('#996699')">
<area shape="rect" coords="177,34,183,43" href="javascript:showColor('#9966CC')">
<area shape="rect" coords="185,34,191,43" href="javascript:showColor('#9966FF')">
<area shape="rect" coords="193,34,199,43" href="javascript:showColor('#CC6600')">
<area shape="rect" coords="201,34,207,43" href="javascript:showColor('#CC6633')">
<area shape="rect" coords="209,34,215,43" href="javascript:showColor('#CC6666')">
<area shape="rect" coords="217,34,223,43" href="javascript:showColor('#CC6699')">
<area shape="rect" coords="225,34,231,43" href="javascript:showColor('#CC66CC')">
<area shape="rect" coords="233,34,239,43" href="javascript:showColor('#CC66FF')">
<area shape="rect" coords="241,34,247,43" href="javascript:showColor('#FF6600')">
<area shape="rect" coords="249,34,255,43" href="javascript:showColor('#FF6633')">
<area shape="rect" coords="257,34,263,43" href="javascript:showColor('#FF6666')">
<area shape="rect" coords="265,34,271,43" href="javascript:showColor('#FF6699')">
<area shape="rect" coords="273,34,279,43" href="javascript:showColor('#FF66CC')">
<area shape="rect" coords="281,34,287,43" href="javascript:showColor('#FF66FF')">
<area shape="rect" coords="1,45,7,54" href="javascript:showColor('#003300')">
<area shape="rect" coords="9,45,15,54" href="javascript:showColor('#003333')">
<area shape="rect" coords="17,45,23,54" href="javascript:showColor('#003366')">
<area shape="rect" coords="25,45,31,54" href="javascript:showColor('#003399')">
<area shape="rect" coords="33,45,39,54" href="javascript:showColor('#0033CC')">
<area shape="rect" coords="41,45,47,54" href="javascript:showColor('#0033FF')">
<area shape="rect" coords="49,45,55,54" href="javascript:showColor('#333300')">
<area shape="rect" coords="57,45,63,54" href="javascript:showColor('#333333')">
<area shape="rect" coords="65,45,71,54" href="javascript:showColor('#333366')">
<area shape="rect" coords="73,45,79,54" href="javascript:showColor('#333399')">
<area shape="rect" coords="81,45,87,54" href="javascript:showColor('#3333CC')">
<area shape="rect" coords="89,45,95,54" href="javascript:showColor('#3333FF')">
<area shape="rect" coords="97,45,103,54" href="javascript:showColor('#663300')">
<area shape="rect" coords="105,45,111,54" href="javascript:showColor('#663333')">
<area shape="rect" coords="113,45,119,54" href="javascript:showColor('#663366')">
<area shape="rect" coords="121,45,127,54" href="javascript:showColor('#663399')">
<area shape="rect" coords="129,45,135,54" href="javascript:showColor('#6633CC')">
<area shape="rect" coords="137,45,143,54" href="javascript:showColor('#6633FF')">
<area shape="rect" coords="145,45,151,54" href="javascript:showColor('#993300')">
<area shape="rect" coords="153,45,159,54" href="javascript:showColor('#993333')">
<area shape="rect" coords="161,45,167,54" href="javascript:showColor('#993366')">
<area shape="rect" coords="169,45,175,54" href="javascript:showColor('#993399')">
<area shape="rect" coords="177,45,183,54" href="javascript:showColor('#9933CC')">
<area shape="rect" coords="185,45,191,54" href="javascript:showColor('#9933FF')">
<area shape="rect" coords="193,45,199,54" href="javascript:showColor('#CC3300')">
<area shape="rect" coords="201,45,207,54" href="javascript:showColor('#CC3333')">
<area shape="rect" coords="209,45,215,54" href="javascript:showColor('#CC3366')">
<area shape="rect" coords="217,45,223,54" href="javascript:showColor('#CC3399')">
<area shape="rect" coords="225,45,231,54" href="javascript:showColor('#CC33CC')">
<area shape="rect" coords="233,45,239,54" href="javascript:showColor('#CC33FF')">
<area shape="rect" coords="241,45,247,54" href="javascript:showColor('#FF3300')">
<area shape="rect" coords="249,45,255,54" href="javascript:showColor('#FF3333')">
<area shape="rect" coords="257,45,263,54" href="javascript:showColor('#FF3366')">
<area shape="rect" coords="265,45,271,54" href="javascript:showColor('#FF3399')">
<area shape="rect" coords="273,45,279,54" href="javascript:showColor('#FF33CC')">
<area shape="rect" coords="281,45,287,54" href="javascript:showColor('#FF33FF')">
<area shape="rect" coords="1,56,7,65" href="javascript:showColor('#000000')">
<area shape="rect" coords="9,56,15,65" href="javascript:showColor('#000033')">
<area shape="rect" coords="17,56,23,65" href="javascript:showColor('#000066')">
<area shape="rect" coords="25,56,31,65" href="javascript:showColor('#000099')">
<area shape="rect" coords="33,56,39,65" href="javascript:showColor('#0000CC')">
<area shape="rect" coords="41,56,47,65" href="javascript:showColor('#0000FF')">
<area shape="rect" coords="49,56,55,65" href="javascript:showColor('#330000')">
<area shape="rect" coords="57,56,63,65" href="javascript:showColor('#330033')">
<area shape="rect" coords="65,56,71,65" href="javascript:showColor('#330066')">
<area shape="rect" coords="73,56,79,65" href="javascript:showColor('#330099')">
<area shape="rect" coords="81,56,87,65" href="javascript:showColor('#3300CC')">
<area shape="rect" coords="89,56,95,65" href="javascript:showColor('#3300FF')">
<area shape="rect" coords="97,56,103,65" href="javascript:showColor('#660000')">
<area shape="rect" coords="105,56,111,65" href="javascript:showColor('#660033')">
<area shape="rect" coords="113,56,119,65" href="javascript:showColor('#660066')">
<area shape="rect" coords="121,56,127,65" href="javascript:showColor('#660099')">
<area shape="rect" coords="129,56,135,65" href="javascript:showColor('#6600CC')">
<area shape="rect" coords="137,56,143,65" href="javascript:showColor('#6600FF')">
<area shape="rect" coords="145,56,151,65" href="javascript:showColor('#990000')">
<area shape="rect" coords="153,56,159,65" href="javascript:showColor('#990033')">
<area shape="rect" coords="161,56,167,65" href="javascript:showColor('#990066')">
<area shape="rect" coords="169,56,175,65" href="javascript:showColor('#990099')">
<area shape="rect" coords="177,56,183,65" href="javascript:showColor('#9900CC')">
<area shape="rect" coords="185,56,191,65" href="javascript:showColor('#9900FF')">
<area shape="rect" coords="193,56,199,65" href="javascript:showColor('#CC0000')">
<area shape="rect" coords="201,56,207,65" href="javascript:showColor('#CC0033')">
<area shape="rect" coords="209,56,215,65" href="javascript:showColor('#CC0066')">
<area shape="rect" coords="217,56,223,65" href="javascript:showColor('#CC0099')">
<area shape="rect" coords="225,56,231,65" href="javascript:showColor('#CC00CC')">
<area shape="rect" coords="233,56,239,65" href="javascript:showColor('#CC00FF')">
<area shape="rect" coords="241,56,247,65" href="javascript:showColor('#FF0000')">
<area shape="rect" coords="249,56,255,65" href="javascript:showColor('#FF0033')">
<area shape="rect" coords="257,56,263,65" href="javascript:showColor('#FF0066')">
<area shape="rect" coords="265,56,271,65" href="javascript:showColor('#FF0099')">
<area shape="rect" coords="273,56,279,65" href="javascript:showColor('#FF00CC')">
<area shape="rect" coords="281,56,287,65" href="javascript:showColor('#FF00FF')">
</map>
<img usemap="#colmap" src="colortable.gif" border=0 width=289 height=67>
</td>
<td><input name="titlex" type="text" value="54" size="3" maxsize="3">X Coordinates<br>
<input name="titley" type="text" value="10" size="3" maxsize="2">Y Coordinates</td>
</tr>
</table>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE><br>
<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
<TR>
<TD class="border">
<TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
<TR>
<TD colspan="1" class="header">
Pick your tag text.
</TD>
</TR>
<TR>
<TD class="main" colspan="4">
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td width="100"><input name="tagtext" value="This is my tagline." size="43" maxsize="80"></td><td><INPUT type="text" size="7" name="tagcolor" maxlength="7" value="#009900"></td>
</tr>
<tr>
<td>
<map name="colmap2">
<area shape="rect" coords="1,1,7,10" href="javascript:showColor2('#00FF00')">
<area shape="rect" coords="9,1,15,10" href="javascript:showColor2('#00FF33')">
<area shape="rect" coords="17,1,23,10" href="javascript:showColor2('#00FF66')">
<area shape="rect" coords="25,1,31,10" href="javascript:showColor2('#00FF99')">
<area shape="rect" coords="33,1,39,10" href="javascript:showColor2('#00FFCC')">
<area shape="rect" coords="41,1,47,10" href="javascript:showColor2('#00FFFF')">
<area shape="rect" coords="49,1,55,10" href="javascript:showColor2('#33FF00')">
<area shape="rect" coords="57,1,63,10" href="javascript:showColor2('#33FF33')">
<area shape="rect" coords="65,1,71,10" href="javascript:showColor2('#33FF66')">
<area shape="rect" coords="73,1,79,10" href="javascript:showColor2('#33FF99')">
<area shape="rect" coords="81,1,87,10" href="javascript:showColor2('#33FFCC')">
<area shape="rect" coords="89,1,95,10" href="javascript:showColor2('#33FFFF')">
<area shape="rect" coords="97,1,103,10" href="javascript:showColor2('#66FF00')">
<area shape="rect" coords="105,1,111,10" href="javascript:showColor2('#66FF33')">
<area shape="rect" coords="113,1,119,10" href="javascript:showColor2('#66FF66')">
<area shape="rect" coords="121,1,127,10" href="javascript:showColor2('#66FF99')">
<area shape="rect" coords="129,1,135,10" href="javascript:showColor2('#66FFCC')">
<area shape="rect" coords="137,1,143,10" href="javascript:showColor2('#66FFFF')">
<area shape="rect" coords="145,1,151,10" href="javascript:showColor2('#99FF00')">
<area shape="rect" coords="153,1,159,10" href="javascript:showColor2('#99FF33')">
<area shape="rect" coords="161,1,167,10" href="javascript:showColor2('#99FF66')">
<area shape="rect" coords="169,1,175,10" href="javascript:showColor2('#99FF99')">
<area shape="rect" coords="177,1,183,10" href="javascript:showColor2('#99FFCC')">
<area shape="rect" coords="185,1,191,10" href="javascript:showColor2('#99FFFF')">
<area shape="rect" coords="193,1,199,10" href="javascript:showColor2('#CCFF00')">
<area shape="rect" coords="201,1,207,10" href="javascript:showColor2('#CCFF33')">
<area shape="rect" coords="209,1,215,10" href="javascript:showColor2('#CCFF66')">
<area shape="rect" coords="217,1,223,10" href="javascript:showColor2('#CCFF99')">
<area shape="rect" coords="225,1,231,10" href="javascript:showColor2('#CCFFCC')">
<area shape="rect" coords="233,1,239,10" href="javascript:showColor2('#CCFFFF')">
<area shape="rect" coords="241,1,247,10" href="javascript:showColor2('#FFFF00')">
<area shape="rect" coords="249,1,255,10" href="javascript:showColor2('#FFFF33')">
<area shape="rect" coords="257,1,263,10" href="javascript:showColor2('#FFFF66')">
<area shape="rect" coords="265,1,271,10" href="javascript:showColor2('#FFFF99')">
<area shape="rect" coords="273,1,279,10" href="javascript:showColor2('#FFFFCC')">
<area shape="rect" coords="281,1,287,10" href="javascript:showColor2('#FFFFFF')">
<area shape="rect" coords="1,12,7,21" href="javascript:showColor2('#00CC00')">
<area shape="rect" coords="9,12,15,21" href="javascript:showColor2('#00CC33')">
<area shape="rect" coords="17,12,23,21" href="javascript:showColor2('#00CC66')">
<area shape="rect" coords="25,12,31,21" href="javascript:showColor2('#00CC99')">
<area shape="rect" coords="33,12,39,21" href="javascript:showColor2('#00CCCC')">
<area shape="rect" coords="41,12,47,21" href="javascript:showColor2('#00CCFF')">
<area shape="rect" coords="49,12,55,21" href="javascript:showColor2('#33CC00')">
<area shape="rect" coords="57,12,63,21" href="javascript:showColor2('#33CC33')">
<area shape="rect" coords="65,12,71,21" href="javascript:showColor2('#33CC66')">
<area shape="rect" coords="73,12,79,21" href="javascript:showColor2('#33CC99')">
<area shape="rect" coords="81,12,87,21" href="javascript:showColor2('#33CCCC')">
<area shape="rect" coords="89,12,95,21" href="javascript:showColor2('#33CCFF')">
<area shape="rect" coords="97,12,103,21" href="javascript:showColor2('#66CC00')">
<area shape="rect" coords="105,12,111,21" href="javascript:showColor2('#66CC33')">
<area shape="rect" coords="113,12,119,21" href="javascript:showColor2('#66CC66')">
<area shape="rect" coords="121,12,127,21" href="javascript:showColor2('#66CC99')">
<area shape="rect" coords="129,12,135,21" href="javascript:showColor2('#66CCCC')">
<area shape="rect" coords="137,12,143,21" href="javascript:showColor2('#66CCFF')">
<area shape="rect" coords="145,12,151,21" href="javascript:showColor2('#99CC00')">
<area shape="rect" coords="153,12,159,21" href="javascript:showColor2('#99CC33')">
<area shape="rect" coords="161,12,167,21" href="javascript:showColor2('#99CC66')">
<area shape="rect" coords="169,12,175,21" href="javascript:showColor2('#99CC99')">
<area shape="rect" coords="177,12,183,21" href="javascript:showColor2('#99CCCC')">
<area shape="rect" coords="185,12,191,21" href="javascript:showColor2('#99CCFF')">
<area shape="rect" coords="193,12,199,21" href="javascript:showColor2('#CCCC00')">
<area shape="rect" coords="201,12,207,21" href="javascript:showColor2('#CCCC33')">
<area shape="rect" coords="209,12,215,21" href="javascript:showColor2('#CCCC66')">
<area shape="rect" coords="217,12,223,21" href="javascript:showColor2('#CCCC99')">
<area shape="rect" coords="225,12,231,21" href="javascript:showColor2('#CCCCCC')">
<area shape="rect" coords="233,12,239,21" href="javascript:showColor2('#CCCCFF')">
<area shape="rect" coords="241,12,247,21" href="javascript:showColor2('#FFCC00')">
<area shape="rect" coords="249,12,255,21" href="javascript:showColor2('#FFCC33')">
<area shape="rect" coords="257,12,263,21" href="javascript:showColor2('#FFCC66')">
<area shape="rect" coords="265,12,271,21" href="javascript:showColor2('#FFCC99')">
<area shape="rect" coords="273,12,279,21" href="javascript:showColor2('#FFCCCC')">
<area shape="rect" coords="281,12,287,21" href="javascript:showColor2('#FFCCFF')">
<area shape="rect" coords="1,23,7,32" href="javascript:showColor2('#009900')">
<area shape="rect" coords="9,23,15,32" href="javascript:showColor2('#009933')">
<area shape="rect" coords="17,23,23,32" href="javascript:showColor2('#009966')">
<area shape="rect" coords="25,23,31,32" href="javascript:showColor2('#009999')">
<area shape="rect" coords="33,23,39,32" href="javascript:showColor2('#0099CC')">
<area shape="rect" coords="41,23,47,32" href="javascript:showColor2('#0099FF')">
<area shape="rect" coords="49,23,55,32" href="javascript:showColor2('#339900')">
<area shape="rect" coords="57,23,63,32" href="javascript:showColor2('#339933')">
<area shape="rect" coords="65,23,71,32" href="javascript:showColor2('#339966')">
<area shape="rect" coords="73,23,79,32" href="javascript:showColor2('#339999')">
<area shape="rect" coords="81,23,87,32" href="javascript:showColor2('#3399CC')">
<area shape="rect" coords="89,23,95,32" href="javascript:showColor2('#3399FF')">
<area shape="rect" coords="97,23,103,32" href="javascript:showColor2('#669900')">
<area shape="rect" coords="105,23,111,32" href="javascript:showColor2('#669933')">
<area shape="rect" coords="113,23,119,32" href="javascript:showColor2('#669966')">
<area shape="rect" coords="121,23,127,32" href="javascript:showColor2('#669999')">
<area shape="rect" coords="129,23,135,32" href="javascript:showColor2('#6699CC')">
<area shape="rect" coords="137,23,143,32" href="javascript:showColor2('#6699FF')">
<area shape="rect" coords="145,23,151,32" href="javascript:showColor2('#999900')">
<area shape="rect" coords="153,23,159,32" href="javascript:showColor2('#999933')">
<area shape="rect" coords="161,23,167,32" href="javascript:showColor2('#999966')">
<area shape="rect" coords="169,23,175,32" href="javascript:showColor2('#999999')">
<area shape="rect" coords="177,23,183,32" href="javascript:showColor2('#9999CC')">
<area shape="rect" coords="185,23,191,32" href="javascript:showColor2('#9999FF')">
<area shape="rect" coords="193,23,199,32" href="javascript:showColor2('#CC9900')">
<area shape="rect" coords="201,23,207,32" href="javascript:showColor2('#CC9933')">
<area shape="rect" coords="209,23,215,32" href="javascript:showColor2('#CC9966')">
<area shape="rect" coords="217,23,223,32" href="javascript:showColor2('#CC9999')">
<area shape="rect" coords="225,23,231,32" href="javascript:showColor2('#CC99CC')">
<area shape="rect" coords="233,23,239,32" href="javascript:showColor2('#CC99FF')">
<area shape="rect" coords="241,23,247,32" href="javascript:showColor2('#FF9900')">
<area shape="rect" coords="249,23,255,32" href="javascript:showColor2('#FF9933')">
<area shape="rect" coords="257,23,263,32" href="javascript:showColor2('#FF9966')">
<area shape="rect" coords="265,23,271,32" href="javascript:showColor2('#FF9999')">
<area shape="rect" coords="273,23,279,32" href="javascript:showColor2('#FF99CC')">
<area shape="rect" coords="281,23,287,32" href="javascript:showColor2('#FF99FF')">
<area shape="rect" coords="1,34,7,43" href="javascript:showColor2('#006600')">
<area shape="rect" coords="9,34,15,43" href="javascript:showColor2('#006633')">
<area shape="rect" coords="17,34,23,43" href="javascript:showColor2('#006666')">
<area shape="rect" coords="25,34,31,43" href="javascript:showColor2('#006699')">
<area shape="rect" coords="33,34,39,43" href="javascript:showColor2('#0066CC')">
<area shape="rect" coords="41,34,47,43" href="javascript:showColor2('#0066FF')">
<area shape="rect" coords="49,34,55,43" href="javascript:showColor2('#336600')">
<area shape="rect" coords="57,34,63,43" href="javascript:showColor2('#336633')">
<area shape="rect" coords="65,34,71,43" href="javascript:showColor2('#336666')">
<area shape="rect" coords="73,34,79,43" href="javascript:showColor2('#336699')">
<area shape="rect" coords="81,34,87,43" href="javascript:showColor2('#3366CC')">
<area shape="rect" coords="89,34,95,43" href="javascript:showColor2('#3366FF')">
<area shape="rect" coords="97,34,103,43" href="javascript:showColor2('#666600')">
<area shape="rect" coords="105,34,111,43" href="javascript:showColor2('#666633')">
<area shape="rect" coords="113,34,119,43" href="javascript:showColor2('#666666')">
<area shape="rect" coords="121,34,127,43" href="javascript:showColor2('#666699')">
<area shape="rect" coords="129,34,135,43" href="javascript:showColor2('#6666CC')">
<area shape="rect" coords="137,34,143,43" href="javascript:showColor2('#6666FF')">
<area shape="rect" coords="145,34,151,43" href="javascript:showColor2('#996600')">
<area shape="rect" coords="153,34,159,43" href="javascript:showColor2('#996633')">
<area shape="rect" coords="161,34,167,43" href="javascript:showColor2('#996666')">
<area shape="rect" coords="169,34,175,43" href="javascript:showColor2('#996699')">
<area shape="rect" coords="177,34,183,43" href="javascript:showColor2('#9966CC')">
<area shape="rect" coords="185,34,191,43" href="javascript:showColor2('#9966FF')">
<area shape="rect" coords="193,34,199,43" href="javascript:showColor2('#CC6600')">
<area shape="rect" coords="201,34,207,43" href="javascript:showColor2('#CC6633')">
<area shape="rect" coords="209,34,215,43" href="javascript:showColor2('#CC6666')">
<area shape="rect" coords="217,34,223,43" href="javascript:showColor2('#CC6699')">
<area shape="rect" coords="225,34,231,43" href="javascript:showColor2('#CC66CC')">
<area shape="rect" coords="233,34,239,43" href="javascript:showColor2('#CC66FF')">
<area shape="rect" coords="241,34,247,43" href="javascript:showColor2('#FF6600')">
<area shape="rect" coords="249,34,255,43" href="javascript:showColor2('#FF6633')">
<area shape="rect" coords="257,34,263,43" href="javascript:showColor2('#FF6666')">
<area shape="rect" coords="265,34,271,43" href="javascript:showColor2('#FF6699')">
<area shape="rect" coords="273,34,279,43" href="javascript:showColor2('#FF66CC')">
<area shape="rect" coords="281,34,287,43" href="javascript:showColor2('#FF66FF')">
<area shape="rect" coords="1,45,7,54" href="javascript:showColor2('#003300')">
<area shape="rect" coords="9,45,15,54" href="javascript:showColor2('#003333')">
<area shape="rect" coords="17,45,23,54" href="javascript:showColor2('#003366')">
<area shape="rect" coords="25,45,31,54" href="javascript:showColor2('#003399')">
<area shape="rect" coords="33,45,39,54" href="javascript:showColor2('#0033CC')">
<area shape="rect" coords="41,45,47,54" href="javascript:showColor2('#0033FF')">
<area shape="rect" coords="49,45,55,54" href="javascript:showColor2('#333300')">
<area shape="rect" coords="57,45,63,54" href="javascript:showColor2('#333333')">
<area shape="rect" coords="65,45,71,54" href="javascript:showColor2('#333366')">
<area shape="rect" coords="73,45,79,54" href="javascript:showColor2('#333399')">
<area shape="rect" coords="81,45,87,54" href="javascript:showColor2('#3333CC')">
<area shape="rect" coords="89,45,95,54" href="javascript:showColor2('#3333FF')">
<area shape="rect" coords="97,45,103,54" href="javascript:showColor2('#663300')">
<area shape="rect" coords="105,45,111,54" href="javascript:showColor2('#663333')">
<area shape="rect" coords="113,45,119,54" href="javascript:showColor2('#663366')">
<area shape="rect" coords="121,45,127,54" href="javascript:showColor2('#663399')">
<area shape="rect" coords="129,45,135,54" href="javascript:showColor2('#6633CC')">
<area shape="rect" coords="137,45,143,54" href="javascript:showColor2('#6633FF')">
<area shape="rect" coords="145,45,151,54" href="javascript:showColor2('#993300')">
<area shape="rect" coords="153,45,159,54" href="javascript:showColor2('#993333')">
<area shape="rect" coords="161,45,167,54" href="javascript:showColor2('#993366')">
<area shape="rect" coords="169,45,175,54" href="javascript:showColor2('#993399')">
<area shape="rect" coords="177,45,183,54" href="javascript:showColor2('#9933CC')">
<area shape="rect" coords="185,45,191,54" href="javascript:showColor2('#9933FF')">
<area shape="rect" coords="193,45,199,54" href="javascript:showColor2('#CC3300')">
<area shape="rect" coords="201,45,207,54" href="javascript:showColor2('#CC3333')">
<area shape="rect" coords="209,45,215,54" href="javascript:showColor2('#CC3366')">
<area shape="rect" coords="217,45,223,54" href="javascript:showColor2('#CC3399')">
<area shape="rect" coords="225,45,231,54" href="javascript:showColor2('#CC33CC')">
<area shape="rect" coords="233,45,239,54" href="javascript:showColor2('#CC33FF')">
<area shape="rect" coords="241,45,247,54" href="javascript:showColor2('#FF3300')">
<area shape="rect" coords="249,45,255,54" href="javascript:showColor2('#FF3333')">
<area shape="rect" coords="257,45,263,54" href="javascript:showColor2('#FF3366')">
<area shape="rect" coords="265,45,271,54" href="javascript:showColor2('#FF3399')">
<area shape="rect" coords="273,45,279,54" href="javascript:showColor2('#FF33CC')">
<area shape="rect" coords="281,45,287,54" href="javascript:showColor2('#FF33FF')">
<area shape="rect" coords="1,56,7,65" href="javascript:showColor2('#000000')">
<area shape="rect" coords="9,56,15,65" href="javascript:showColor2('#000033')">
<area shape="rect" coords="17,56,23,65" href="javascript:showColor2('#000066')">
<area shape="rect" coords="25,56,31,65" href="javascript:showColor2('#000099')">
<area shape="rect" coords="33,56,39,65" href="javascript:showColor2('#0000CC')">
<area shape="rect" coords="41,56,47,65" href="javascript:showColor2('#0000FF')">
<area shape="rect" coords="49,56,55,65" href="javascript:showColor2('#330000')">
<area shape="rect" coords="57,56,63,65" href="javascript:showColor2('#330033')">
<area shape="rect" coords="65,56,71,65" href="javascript:showColor2('#330066')">
<area shape="rect" coords="73,56,79,65" href="javascript:showColor2('#330099')">
<area shape="rect" coords="81,56,87,65" href="javascript:showColor2('#3300CC')">
<area shape="rect" coords="89,56,95,65" href="javascript:showColor2('#3300FF')">
<area shape="rect" coords="97,56,103,65" href="javascript:showColor2('#660000')">
<area shape="rect" coords="105,56,111,65" href="javascript:showColor2('#660033')">
<area shape="rect" coords="113,56,119,65" href="javascript:showColor2('#660066')">
<area shape="rect" coords="121,56,127,65" href="javascript:showColor2('#660099')">
<area shape="rect" coords="129,56,135,65" href="javascript:showColor2('#6600CC')">
<area shape="rect" coords="137,56,143,65" href="javascript:showColor2('#6600FF')">
<area shape="rect" coords="145,56,151,65" href="javascript:showColor2('#990000')">
<area shape="rect" coords="153,56,159,65" href="javascript:showColor2('#990033')">
<area shape="rect" coords="161,56,167,65" href="javascript:showColor2('#990066')">
<area shape="rect" coords="169,56,175,65" href="javascript:showColor2('#990099')">
<area shape="rect" coords="177,56,183,65" href="javascript:showColor2('#9900CC')">
<area shape="rect" coords="185,56,191,65" href="javascript:showColor2('#9900FF')">
<area shape="rect" coords="193,56,199,65" href="javascript:showColor2('#CC0000')">
<area shape="rect" coords="201,56,207,65" href="javascript:showColor2('#CC0033')">
<area shape="rect" coords="209,56,215,65" href="javascript:showColor2('#CC0066')">
<area shape="rect" coords="217,56,223,65" href="javascript:showColor2('#CC0099')">
<area shape="rect" coords="225,56,231,65" href="javascript:showColor2('#CC00CC')">
<area shape="rect" coords="233,56,239,65" href="javascript:showColor2('#CC00FF')">
<area shape="rect" coords="241,56,247,65" href="javascript:showColor2('#FF0000')">
<area shape="rect" coords="249,56,255,65" href="javascript:showColor2('#FF0033')">
<area shape="rect" coords="257,56,263,65" href="javascript:showColor2('#FF0066')">
<area shape="rect" coords="265,56,271,65" href="javascript:showColor2('#FF0099')">
<area shape="rect" coords="273,56,279,65" href="javascript:showColor2('#FF00CC')">
<area shape="rect" coords="281,56,287,65" href="javascript:showColor2('#FF00FF')">
</map>
<img usemap="#colmap2" src="colortable.gif" border="0" width="289" height="67">
</td>
<td><input name="tagx" type="text" value="54" size="3" maxsize="3">X Coordinates<br>
<input name="tagy" type="text" value="30" size="3" maxsize="2">Y Coordinates</td>
</tr>
</table>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</td>
</tr>
</table>
</TD>
</TR>
</TABLE>
<input type="submit" value="Create"> <input type="reset" value="Reset">
</TD>
</TR>
</form>
</TABLE>
<br>Since install ApkaFuture has created <?php include("banners/counter.txt");
?> banner<?php
$filename = "banners/counter.txt";
$fp = fopen($filename, "r");
$count = fread($fp, 26);
fclose($fp);
if ($count > 1) {
print("s");
} elseif ($count == 0) {
print("s");
}
?>.
</div>
<?php
include("footer.inc");
?>
</td>
</tr>
</table>
$footer
</body>
</html>
BUt its not working
check it for urself
http://apkafuture.com/afbanner.php
WT DO I DO NOW?
Nullifi3d
09-21-2005, 02:07 PM
OKAY
this is not working
So i add it 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">AF banner Maker</td>
</tr>
<tr>
<td class="alt1"><?php
include("header.inc");
?>
<script type="text/javascript">
<!--
function showimage() {
if (!document.images)
return
document.images.banner.src=
'banner/' + document.fastbanner.select_banner.options[document.fastbanner.select_banner.selectedIndex].value
}
//-->
</script>
<script type="text/javascript">
<!-- Begin
function showColor(val) {
document.fastbanner.titlecolor.value = val;
}
function showColor2(val2) {
document.fastbanner.tagcolor.value = val2;
}
// End -->
</script>
<div align="center">
<TABLE summary="table" cellspacing="0" cellpadding="0" width="100%">
<form action="banner.php" name="fastbanner" method="post">
<TR>
<TD align="center">
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td width="20%" aign="top">
<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
<TR>
<TD class="border">
<TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
<TR>
<TD colspan="1" class="header">
Instructions
</TD>
</TR>
<TR>
<TD class="main" colspan="4">
? Select the banner to edit.<BR>
<BR>
? Enter Title and Tag Line as this will be the text that will be on your banner.<BR>
<BR>
? Choose your Title and Tag Line colors.<BR>
<BR>
? Choose your Title and Tag Line coordinates. You can click the banner where you want the text to see the coordinates to use.<BR>
<BR>
? Submit the information and your banner will be created.
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</td>
<td width="5%"> </td>
<td width="75%">
<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
<TR>
<TD class="border">
<TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
<TR>
<TD colspan="5" class="header">
Select Your Banner.
</TD>
</TR>
<TR>
<TD class="main" colspan="5" align="center">
<select name="select_banner" onChange="showimage()">
<?php
$open = opendir("banner");
while ($files = readdir($open)) {
$filename = $files;
if ($filename == "."){
print "\n";
}
elseif ($filename == ".."){
print "\n";
}
else {
print "<option value=\"$filename\">$filename</option>\n";
}
}
?>
</select><br>
<table cellspacing="0" cellpadding="0" width="484" summary="Banner Table">
<tr>
<td rowspan="2"><img src="Yscala1.gif" width="16" height="79" border="0" alt=" " /></td>
<td><img src="Xscala1.gif" width="468" height="15" border="0" alt=" " /></td>
</tr>
<tr>
<td valign="top"><img ismap onclick="alert('Coordinates:\n\nX POS: '+self.event.offsetX+'\nY POS: '+self.event.offsetY);" name="banner" src="banner/ban01.png" width="468" height="60" /></td>
</tr>
</table>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE><br>
<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
<TR>
<TD class="border">
<TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
<TR>
<TD colspan="1" class="header">
Pick your title text.
</TD>
</TR>
<TR>
<TD class="main" colspan="4">
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td width="100"><input name="titletext" value="YourSite" size="43" maxsize="80"></td><td><INPUT type="text" size="7" name="titlecolor" maxlength="7" value="#009900"></td>
</tr>
<tr>
<td>
<map name="colmap">
<area shape="rect" coords="1,1,7,10" href="javascript:showColor('#00FF00')">
<area shape="rect" coords="9,1,15,10" href="javascript:showColor('#00FF33')">
<area shape="rect" coords="17,1,23,10" href="javascript:showColor('#00FF66')">
<area shape="rect" coords="25,1,31,10" href="javascript:showColor('#00FF99')">
<area shape="rect" coords="33,1,39,10" href="javascript:showColor('#00FFCC')">
<area shape="rect" coords="41,1,47,10" href="javascript:showColor('#00FFFF')">
<area shape="rect" coords="49,1,55,10" href="javascript:showColor('#33FF00')">
<area shape="rect" coords="57,1,63,10" href="javascript:showColor('#33FF33')">
<area shape="rect" coords="65,1,71,10" href="javascript:showColor('#33FF66')">
<area shape="rect" coords="73,1,79,10" href="javascript:showColor('#33FF99')">
<area shape="rect" coords="81,1,87,10" href="javascript:showColor('#33FFCC')">
<area shape="rect" coords="89,1,95,10" href="javascript:showColor('#33FFFF')">
<area shape="rect" coords="97,1,103,10" href="javascript:showColor('#66FF00')">
<area shape="rect" coords="105,1,111,10" href="javascript:showColor('#66FF33')">
<area shape="rect" coords="113,1,119,10" href="javascript:showColor('#66FF66')">
<area shape="rect" coords="121,1,127,10" href="javascript:showColor('#66FF99')">
<area shape="rect" coords="129,1,135,10" href="javascript:showColor('#66FFCC')">
<area shape="rect" coords="137,1,143,10" href="javascript:showColor('#66FFFF')">
<area shape="rect" coords="145,1,151,10" href="javascript:showColor('#99FF00')">
<area shape="rect" coords="153,1,159,10" href="javascript:showColor('#99FF33')">
<area shape="rect" coords="161,1,167,10" href="javascript:showColor('#99FF66')">
<area shape="rect" coords="169,1,175,10" href="javascript:showColor('#99FF99')">
<area shape="rect" coords="177,1,183,10" href="javascript:showColor('#99FFCC')">
<area shape="rect" coords="185,1,191,10" href="javascript:showColor('#99FFFF')">
<area shape="rect" coords="193,1,199,10" href="javascript:showColor('#CCFF00')">
<area shape="rect" coords="201,1,207,10" href="javascript:showColor('#CCFF33')">
<area shape="rect" coords="209,1,215,10" href="javascript:showColor('#CCFF66')">
<area shape="rect" coords="217,1,223,10" href="javascript:showColor('#CCFF99')">
<area shape="rect" coords="225,1,231,10" href="javascript:showColor('#CCFFCC')">
<area shape="rect" coords="233,1,239,10" href="javascript:showColor('#CCFFFF')">
<area shape="rect" coords="241,1,247,10" href="javascript:showColor('#FFFF00')">
<area shape="rect" coords="249,1,255,10" href="javascript:showColor('#FFFF33')">
<area shape="rect" coords="257,1,263,10" href="javascript:showColor('#FFFF66')">
<area shape="rect" coords="265,1,271,10" href="javascript:showColor('#FFFF99')">
<area shape="rect" coords="273,1,279,10" href="javascript:showColor('#FFFFCC')">
<area shape="rect" coords="281,1,287,10" href="javascript:showColor('#FFFFFF')">
<area shape="rect" coords="1,12,7,21" href="javascript:showColor('#00CC00')">
<area shape="rect" coords="9,12,15,21" href="javascript:showColor('#00CC33')">
<area shape="rect" coords="17,12,23,21" href="javascript:showColor('#00CC66')">
<area shape="rect" coords="25,12,31,21" href="javascript:showColor('#00CC99')">
<area shape="rect" coords="33,12,39,21" href="javascript:showColor('#00CCCC')">
<area shape="rect" coords="41,12,47,21" href="javascript:showColor('#00CCFF')">
<area shape="rect" coords="49,12,55,21" href="javascript:showColor('#33CC00')">
<area shape="rect" coords="57,12,63,21" href="javascript:showColor('#33CC33')">
<area shape="rect" coords="65,12,71,21" href="javascript:showColor('#33CC66')">
<area shape="rect" coords="73,12,79,21" href="javascript:showColor('#33CC99')">
<area shape="rect" coords="81,12,87,21" href="javascript:showColor('#33CCCC')">
<area shape="rect" coords="89,12,95,21" href="javascript:showColor('#33CCFF')">
<area shape="rect" coords="97,12,103,21" href="javascript:showColor('#66CC00')">
<area shape="rect" coords="105,12,111,21" href="javascript:showColor('#66CC33')">
<area shape="rect" coords="113,12,119,21" href="javascript:showColor('#66CC66')">
<area shape="rect" coords="121,12,127,21" href="javascript:showColor('#66CC99')">
<area shape="rect" coords="129,12,135,21" href="javascript:showColor('#66CCCC')">
<area shape="rect" coords="137,12,143,21" href="javascript:showColor('#66CCFF')">
<area shape="rect" coords="145,12,151,21" href="javascript:showColor('#99CC00')">
<area shape="rect" coords="153,12,159,21" href="javascript:showColor('#99CC33')">
<area shape="rect" coords="161,12,167,21" href="javascript:showColor('#99CC66')">
<area shape="rect" coords="169,12,175,21" href="javascript:showColor('#99CC99')">
<area shape="rect" coords="177,12,183,21" href="javascript:showColor('#99CCCC')">
<area shape="rect" coords="185,12,191,21" href="javascript:showColor('#99CCFF')">
<area shape="rect" coords="193,12,199,21" href="javascript:showColor('#CCCC00')">
<area shape="rect" coords="201,12,207,21" href="javascript:showColor('#CCCC33')">
<area shape="rect" coords="209,12,215,21" href="javascript:showColor('#CCCC66')">
<area shape="rect" coords="217,12,223,21" href="javascript:showColor('#CCCC99')">
<area shape="rect" coords="225,12,231,21" href="javascript:showColor('#CCCCCC')">
<area shape="rect" coords="233,12,239,21" href="javascript:showColor('#CCCCFF')">
<area shape="rect" coords="241,12,247,21" href="javascript:showColor('#FFCC00')">
<area shape="rect" coords="249,12,255,21" href="javascript:showColor('#FFCC33')">
<area shape="rect" coords="257,12,263,21" href="javascript:showColor('#FFCC66')">
<area shape="rect" coords="265,12,271,21" href="javascript:showColor('#FFCC99')">
<area shape="rect" coords="273,12,279,21" href="javascript:showColor('#FFCCCC')">
<area shape="rect" coords="281,12,287,21" href="javascript:showColor('#FFCCFF')">
<area shape="rect" coords="1,23,7,32" href="javascript:showColor('#009900')">
<area shape="rect" coords="9,23,15,32" href="javascript:showColor('#009933')">
<area shape="rect" coords="17,23,23,32" href="javascript:showColor('#009966')">
<area shape="rect" coords="25,23,31,32" href="javascript:showColor('#009999')">
<area shape="rect" coords="33,23,39,32" href="javascript:showColor('#0099CC')">
<area shape="rect" coords="41,23,47,32" href="javascript:showColor('#0099FF')">
<area shape="rect" coords="49,23,55,32" href="javascript:showColor('#339900')">
<area shape="rect" coords="57,23,63,32" href="javascript:showColor('#339933')">
<area shape="rect" coords="65,23,71,32" href="javascript:showColor('#339966')">
<area shape="rect" coords="73,23,79,32" href="javascript:showColor('#339999')">
<area shape="rect" coords="81,23,87,32" href="javascript:showColor('#3399CC')">
<area shape="rect" coords="89,23,95,32" href="javascript:showColor('#3399FF')">
<area shape="rect" coords="97,23,103,32" href="javascript:showColor('#669900')">
<area shape="rect" coords="105,23,111,32" href="javascript:showColor('#669933')">
<area shape="rect" coords="113,23,119,32" href="javascript:showColor('#669966')">
<area shape="rect" coords="121,23,127,32" href="javascript:showColor('#669999')">
<area shape="rect" coords="129,23,135,32" href="javascript:showColor('#6699CC')">
<area shape="rect" coords="137,23,143,32" href="javascript:showColor('#6699FF')">
<area shape="rect" coords="145,23,151,32" href="javascript:showColor('#999900')">
<area shape="rect" coords="153,23,159,32" href="javascript:showColor('#999933')">
<area shape="rect" coords="161,23,167,32" href="javascript:showColor('#999966')">
<area shape="rect" coords="169,23,175,32" href="javascript:showColor('#999999')">
<area shape="rect" coords="177,23,183,32" href="javascript:showColor('#9999CC')">
<area shape="rect" coords="185,23,191,32" href="javascript:showColor('#9999FF')">
<area shape="rect" coords="193,23,199,32" href="javascript:showColor('#CC9900')">
<area shape="rect" coords="201,23,207,32" href="javascript:showColor('#CC9933')">
<area shape="rect" coords="209,23,215,32" href="javascript:showColor('#CC9966')">
<area shape="rect" coords="217,23,223,32" href="javascript:showColor('#CC9999')">
<area shape="rect" coords="225,23,231,32" href="javascript:showColor('#CC99CC')">
<area shape="rect" coords="233,23,239,32" href="javascript:showColor('#CC99FF')">
<area shape="rect" coords="241,23,247,32" href="javascript:showColor('#FF9900')">
<area shape="rect" coords="249,23,255,32" href="javascript:showColor('#FF9933')">
<area shape="rect" coords="257,23,263,32" href="javascript:showColor('#FF9966')">
<area shape="rect" coords="265,23,271,32" href="javascript:showColor('#FF9999')">
<area shape="rect" coords="273,23,279,32" href="javascript:showColor('#FF99CC')">
<area shape="rect" coords="281,23,287,32" href="javascript:showColor('#FF99FF')">
<area shape="rect" coords="1,34,7,43" href="javascript:showColor('#006600')">
<area shape="rect" coords="9,34,15,43" href="javascript:showColor('#006633')">
<area shape="rect" coords="17,34,23,43" href="javascript:showColor('#006666')">
<area shape="rect" coords="25,34,31,43" href="javascript:showColor('#006699')">
<area shape="rect" coords="33,34,39,43" href="javascript:showColor('#0066CC')">
<area shape="rect" coords="41,34,47,43" href="javascript:showColor('#0066FF')">
<area shape="rect" coords="49,34,55,43" href="javascript:showColor('#336600')">
<area shape="rect" coords="57,34,63,43" href="javascript:showColor('#336633')">
<area shape="rect" coords="65,34,71,43" href="javascript:showColor('#336666')">
<area shape="rect" coords="73,34,79,43" href="javascript:showColor('#336699')">
<area shape="rect" coords="81,34,87,43" href="javascript:showColor('#3366CC')">
<area shape="rect" coords="89,34,95,43" href="javascript:showColor('#3366FF')">
<area shape="rect" coords="97,34,103,43" href="javascript:showColor('#666600')">
<area shape="rect" coords="105,34,111,43" href="javascript:showColor('#666633')">
<area shape="rect" coords="113,34,119,43" href="javascript:showColor('#666666')">
<area shape="rect" coords="121,34,127,43" href="javascript:showColor('#666699')">
<area shape="rect" coords="129,34,135,43" href="javascript:showColor('#6666CC')">
<area shape="rect" coords="137,34,143,43" href="javascript:showColor('#6666FF')">
<area shape="rect" coords="145,34,151,43" href="javascript:showColor('#996600')">
<area shape="rect" coords="153,34,159,43" href="javascript:showColor('#996633')">
<area shape="rect" coords="161,34,167,43" href="javascript:showColor('#996666')">
<area shape="rect" coords="169,34,175,43" href="javascript:showColor('#996699')">
<area shape="rect" coords="177,34,183,43" href="javascript:showColor('#9966CC')">
<area shape="rect" coords="185,34,191,43" href="javascript:showColor('#9966FF')">
<area shape="rect" coords="193,34,199,43" href="javascript:showColor('#CC6600')">
<area shape="rect" coords="201,34,207,43" href="javascript:showColor('#CC6633')">
<area shape="rect" coords="209,34,215,43" href="javascript:showColor('#CC6666')">
<area shape="rect" coords="217,34,223,43" href="javascript:showColor('#CC6699')">
<area shape="rect" coords="225,34,231,43" href="javascript:showColor('#CC66CC')">
<area shape="rect" coords="233,34,239,43" href="javascript:showColor('#CC66FF')">
<area shape="rect" coords="241,34,247,43" href="javascript:showColor('#FF6600')">
<area shape="rect" coords="249,34,255,43" href="javascript:showColor('#FF6633')">
<area shape="rect" coords="257,34,263,43" href="javascript:showColor('#FF6666')">
<area shape="rect" coords="265,34,271,43" href="javascript:showColor('#FF6699')">
<area shape="rect" coords="273,34,279,43" href="javascript:showColor('#FF66CC')">
<area shape="rect" coords="281,34,287,43" href="javascript:showColor('#FF66FF')">
<area shape="rect" coords="1,45,7,54" href="javascript:showColor('#003300')">
<area shape="rect" coords="9,45,15,54" href="javascript:showColor('#003333')">
<area shape="rect" coords="17,45,23,54" href="javascript:showColor('#003366')">
<area shape="rect" coords="25,45,31,54" href="javascript:showColor('#003399')">
<area shape="rect" coords="33,45,39,54" href="javascript:showColor('#0033CC')">
<area shape="rect" coords="41,45,47,54" href="javascript:showColor('#0033FF')">
<area shape="rect" coords="49,45,55,54" href="javascript:showColor('#333300')">
<area shape="rect" coords="57,45,63,54" href="javascript:showColor('#333333')">
<area shape="rect" coords="65,45,71,54" href="javascript:showColor('#333366')">
<area shape="rect" coords="73,45,79,54" href="javascript:showColor('#333399')">
<area shape="rect" coords="81,45,87,54" href="javascript:showColor('#3333CC')">
<area shape="rect" coords="89,45,95,54" href="javascript:showColor('#3333FF')">
<area shape="rect" coords="97,45,103,54" href="javascript:showColor('#663300')">
<area shape="rect" coords="105,45,111,54" href="javascript:showColor('#663333')">
<area shape="rect" coords="113,45,119,54" href="javascript:showColor('#663366')">
<area shape="rect" coords="121,45,127,54" href="javascript:showColor('#663399')">
<area shape="rect" coords="129,45,135,54" href="javascript:showColor('#6633CC')">
<area shape="rect" coords="137,45,143,54" href="javascript:showColor('#6633FF')">
<area shape="rect" coords="145,45,151,54" href="javascript:showColor('#993300')">
<area shape="rect" coords="153,45,159,54" href="javascript:showColor('#993333')">
<area shape="rect" coords="161,45,167,54" href="javascript:showColor('#993366')">
<area shape="rect" coords="169,45,175,54" href="javascript:showColor('#993399')">
<area shape="rect" coords="177,45,183,54" href="javascript:showColor('#9933CC')">
<area shape="rect" coords="185,45,191,54" href="javascript:showColor('#9933FF')">
<area shape="rect" coords="193,45,199,54" href="javascript:showColor('#CC3300')">
<area shape="rect" coords="201,45,207,54" href="javascript:showColor('#CC3333')">
<area shape="rect" coords="209,45,215,54" href="javascript:showColor('#CC3366')">
<area shape="rect" coords="217,45,223,54" href="javascript:showColor('#CC3399')">
<area shape="rect" coords="225,45,231,54" href="javascript:showColor('#CC33CC')">
<area shape="rect" coords="233,45,239,54" href="javascript:showColor('#CC33FF')">
<area shape="rect" coords="241,45,247,54" href="javascript:showColor('#FF3300')">
<area shape="rect" coords="249,45,255,54" href="javascript:showColor('#FF3333')">
<area shape="rect" coords="257,45,263,54" href="javascript:showColor('#FF3366')">
<area shape="rect" coords="265,45,271,54" href="javascript:showColor('#FF3399')">
<area shape="rect" coords="273,45,279,54" href="javascript:showColor('#FF33CC')">
<area shape="rect" coords="281,45,287,54" href="javascript:showColor('#FF33FF')">
<area shape="rect" coords="1,56,7,65" href="javascript:showColor('#000000')">
<area shape="rect" coords="9,56,15,65" href="javascript:showColor('#000033')">
<area shape="rect" coords="17,56,23,65" href="javascript:showColor('#000066')">
<area shape="rect" coords="25,56,31,65" href="javascript:showColor('#000099')">
<area shape="rect" coords="33,56,39,65" href="javascript:showColor('#0000CC')">
<area shape="rect" coords="41,56,47,65" href="javascript:showColor('#0000FF')">
<area shape="rect" coords="49,56,55,65" href="javascript:showColor('#330000')">
<area shape="rect" coords="57,56,63,65" href="javascript:showColor('#330033')">
<area shape="rect" coords="65,56,71,65" href="javascript:showColor('#330066')">
<area shape="rect" coords="73,56,79,65" href="javascript:showColor('#330099')">
<area shape="rect" coords="81,56,87,65" href="javascript:showColor('#3300CC')">
<area shape="rect" coords="89,56,95,65" href="javascript:showColor('#3300FF')">
<area shape="rect" coords="97,56,103,65" href="javascript:showColor('#660000')">
<area shape="rect" coords="105,56,111,65" href="javascript:showColor('#660033')">
<area shape="rect" coords="113,56,119,65" href="javascript:showColor('#660066')">
<area shape="rect" coords="121,56,127,65" href="javascript:showColor('#660099')">
<area shape="rect" coords="129,56,135,65" href="javascript:showColor('#6600CC')">
<area shape="rect" coords="137,56,143,65" href="javascript:showColor('#6600FF')">
<area shape="rect" coords="145,56,151,65" href="javascript:showColor('#990000')">
<area shape="rect" coords="153,56,159,65" href="javascript:showColor('#990033')">
<area shape="rect" coords="161,56,167,65" href="javascript:showColor('#990066')">
<area shape="rect" coords="169,56,175,65" href="javascript:showColor('#990099')">
<area shape="rect" coords="177,56,183,65" href="javascript:showColor('#9900CC')">
<area shape="rect" coords="185,56,191,65" href="javascript:showColor('#9900FF')">
<area shape="rect" coords="193,56,199,65" href="javascript:showColor('#CC0000')">
<area shape="rect" coords="201,56,207,65" href="javascript:showColor('#CC0033')">
<area shape="rect" coords="209,56,215,65" href="javascript:showColor('#CC0066')">
<area shape="rect" coords="217,56,223,65" href="javascript:showColor('#CC0099')">
<area shape="rect" coords="225,56,231,65" href="javascript:showColor('#CC00CC')">
<area shape="rect" coords="233,56,239,65" href="javascript:showColor('#CC00FF')">
<area shape="rect" coords="241,56,247,65" href="javascript:showColor('#FF0000')">
<area shape="rect" coords="249,56,255,65" href="javascript:showColor('#FF0033')">
<area shape="rect" coords="257,56,263,65" href="javascript:showColor('#FF0066')">
<area shape="rect" coords="265,56,271,65" href="javascript:showColor('#FF0099')">
<area shape="rect" coords="273,56,279,65" href="javascript:showColor('#FF00CC')">
<area shape="rect" coords="281,56,287,65" href="javascript:showColor('#FF00FF')">
</map>
<img usemap="#colmap" src="colortable.gif" border=0 width=289 height=67>
</td>
<td><input name="titlex" type="text" value="54" size="3" maxsize="3">X Coordinates<br>
<input name="titley" type="text" value="10" size="3" maxsize="2">Y Coordinates</td>
</tr>
</table>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE><br>
<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
<TR>
<TD class="border">
<TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
<TR>
<TD colspan="1" class="header">
Pick your tag text.
</TD>
</TR>
<TR>
<TD class="main" colspan="4">
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td width="100"><input name="tagtext" value="This is my tagline." size="43" maxsize="80"></td><td><INPUT type="text" size="7" name="tagcolor" maxlength="7" value="#009900"></td>
</tr>
<tr>
<td>
<map name="colmap2">
<area shape="rect" coords="1,1,7,10" href="javascript:showColor2('#00FF00')">
<area shape="rect" coords="9,1,15,10" href="javascript:showColor2('#00FF33')">
<area shape="rect" coords="17,1,23,10" href="javascript:showColor2('#00FF66')">
<area shape="rect" coords="25,1,31,10" href="javascript:showColor2('#00FF99')">
<area shape="rect" coords="33,1,39,10" href="javascript:showColor2('#00FFCC')">
<area shape="rect" coords="41,1,47,10" href="javascript:showColor2('#00FFFF')">
<area shape="rect" coords="49,1,55,10" href="javascript:showColor2('#33FF00')">
<area shape="rect" coords="57,1,63,10" href="javascript:showColor2('#33FF33')">
<area shape="rect" coords="65,1,71,10" href="javascript:showColor2('#33FF66')">
<area shape="rect" coords="73,1,79,10" href="javascript:showColor2('#33FF99')">
<area shape="rect" coords="81,1,87,10" href="javascript:showColor2('#33FFCC')">
<area shape="rect" coords="89,1,95,10" href="javascript:showColor2('#33FFFF')">
<area shape="rect" coords="97,1,103,10" href="javascript:showColor2('#66FF00')">
<area shape="rect" coords="105,1,111,10" href="javascript:showColor2('#66FF33')">
<area shape="rect" coords="113,1,119,10" href="javascript:showColor2('#66FF66')">
<area shape="rect" coords="121,1,127,10" href="javascript:showColor2('#66FF99')">
<area shape="rect" coords="129,1,135,10" href="javascript:showColor2('#66FFCC')">
<area shape="rect" coords="137,1,143,10" href="javascript:showColor2('#66FFFF')">
<area shape="rect" coords="145,1,151,10" href="javascript:showColor2('#99FF00')">
<area shape="rect" coords="153,1,159,10" href="javascript:showColor2('#99FF33')">
<area shape="rect" coords="161,1,167,10" href="javascript:showColor2('#99FF66')">
<area shape="rect" coords="169,1,175,10" href="javascript:showColor2('#99FF99')">
<area shape="rect" coords="177,1,183,10" href="javascript:showColor2('#99FFCC')">
<area shape="rect" coords="185,1,191,10" href="javascript:showColor2('#99FFFF')">
<area shape="rect" coords="193,1,199,10" href="javascript:showColor2('#CCFF00')">
<area shape="rect" coords="201,1,207,10" href="javascript:showColor2('#CCFF33')">
<area shape="rect" coords="209,1,215,10" href="javascript:showColor2('#CCFF66')">
<area shape="rect" coords="217,1,223,10" href="javascript:showColor2('#CCFF99')">
<area shape="rect" coords="225,1,231,10" href="javascript:showColor2('#CCFFCC')">
<area shape="rect" coords="233,1,239,10" href="javascript:showColor2('#CCFFFF')">
<area shape="rect" coords="241,1,247,10" href="javascript:showColor2('#FFFF00')">
<area shape="rect" coords="249,1,255,10" href="javascript:showColor2('#FFFF33')">
<area shape="rect" coords="257,1,263,10" href="javascript:showColor2('#FFFF66')">
<area shape="rect" coords="265,1,271,10" href="javascript:showColor2('#FFFF99')">
<area shape="rect" coords="273,1,279,10" href="javascript:showColor2('#FFFFCC')">
<area shape="rect" coords="281,1,287,10" href="javascript:showColor2('#FFFFFF')">
<area shape="rect" coords="1,12,7,21" href="javascript:showColor2('#00CC00')">
<area shape="rect" coords="9,12,15,21" href="javascript:showColor2('#00CC33')">
<area shape="rect" coords="17,12,23,21" href="javascript:showColor2('#00CC66')">
<area shape="rect" coords="25,12,31,21" href="javascript:showColor2('#00CC99')">
<area shape="rect" coords="33,12,39,21" href="javascript:showColor2('#00CCCC')">
<area shape="rect" coords="41,12,47,21" href="javascript:showColor2('#00CCFF')">
<area shape="rect" coords="49,12,55,21" href="javascript:showColor2('#33CC00')">
<area shape="rect" coords="57,12,63,21" href="javascript:showColor2('#33CC33')">
<area shape="rect" coords="65,12,71,21" href="javascript:showColor2('#33CC66')">
<area shape="rect" coords="73,12,79,21" href="javascript:showColor2('#33CC99')">
<area shape="rect" coords="81,12,87,21" href="javascript:showColor2('#33CCCC')">
<area shape="rect" coords="89,12,95,21" href="javascript:showColor2('#33CCFF')">
<area shape="rect" coords="97,12,103,21" href="javascript:showColor2('#66CC00')">
<area shape="rect" coords="105,12,111,21" href="javascript:showColor2('#66CC33')">
<area shape="rect" coords="113,12,119,21" href="javascript:showColor2('#66CC66')">
<area shape="rect" coords="121,12,127,21" href="javascript:showColor2('#66CC99')">
<area shape="rect" coords="129,12,135,21" href="javascript:showColor2('#66CCCC')">
<area shape="rect" coords="137,12,143,21" href="javascript:showColor2('#66CCFF')">
<area shape="rect" coords="145,12,151,21" href="javascript:showColor2('#99CC00')">
<area shape="rect" coords="153,12,159,21" href="javascript:showColor2('#99CC33')">
<area shape="rect" coords="161,12,167,21" href="javascript:showColor2('#99CC66')">
<area shape="rect" coords="169,12,175,21" href="javascript:showColor2('#99CC99')">
<area shape="rect" coords="177,12,183,21" href="javascript:showColor2('#99CCCC')">
<area shape="rect" coords="185,12,191,21" href="javascript:showColor2('#99CCFF')">
<area shape="rect" coords="193,12,199,21" href="javascript:showColor2('#CCCC00')">
<area shape="rect" coords="201,12,207,21" href="javascript:showColor2('#CCCC33')">
<area shape="rect" coords="209,12,215,21" href="javascript:showColor2('#CCCC66')">
<area shape="rect" coords="217,12,223,21" href="javascript:showColor2('#CCCC99')">
<area shape="rect" coords="225,12,231,21" href="javascript:showColor2('#CCCCCC')">
<area shape="rect" coords="233,12,239,21" href="javascript:showColor2('#CCCCFF')">
<area shape="rect" coords="241,12,247,21" href="javascript:showColor2('#FFCC00')">
<area shape="rect" coords="249,12,255,21" href="javascript:showColor2('#FFCC33')">
<area shape="rect" coords="257,12,263,21" href="javascript:showColor2('#FFCC66')">
<area shape="rect" coords="265,12,271,21" href="javascript:showColor2('#FFCC99')">
<area shape="rect" coords="273,12,279,21" href="javascript:showColor2('#FFCCCC')">
<area shape="rect" coords="281,12,287,21" href="javascript:showColor2('#FFCCFF')">
<area shape="rect" coords="1,23,7,32" href="javascript:showColor2('#009900')">
<area shape="rect" coords="9,23,15,32" href="javascript:showColor2('#009933')">
<area shape="rect" coords="17,23,23,32" href="javascript:showColor2('#009966')">
<area shape="rect" coords="25,23,31,32" href="javascript:showColor2('#009999')">
<area shape="rect" coords="33,23,39,32" href="javascript:showColor2('#0099CC')">
<area shape="rect" coords="41,23,47,32" href="javascript:showColor2('#0099FF')">
<area shape="rect" coords="49,23,55,32" href="javascript:showColor2('#339900')">
<area shape="rect" coords="57,23,63,32" href="javascript:showColor2('#339933')">
<area shape="rect" coords="65,23,71,32" href="javascript:showColor2('#339966')">
<area shape="rect" coords="73,23,79,32" href="javascript:showColor2('#339999')">
<area shape="rect" coords="81,23,87,32" href="javascript:showColor2('#3399CC')">
<area shape="rect" coords="89,23,95,32" href="javascript:showColor2('#3399FF')">
<area shape="rect" coords="97,23,103,32" href="javascript:showColor2('#669900')">
<area shape="rect" coords="105,23,111,32" href="javascript:showColor2('#669933')">
<area shape="rect" coords="113,23,119,32" href="javascript:showColor2('#669966')">
<area shape="rect" coords="121,23,127,32" href="javascript:showColor2('#669999')">
<area shape="rect" coords="129,23,135,32" href="javascript:showColor2('#6699CC')">
<area shape="rect" coords="137,23,143,32" href="javascript:showColor2('#6699FF')">
<area shape="rect" coords="145,23,151,32" href="javascript:showColor2('#999900')">
<area shape="rect" coords="153,23,159,32" href="javascript:showColor2('#999933')">
<area shape="rect" coords="161,23,167,32" href="javascript:showColor2('#999966')">
<area shape="rect" coords="169,23,175,32" href="javascript:showColor2('#999999')">
<area shape="rect" coords="177,23,183,32" href="javascript:showColor2('#9999CC')">
<area shape="rect" coords="185,23,191,32" href="javascript:showColor2('#9999FF')">
<area shape="rect" coords="193,23,199,32" href="javascript:showColor2('#CC9900')">
<area shape="rect" coords="201,23,207,32" href="javascript:showColor2('#CC9933')">
<area shape="rect" coords="209,23,215,32" href="javascript:showColor2('#CC9966')">
<area shape="rect" coords="217,23,223,32" href="javascript:showColor2('#CC9999')">
<area shape="rect" coords="225,23,231,32" href="javascript:showColor2('#CC99CC')">
<area shape="rect" coords="233,23,239,32" href="javascript:showColor2('#CC99FF')">
<area shape="rect" coords="241,23,247,32" href="javascript:showColor2('#FF9900')">
<area shape="rect" coords="249,23,255,32" href="javascript:showColor2('#FF9933')">
<area shape="rect" coords="257,23,263,32" href="javascript:showColor2('#FF9966')">
<area shape="rect" coords="265,23,271,32" href="javascript:showColor2('#FF9999')">
<area shape="rect" coords="273,23,279,32" href="javascript:showColor2('#FF99CC')">
<area shape="rect" coords="281,23,287,32" href="javascript:showColor2('#FF99FF')">
<area shape="rect" coords="1,34,7,43" href="javascript:showColor2('#006600')">
<area shape="rect" coords="9,34,15,43" href="javascript:showColor2('#006633')">
<area shape="rect" coords="17,34,23,43" href="javascript:showColor2('#006666')">
<area shape="rect" coords="25,34,31,43" href="javascript:showColor2('#006699')">
<area shape="rect" coords="33,34,39,43" href="javascript:showColor2('#0066CC')">
<area shape="rect" coords="41,34,47,43" href="javascript:showColor2('#0066FF')">
<area shape="rect" coords="49,34,55,43" href="javascript:showColor2('#336600')">
<area shape="rect" coords="57,34,63,43" href="javascript:showColor2('#336633')">
<area shape="rect" coords="65,34,71,43" href="javascript:showColor2('#336666')">
<area shape="rect" coords="73,34,79,43" href="javascript:showColor2('#336699')">
<area shape="rect" coords="81,34,87,43" href="javascript:showColor2('#3366CC')">
<area shape="rect" coords="89,34,95,43" href="javascript:showColor2('#3366FF')">
<area shape="rect" coords="97,34,103,43" href="javascript:showColor2('#666600')">
<area shape="rect" coords="105,34,111,43" href="javascript:showColor2('#666633')">
<area shape="rect" coords="113,34,119,43" href="javascript:showColor2('#666666')">
<area shape="rect" coords="121,34,127,43" href="javascript:showColor2('#666699')">
<area shape="rect" coords="129,34,135,43" href="javascript:showColor2('#6666CC')">
<area shape="rect" coords="137,34,143,43" href="javascript:showColor2('#6666FF')">
<area shape="rect" coords="145,34,151,43" href="javascript:showColor2('#996600')">
<area shape="rect" coords="153,34,159,43" href="javascript:showColor2('#996633')">
<area shape="rect" coords="161,34,167,43" href="javascript:showColor2('#996666')">
<area shape="rect" coords="169,34,175,43" href="javascript:showColor2('#996699')">
<area shape="rect" coords="177,34,183,43" href="javascript:showColor2('#9966CC')">
<area shape="rect" coords="185,34,191,43" href="javascript:showColor2('#9966FF')">
<area shape="rect" coords="193,34,199,43" href="javascript:showColor2('#CC6600')">
<area shape="rect" coords="201,34,207,43" href="javascript:showColor2('#CC6633')">
<area shape="rect" coords="209,34,215,43" href="javascript:showColor2('#CC6666')">
<area shape="rect" coords="217,34,223,43" href="javascript:showColor2('#CC6699')">
<area shape="rect" coords="225,34,231,43" href="javascript:showColor2('#CC66CC')">
<area shape="rect" coords="233,34,239,43" href="javascript:showColor2('#CC66FF')">
<area shape="rect" coords="241,34,247,43" href="javascript:showColor2('#FF6600')">
<area shape="rect" coords="249,34,255,43" href="javascript:showColor2('#FF6633')">
<area shape="rect" coords="257,34,263,43" href="javascript:showColor2('#FF6666')">
<area shape="rect" coords="265,34,271,43" href="javascript:showColor2('#FF6699')">
<area shape="rect" coords="273,34,279,43" href="javascript:showColor2('#FF66CC')">
<area shape="rect" coords="281,34,287,43" href="javascript:showColor2('#FF66FF')">
<area shape="rect" coords="1,45,7,54" href="javascript:showColor2('#003300')">
<area shape="rect" coords="9,45,15,54" href="javascript:showColor2('#003333')">
<area shape="rect" coords="17,45,23,54" href="javascript:showColor2('#003366')">
<area shape="rect" coords="25,45,31,54" href="javascript:showColor2('#003399')">
<area shape="rect" coords="33,45,39,54" href="javascript:showColor2('#0033CC')">
<area shape="rect" coords="41,45,47,54" href="javascript:showColor2('#0033FF')">
<area shape="rect" coords="49,45,55,54" href="javascript:showColor2('#333300')">
<area shape="rect" coords="57,45,63,54" href="javascript:showColor2('#333333')">
<area shape="rect" coords="65,45,71,54" href="javascript:showColor2('#333366')">
<area shape="rect" coords="73,45,79,54" href="javascript:showColor2('#333399')">
<area shape="rect" coords="81,45,87,54" href="javascript:showColor2('#3333CC')">
<area shape="rect" coords="89,45,95,54" href="javascript:showColor2('#3333FF')">
<area shape="rect" coords="97,45,103,54" href="javascript:showColor2('#663300')">
<area shape="rect" coords="105,45,111,54" href="javascript:showColor2('#663333')">
<area shape="rect" coords="113,45,119,54" href="javascript:showColor2('#663366')">
<area shape="rect" coords="121,45,127,54" href="javascript:showColor2('#663399')">
<area shape="rect" coords="129,45,135,54" href="javascript:showColor2('#6633CC')">
<area shape="rect" coords="137,45,143,54" href="javascript:showColor2('#6633FF')">
<area shape="rect" coords="145,45,151,54" href="javascript:showColor2('#993300')">
<area shape="rect" coords="153,45,159,54" href="javascript:showColor2('#993333')">
<area shape="rect" coords="161,45,167,54" href="javascript:showColor2('#993366')">
<area shape="rect" coords="169,45,175,54" href="javascript:showColor2('#993399')">
<area shape="rect" coords="177,45,183,54" href="javascript:showColor2('#9933CC')">
<area shape="rect" coords="185,45,191,54" href="javascript:showColor2('#9933FF')">
<area shape="rect" coords="193,45,199,54" href="javascript:showColor2('#CC3300')">
<area shape="rect" coords="201,45,207,54" href="javascript:showColor2('#CC3333')">
<area shape="rect" coords="209,45,215,54" href="javascript:showColor2('#CC3366')">
<area shape="rect" coords="217,45,223,54" href="javascript:showColor2('#CC3399')">
<area shape="rect" coords="225,45,231,54" href="javascript:showColor2('#CC33CC')">
<area shape="rect" coords="233,45,239,54" href="javascript:showColor2('#CC33FF')">
<area shape="rect" coords="241,45,247,54" href="javascript:showColor2('#FF3300')">
<area shape="rect" coords="249,45,255,54" href="javascript:showColor2('#FF3333')">
<area shape="rect" coords="257,45,263,54" href="javascript:showColor2('#FF3366')">
<area shape="rect" coords="265,45,271,54" href="javascript:showColor2('#FF3399')">
<area shape="rect" coords="273,45,279,54" href="javascript:showColor2('#FF33CC')">
<area shape="rect" coords="281,45,287,54" href="javascript:showColor2('#FF33FF')">
<area shape="rect" coords="1,56,7,65" href="javascript:showColor2('#000000')">
<area shape="rect" coords="9,56,15,65" href="javascript:showColor2('#000033')">
<area shape="rect" coords="17,56,23,65" href="javascript:showColor2('#000066')">
<area shape="rect" coords="25,56,31,65" href="javascript:showColor2('#000099')">
<area shape="rect" coords="33,56,39,65" href="javascript:showColor2('#0000CC')">
<area shape="rect" coords="41,56,47,65" href="javascript:showColor2('#0000FF')">
<area shape="rect" coords="49,56,55,65" href="javascript:showColor2('#330000')">
<area shape="rect" coords="57,56,63,65" href="javascript:showColor2('#330033')">
<area shape="rect" coords="65,56,71,65" href="javascript:showColor2('#330066')">
<area shape="rect" coords="73,56,79,65" href="javascript:showColor2('#330099')">
<area shape="rect" coords="81,56,87,65" href="javascript:showColor2('#3300CC')">
<area shape="rect" coords="89,56,95,65" href="javascript:showColor2('#3300FF')">
<area shape="rect" coords="97,56,103,65" href="javascript:showColor2('#660000')">
<area shape="rect" coords="105,56,111,65" href="javascript:showColor2('#660033')">
<area shape="rect" coords="113,56,119,65" href="javascript:showColor2('#660066')">
<area shape="rect" coords="121,56,127,65" href="javascript:showColor2('#660099')">
<area shape="rect" coords="129,56,135,65" href="javascript:showColor2('#6600CC')">
<area shape="rect" coords="137,56,143,65" href="javascript:showColor2('#6600FF')">
<area shape="rect" coords="145,56,151,65" href="javascript:showColor2('#990000')">
<area shape="rect" coords="153,56,159,65" href="javascript:showColor2('#990033')">
<area shape="rect" coords="161,56,167,65" href="javascript:showColor2('#990066')">
<area shape="rect" coords="169,56,175,65" href="javascript:showColor2('#990099')">
<area shape="rect" coords="177,56,183,65" href="javascript:showColor2('#9900CC')">
<area shape="rect" coords="185,56,191,65" href="javascript:showColor2('#9900FF')">
<area shape="rect" coords="193,56,199,65" href="javascript:showColor2('#CC0000')">
<area shape="rect" coords="201,56,207,65" href="javascript:showColor2('#CC0033')">
<area shape="rect" coords="209,56,215,65" href="javascript:showColor2('#CC0066')">
<area shape="rect" coords="217,56,223,65" href="javascript:showColor2('#CC0099')">
<area shape="rect" coords="225,56,231,65" href="javascript:showColor2('#CC00CC')">
<area shape="rect" coords="233,56,239,65" href="javascript:showColor2('#CC00FF')">
<area shape="rect" coords="241,56,247,65" href="javascript:showColor2('#FF0000')">
<area shape="rect" coords="249,56,255,65" href="javascript:showColor2('#FF0033')">
<area shape="rect" coords="257,56,263,65" href="javascript:showColor2('#FF0066')">
<area shape="rect" coords="265,56,271,65" href="javascript:showColor2('#FF0099')">
<area shape="rect" coords="273,56,279,65" href="javascript:showColor2('#FF00CC')">
<area shape="rect" coords="281,56,287,65" href="javascript:showColor2('#FF00FF')">
</map>
<img usemap="#colmap2" src="colortable.gif" border="0" width="289" height="67">
</td>
<td><input name="tagx" type="text" value="54" size="3" maxsize="3">X Coordinates<br>
<input name="tagy" type="text" value="30" size="3" maxsize="2">Y Coordinates</td>
</tr>
</table>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</td>
</tr>
</table>
</TD>
</TR>
</TABLE>
<input type="submit" value="Create"> <input type="reset" value="Reset">
</TD>
</TR>
</form>
</TABLE>
<br>Since install ApkaFuture has created <?php include("banners/counter.txt");
?> banner<?php
$filename = "banners/counter.txt";
$fp = fopen($filename, "r");
$count = fread($fp, 26);
fclose($fp);
if ($count > 1) {
print("s");
} elseif ($count == 0) {
print("s");
}
?>.
</div>
<?php
include("footer.inc");
?>
</td>
</tr>
</table>
$footer
</body>
</html>
BUt its not working
check it for urself
http://apkafuture.com/afbanner.php
WT DO I DO NOW?
You may want to reread the first post or post your problem in another thread. What isn't working?
LEAD_WEIGHT
09-23-2005, 06:14 AM
Would I need to add .php to every template I create or can I use the same .php script. Is it possible to just add more than one to the template name to .php ?
Nullifi3d
09-23-2005, 11:38 AM
vbulletin templates do not parse php.
LEAD_WEIGHT
09-23-2005, 11:02 PM
vbulletin templates do not parse php.
So, I have to create a .php script for each template I make? :ermm:
Nullifi3d
09-23-2005, 11:10 PM
No, one php script can handle several templates. Take a look at some of the php documents and search for $templatename. As you'll see this is where the vbulletin template used for that function is determined.
At the bottom of the pages you'll see:
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template($templatename) . '");');
This is the part of the document that prints the template set to $templatename earilier in the document.
LEAD_WEIGHT
09-23-2005, 11:22 PM
No, one php script can handle several templates. Take a look at some of the php documents and search for $templatename. As you'll see this is where the vbulletin template used for that function is determined.
At the bottom of the pages you'll see:
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template($templatename) . '");');
This is the part of the document that prints the template set to $templatename earilier in the document.
What about Custom templates that I make? I should of been more specific on question.
*edit
I must of been blind not to see this. :o
if ($_REQUEST['do'] == 'xxx')
{
eval('print_output("' . fetch_template('TEMPLATE_XXX') . '");');
}
hypnoticpimp
09-26-2005, 08:41 AM
i have an html file. that i want on this! where would i add it on, on that php file or the template i made
hey! how bout flash! whats the html code for flash onit! cause i enabled flash on mines! with this <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="830" height="580" id="nittoflash27(www.NittoLive.info)" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="h" />
<param name="quality" value="high" />
<param name="bgcolor" value="#000000" />
<embed src="http://www.ralphige.com/images/nittoflash27(www.NittoLive.info).swf" quality="high" bgcolor="#000000" width="830" height="580" name="nittoflash27(www.NittoLive.info)" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
But it wont Play! heres my page www.NittoLive.info/forums/nittomovie.php
hypnoticpimp
09-28-2005, 05:15 AM
still no help?
Nullifi3d
09-28-2005, 05:25 AM
try creating a new thread for what you want to do and be more specific. Your posts seem to have nothing to do with this thread/how-to.
You'll get better responses if you list your problems in your own thread.
Allan
10-07-2005, 07:44 PM
work on vB 3.5 Gold ?
no update of this hack ?
Nullifi3d
10-07-2005, 07:51 PM
Yes it works.
Snake
10-07-2005, 08:24 PM
Yeah it works fine on 3.5.0 Gold.
Allan
10-07-2005, 08:33 PM
Thanks :)
akanevsky
10-09-2005, 01:28 PM
Would you please write this for 3.5?
I could, just don't wanna look like I'm plagiarising :)
Thanks.
derekivey
10-09-2005, 02:38 PM
It works on 3.5. There is no need to rewrite it.
akanevsky
10-09-2005, 09:37 PM
Yes, except a few very minor changes.
We need to stay up to date ;)
derekivey
10-09-2005, 09:51 PM
What minor changes would those be? I am using this and it works fine.
I've been considering writing an updated version myself. At 26 pages this thread is already clumsy enough, and the last time the original post was updated was a year and a half ago. I agree the whole topic could use some fresh perspective.
akanevsky
10-10-2005, 12:09 AM
<a href="https://vborg.vbsupport.ru/showthread.php?p=791513#post791513" target="_blank">https://vborg.vbsupport.ru/showt...513#post791513</a>
derekivey
10-10-2005, 01:57 AM
Thanks! I'll check it out.
ryans
10-10-2005, 04:56 PM
Awesome tutorial. I've got it running on lots of my site now. Any way to reverse this hack? I have this damn content management system and it needs a header and footer file. I tried using obstart but it won't work right.
So is there anyway to have this as a header.php and a footer.php file that I can call from my dumb program? Thanks guys!
sherykah
10-12-2005, 03:39 PM
How would I make a vb powered page that would pull in another web page without the use of the template?
LEAD_WEIGHT
10-13-2005, 01:55 AM
How would I make a vb powered page that would pull in another web page without the use of the template?
<iframe></iframe> is one way, but then you need to create a template.
sherykah
10-15-2005, 02:22 PM
Thank you. I already have a template but didn't think about using iframe. The only limit with that it it won't show in netscape.
unknowngiver
10-24-2005, 03:31 PM
Hm templates wont parse PHP..then How do i make a custom PHP page? Can anyone Please help me
The only limit with that it it won't show in netscape.
You mean... won't show in NS4. Just for fun try running VB in that archaic wonder and see what happens.
ResaleBroker
11-15-2005, 06:31 PM
Excellent. Thank You! :)
fiber_cut
11-18-2005, 08:12 PM
This doesnt work for me I jsut get a blank page..
derekivey
11-18-2005, 08:16 PM
Then you didn't add the templates for the style you are using.
fiber_cut
11-18-2005, 08:18 PM
i am only using one style and I added it as a template.
matter of fact if I go into the style and edit the file I created it is in fact under the style.
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'upload'); // 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(
'applied',
AHH Shoot I feel like an idiot...
I didnt see the last spot where you had TEST..
Sorry man!!
Good work though!!!
gracye
11-27-2005, 02:29 AM
I'm using vb2, is there a custom page for that? I tried using this one and it wouldn't work, I kept getting an error. I tried just modyfying a page I had and then creating a template but it wouldn't work.
HELP!
MRGTB
11-29-2005, 07:09 PM
How do I change this so on the new page you create in the Nav Bar it doesn't show the page title as a sub title under the forum home title on the left in the navbar. Instead I just want it to list the page title only without a link back to the forum home
nader
11-30-2005, 05:16 AM
how to inculde the vbphrase ?
bitblaster
12-02-2005, 10:10 PM
This is very nice!
I am using vB 3.5.1, and it worked perfectly fine!
http://runescapeproject.com/updates.php is where I have mine at, and it worked WITHOUT ERROR.
Nader, I am not an expert, but I think it might be worth it to look in the vB user manual or API guide or something... just my opinion.
ncangler
12-15-2005, 03:26 PM
I don't know if this is possbile or not but I'm trying to create a stand alone index.php file that contains some code for a Beach Tide Table. The trick is getting the vBulletin header, footer and navbar on the page so it looks consistent with the rest of my site. The Tide Table code has to be in the index.php file as it contains information for multiple locations that is refreshed when you click on the location you want. Here is the Tide Table link:
http://www.ncangler.com/tides/wilmington/index.php
My forums are located here: http://www.ncangler.com/forums/
Can anyone tell me if this can be implemented with this hack? Thanks for your help!
Cebby
12-18-2005, 10:13 PM
A shot in the dark, but what if you nest the tidetable index.php under a directory of your choosing?
ncangler
12-18-2005, 10:28 PM
Hi Cebby. Thanks for the response. I'm not familiar with nesting. How would I do that?
A shot in the dark, but what if you nest the tidetable index.php under a directory of your choosing?
Cebby
12-19-2005, 01:05 AM
Nesting might not be the right nomenclature. Basically instead of calling the index.php that is the main vB page (in the root), you put another file called index.php inside another directory and point to that file instead. Like I said...shot in the dark... ;)
FWIW, I haven't implemented this hack yet, but will tonight... :cheeky:
Cebby
12-20-2005, 01:05 AM
Another thought (and probably more reliable). I was poking around in the admincp tonight and found where you can change the name of the main forum page. The default is index.php, but you can name it anything you want - you just need to rename the vB index.php file to the new name you choose.
Under vBulletin Options -> Forum Home Page Options -> (first item)
Cebby
12-22-2005, 01:56 AM
I don't know if this is possbile or not but I'm trying to create a stand alone index.php file that contains some code for a Beach Tide Table. The trick is getting the vBulletin header, footer and navbar on the page so it looks consistent with the rest of my site. The Tide Table code has to be in the index.php file as it contains information for multiple locations that is refreshed when you click on the location you want. Here is the Tide Table link:
http://www.ncangler.com/tides/wilmington/index.php
My forums are located here: http://www.ncangler.com/forums/
Can anyone tell me if this can be implemented with this hack? Thanks for your help!
I have this hack pretty much done, except I want to do the same thing you do.
I think this post (https://vborg.vbsupport.ru/showpost.php?p=756903&postcount=345) applies to what we want to do. (This is speaking of images, but I think the same methodology for calling other pages applies) I'd really like to display a separate PHP file in the main window. Seems this isn't like working in frames like HMTL...
MRGTB
12-26-2005, 10:09 AM
is there a version of this for vB3.5 series?
derekivey
12-26-2005, 02:19 PM
It works on 3.5. The only change you should make is to move $headinclude up before <title> in the template.
MRGTB
12-26-2005, 03:03 PM
You mean like this:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle]</title>
</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>
If thats right, does nothing need to be changed in the PHP file?
derekivey
12-27-2005, 06:50 PM
Yes, thats right. Nothing in the PHP file needs to be changed.
Eagle Creek
01-12-2006, 09:50 PM
You mean like this:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle]</title>
</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>
If thats right, does nothing need to be changed in the PHP file?
Is there an edit to the file so I won't to change it (I mean, the 3.5.x version).
demojames
01-13-2006, 02:21 AM
Thanks worked perfect on Vb 3.0.12 :up:
Asi9ine
01-13-2006, 02:53 PM
I'm gonna bookmark this page. Not got the time right now, but excellent work nonetheless. Well done.
cyberhypnotic
01-24-2006, 08:14 PM
How do you get the Who's Online to work in 3.5.3?
I did the original edit, but it came back with "Unknown" and a link to a file on my server.
I see that when you click on "Currently Active Users" it's online.php that handles it. What do I change in there?
Meanwhile, I'll keep trying some things.
matttiger
01-29-2006, 08:00 AM
Great tutorial. Thanks ;)
MRGTB
01-30-2006, 11:49 PM
How can this be made to work from outside your forums folder?
What code changes would have to be made
UManiac
02-09-2006, 03:52 AM
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
Ditto - html shows upe just fine - phrase do not...
Any help would be appreciated.
MRGTB
02-12-2006, 12:49 AM
Does anybody know how you can get the lastest thread titles displayed on the test template taken from the forum boards, that display the thread title as a link that when clicked leads to the thread itself
UManiac
02-12-2006, 12:56 AM
Ditto - html shows upe just fine - phrase do not...
Any help would be appreciated.
Got it to work :)
I added 'register' to special phrase gorups. See below
// get special phrase groups
$phrasegroups = array(
'register',
);
Eddymvp
02-18-2006, 01:05 PM
For some reason, when i do a query to the database within this page i get the following error
"Fatal error: Call to a member function on a non-object in /vservers/lustiesn/htdocs/vbulletin/main.php on line 45"
and there is the code that i'm using to query to the database
$getnews = $DB_site->query_first("SELECT * FROM thread left join post on (post.postid=thread.firstpostid) where thread.forumid=18 order by thread.threadid desc limit 1");
Marco van Herwaarden
02-20-2006, 10:34 AM
What version of vB are you running?
If you are using vB3.5, you will need to use $vbulletin->db->query_first instead of $DB_site->query_first.
PS I think there is a similar HOW-TO in our 3.5 Tutorial section.
Eagle Creek
02-20-2006, 06:51 PM
Look:
https://vborg.vbsupport.ru/external/2006/02/5.jpg
How can I change this so it IS a know location?
Smiry Kin's
02-20-2006, 06:58 PM
Look:
https://vborg.vbsupport.ru/attachment.php?attachmentid=43143&stc=1
How can I change this so it IS a know location?
i get this aswell, i think every one else does also:S if a fix can be made, then nice, if not no worries..
MRGTB
02-20-2006, 07:20 PM
i get this aswell, i think every one else does also:S if a fix can be made, then nice, if not no worries..
you obviously have not followed the instructions proper, as it tell you how to sort that out on the first page of this thread by the hack poster, who has also posted the code fix for Who's Online
Princeton
02-22-2006, 12:19 PM
3.5 users may be interested in GTCUSTOM PAGES (https://vborg.vbsupport.ru/showthread.php?t=108583)
paulomt1
02-23-2006, 02:09 AM
I need add this code to php file but doesn't work.
$ch = curl_init ("http://www.domain.name?".$QueryString);
curl_setopt ($ch, CURLOPT_HEADER, 0);
curl_exec ($ch);
if(curl_error($ch))
echo "Error processing request";
curl_close ($ch);
But if I comment this line it works, but is not a vbulletin page anymore :-(
eval('print_output("' . fetch_template('my_template') . '");');
I've solved the problem.
Barakat
03-24-2006, 08:54 PM
loook i made this .... but need ur help .
hi !
i have a little problem in reading and viewing some html from my database which i make it .... acually iam trying to make some differnt hack which can read templates from the database instead to include it to the style templates
the idea comes to me when i was trying to add some html templates to the style and i saw that its from the stupidity to add a houndred templates to a styles so it will make the forum style very heavy for me . any way here is the idea ....
i create that
CREATE TABLE `testdb` (
`id` int(10) unsigned NOT NULL auto_increment,
`name` varchar(50) NOT NULL default '',
`descr` varchar(50) NOT NULL default '',
`content` text NOT NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM;
and add for every id and content a unique number with a full html template.
i have more than 100 id with 100 full html text pages for that .
so i make a php file with a name of test.php and include that code inside it :
<?php
/*================================================= =====================*\
|| ################################################## ################## ||
|| # test v6.0.1 # ||
|| # Copyright ?2005- 2006 Barakat. All Rights Reserved. # ||
|| # # ||
|| ################################################## ################## ||
\*================================================ ======================*/
//-----------------------------------------
// By: Barakat Barakat
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// ##################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_SCRIPT', 'test');
// #################### 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();
// ########################## REQUIRE BACK-END ############################
require_once('./global.php');
// #################### HARD CODE JAVASCRIPT PATHS ########################
$headinclude = str_replace('clientscript', $vbulletin->options['bburl'] . '/clientscript', $headinclude);
// ################################################## ######################
// ######################### START MAIN SCRIPT ############################
// ################################################## ######################
if ($id) {
function getcontent($contentid) {
$contents =$vbulletin->db->query_read("SELECT content FROM " . TABLE_PREFIX . "testdb" . "WHERE id=$contentid");
$content = $vbulletin->db->fetch_Array($contents);
$contentid =$content[content];
$html=str_replace("\"","\\\"",$contentid);
return $html;
}
$que =$vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "testdb" . "WHERE id=$id");
$result =$vbulletin->db->query_read($que)
or die ("Error reaching the file.... ");
$page = $vbulletin->db->fetch_Array($result);
$navbits = construct_navbits(array('' => $page[name]));
eval('$navbar .= "' . fetch_template('navbar') . '";');
eval("print_output(\"".getcontent("$id")."\");");
}
/*================================================= =====================*\
|| ################################################## ##################
|| # CVS: $RCSfile: test.php,v $ - $Version: 6.0.1 $
|| ################################################## ##################
\*================================================ ======================*/
?>
www.forum/test.php?id=1
while browseing the file , a blank page appears to me !!!1
so ...........
if i include 'test_h' template to the style it will open it nicely but i need to read from my database by its id so to browse is as its browsed from the style it self:-
now if i want to read the templates from my styles i just make that changes
// pre-cache templates used by all actions
$globaltemplates = array('test_h');
and add that code instead of the main script corner
$navbits = array();
$navbits[$parent] = 'testss';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('test_h') . '");');
and off couse the test_h template is included and it tooks a style like that :-
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<!-- no cache headers -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<!-- end no cache headers -->
<title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>
$headinclude
</head>
<body>
$header
$navbar
<!-- html codes begins here-->
<!-- html codes ends here -->
$footer
</body>
</html>
P.S i tried also to include the functions in a function_test file and upload it to the includes but it did not works .......
Eagle Creek
03-24-2006, 08:59 PM
Hi Guys!
I read this:
https://vborg.vbsupport.ru/showthread.php?t=98009
But I can't get it working.
It's about this page:
http://www.nucia.nl/forum/donatie.php
So what I do is:
Plugin:
Product: vBulletin
Hook Location: online_location_process
Title: My Custom Location (Part1)
Plugin PHP Code: if ($filename == 'donatie.php')
{
$userinfo['activity'] = 'donatie';
}
[b]Plugin is Active: Yes
Plugin:
Product: vBulletin
Hook Location: online_location_unknown
Title: My Custom Location (Part2)
Plugin PHP Code: if ($userinfo['activity'] == 'donatie')
{
$userinfo['action'] = 'TEST message donation'; // you might wanna use a $vbphrase here...
$userinfo['where'] = '<a href="./donatie.php?' . $vbulletin->session->vars['sessionurl'] . '">THIS IS TEST MESSAGE</a>'; // you might wanna use a $vbphrase here...
$handled = true;
}
Plugin is Active: Yes
But it keeps saying 'unknow location'. Can somebody tell me what I'm doing wrong?
Cebby
03-24-2006, 09:27 PM
Mine does that, but the page looks good and works - that's the important part to me. The location thing is nothing more than an annoyance at the moment.
ztempuser
04-06-2006, 06:17 AM
how can i let only people that are logged in see this page?, and if not logged in it will take them to the log in page, or the page of choice.
*sorry for the newbie question*
captainandy
04-09-2006, 04:03 AM
Guessing some have more constructive things to do than nail others - or some of us don't really grow up huh?
Jordan17
04-10-2006, 06:08 PM
how can i let only people that are logged in see this page?, and if not logged in it will take them to the log in page, or the page of choice.
*sorry for the newbie question*
I would like this too. At the moment anyone can view the page, but I would like to restrict it to members only.
Freesteyelz
04-11-2006, 01:50 AM
blackwidow and Jordan17: Try somehting like this:
<?php
if (!$vbulletin->userinfo['userid'])
{
header("Location: http://www.redirected_page.com/");
exit;
}
?>
egyptsons
04-18-2006, 03:45 PM
thanks :)
funinthesun
05-13-2006, 11:02 PM
I made the php file and the template exactly as you described and when I point my url to test.php I get this
Warning: Division by zero in /includes/functions.php(4320) : eval()'d code on line 98
What have I done wrong?
Adrian Schneider
05-13-2006, 11:11 PM
I made the php file and the template exactly as you described and when I point my url to test.php I get this
Warning: Division by zero in /includes/functions.php(4320) : eval()'d code on line 98
What have I done wrong?
Post your PHP file and your template.
funinthesun
05-14-2006, 12:07 AM
My PHP file
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<?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') . '");');
?>
</body>
</html>
And 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">Title</td>
</tr>
<tr>
<td class="alt1">Text</td>
</tr>
</table>
$footer
</body>
</html>
Adrian Schneider
05-14-2006, 12:20 AM
Your PHP file shouldn't have any HTML in it!
<?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') . '");');
?>
funinthesun
05-14-2006, 12:57 AM
Doh! How stupid am I! It's late and I'm falling asleep, please forgive me ;)
Adrian Schneider
05-14-2006, 01:46 AM
Doh! How stupid am I! It's late and I'm falling asleep, please forgive me ;)
lol
Good luck!
funinthesun
05-14-2006, 01:58 PM
I want to display thumbnails on my page of all the same size and when they are clicked it opens the image in a new browser (like google image search). How would I go about doing this?
ang2el
05-18-2006, 05:37 PM
I am novice in php code just know how .html and use dreamweaver
I could make the test.php file but lost after that I mean where to make teplate and how to link them ...
So, I would be grateful if someone could explain me step by step what, how and where to do
thanks a lot
ang2el
05-20-2006, 02:25 AM
I tried Iframe code in the template but it didn't display the website that I wanted to display in the costume page created.
Can anyone help me how to display through template
or
how to create a page with just header navbar and footer or say no need to fetch template
thanks
Edit: I fixed it, I was putting the PHP file into the template instead of the HTML stuff.
futureye
06-23-2006, 06:17 PM
this method wont work with 3.5.4
ckandes1
06-24-2006, 04:50 AM
nice writeup
heyitsjeremy
07-07-2006, 03:15 AM
is there another copy of this that would work on 3.5.4 ?
vBSkins
07-09-2006, 05:33 AM
This works fine with vBulletin 3.5.4 I used it on my site at vBSkins.com to create a couple of pages.
Gryphon
07-10-2006, 08:48 PM
Works fine with 3.6.0 as well.
vBSkins
07-10-2006, 10:01 PM
It should work with all future versions of vBulletin, all it does is creates a template and you upload one simple .php file, its a great release :)
dodjer42
07-16-2006, 10:42 PM
I had a problem with the test page coming up blank. Turns out I created the test template as 'Test' rather than 'TEST'. Although my test server is Windows, it appears its still case sensitive. So once that was changed, it all worked perfectly.
Great hack :)
rootnik
07-21-2006, 07:46 PM
Can somebody please look over this and tell me why it doesn't work?
edit: Nevermind, It turned out to be a problem with the template, not the php code.
Ipuck
08-08-2006, 01:04 AM
It works great thanks!!!:D
I created another template(templeate2) with some information in html. Can insert that new template in the template a created first(template1).
template2 in template1.
I have tried but it doesn't work. Nothing is showing up.
Thanks
AzzidReign
08-11-2006, 06:08 PM
If im making an affilaite system, would I use:
<?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 ############################
// ################################################## #####################
$affiliates = $vbulletin->db->query_read_slave("
SELECT *
FROM " . TABLE_PREFIX . "affiiates
ORDER BY order ASC
");
$navbits = array();
$navbits[$parent] = 'Test Page';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
while ($affiliates = $vbulletin->db->fetch_array($affiliates))
{
eval('print_output("' . fetch_template('affiliates') . '");');
}
?>
gonecountry
08-16-2006, 04:34 PM
Ok please forgive me for the ??? I didn't have coffe today.
If I understand this correctly, for every page you want to create whether its 1 or 20 you make a new php file and an new template????
TIA
JompaMP
08-21-2006, 10:23 AM
i have problem when i go to this page its just a white page look http://forum.drazonia.com/premium.php
i got it to work
Renmiri
08-23-2006, 02:46 AM
You are an angel, thanks for this!
:)
aycan555
09-10-2006, 06:09 AM
Hi i have insatlled this hack, and it works perfectly,
But the problem is only registered users can view this page, i want to show all visitors, how can i do this?
SaN-DeeP
09-13-2006, 01:15 AM
works perfect in Vb 3.6 but need some modifications to whos online code..
can someone direct to right modifications for whos online for custom pages in 3.6 ?
ZacUSNYR
09-20-2006, 01:13 PM
works perfect in Vb 3.6 but need some modifications to whos online code..
can someone direct to right modifications for whos online for custom pages in 3.6 ?
Who's on-line has changed in the newer versions - just use plugins.
https://vborg.vbsupport.ru/showthread.php?t=82882
Simple and works great :)
Cebby
10-01-2006, 03:27 PM
I tried Iframe code in the template but it didn't display the website that I wanted to display in the costume page created.
Can anyone help me how to display through template
or
how to create a page with just header navbar and footer or say no need to fetch template
thanks
I have a need for this also. I just get a blank page. Any way to make this work? I've stripped out as much off the stuff out of the src file for the iframe as possible...
Or is there another way? (the reason for this is the person generating the content that I want to display in the iframe won't try to manually code it into the template directly) Any workarounds?
I get this when i try and access the test page? Any ideas?
http://www.prisonbreakscene.com/test.php
Adrian Schneider
10-14-2006, 04:53 AM
Add "<?php" to the very beginning of the file.
Add "<?php" to the very beginning of the file.
I'm such an idiot cant even copy and past! :confused:
Samouel
10-21-2006, 01:41 PM
For vbulletin 3.6.2 you could use :
You have to create a 'TEST' template :
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<!-- no cache headers -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<!-- end no cache headers -->
$headinclude
<title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>
</head>
<body>
$header
$navbar
<br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" style="border-bottom: 0" width="100%" align="center">
<tr>
<td class="cat-top">TEST</td>
</tr>
</table>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody>
<tr>
<td colspan="2">TEST</td>
</tr>
</tbody>
</table>
<br />
$footer
</body>
</html>
and a test.php file :
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_SCRIPT', 'index');
// 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');
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('TEST') . '");');
?>
I think it will work :up:
:bunny: :bunny:
************
Hum... I have a question :)
In my database, I have 5 records (5 names of country) and I would like to list them in the 'test.php' page.
My test.php file :
$name = $db->query_read_slave("SELECT name FROM country");
while ($country = $db->fetch_array($name))
{
$vbphrase[name] = $country['name'];
}
In the template, I indicate :
$vbphrase[name]
But I have just one name of country which is listed !
What I have to do to list all names of country ?
Thanks :rambo:
So to make one for 3.6.2, I would just need to do the one above this post in compliance to the other one on the first post?
Animesprings
10-24-2006, 07:53 PM
Sweet tutorial, lol I made a forum guidelines page (which I copied from another site...but I modified them a bit) with it on v3.6.2!
http://www.animesprings.com/forums/rules.php
Edit: Also if you want the default guest message to show up on your page (screenshot posted below) then find :
$navbar
Then Paste Below:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<if condition="$show['guest']">
<!-- guest welcome message -->
<tr>
<td class="tcat"><phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase></td>
</tr>
<tr>
<td class="alt1">
<phrase 1="faq.php$session[sessionurl_q]" 2="register.php$session[sessionurl_q]">$vbphrase[first_visit_message]</phrase>
</td>
</tr>
<!-- / guest welcome message -->
</if>
</table>
<br />
Sergio68
10-25-2006, 11:09 PM
I have 2 custom pages :
a) http://www.vbulletin.it/forums/prova.php
b) http://www.vbulletin.it/prova.php
In a) page vBMenu is working but not in the b) page.
Anyone can help me please ?
Sergio68
10-27-2006, 02:14 AM
Ok, solved.
Now I have a problem with PHP include, I can show the variables but I can't show the echo from the php file, what can I do ?
http://www.bodyweb.it/prodotti.php
__________________________________________________ ________________________
What a mess, automerged :D
__________________________________________________ ________________________
Hum... I have a question :)
In my database, I have 5 records (5 names of country) and I would like to list them in the 'test.php' page.
My test.php file :
$name = $db->query_read_slave("SELECT name FROM country");
while ($country = $db->fetch_array($name))
{
$vbphrase[name] = $country['name'];
}
In the template, I indicate :
$vbphrase[name]
But I have just one name of country which is listed !
What I have to do to list all names of country ?
Thanks :rambo:
$name = $db->query_read_slave("SELECT name FROM country");
$i=0;
while ($country = $db->fetch_array($name))
{
$vbphrase[$i] = $country['name'];
$i++;
}
$vbphrase[1]
$vbphrase[2]
$vbphrase[3]
$vbphrase[4]
$vbphrase[5]
May be ?
renalpha
10-27-2006, 11:37 AM
how do i do this?
i have a already installed skin,i want ot use that skin
i need to add a code or skin :S
How?
Please a stepby step tutorial would be nice,
Like when im in admin cp -> style manager _>
help would be nice
ty in future
CSS59
10-27-2006, 11:39 PM
How Can I make these pages searchable?
Adrian Schneider
10-27-2006, 11:41 PM
There's no easy way yet... vBulletin's search capabilities weren't created with flexibility in mind.
CSS59
10-27-2006, 11:46 PM
There's no easy way yet... vBulletin's search capabilities weren't created with flexibility in mind.
any way of doing it by duplicating the FAQ, then creating custom pages based on that? The FAQ has a search function
vern17
10-30-2006, 03:58 AM
I am trying to add a google map using this method. I have done everything I am supposed to, but for some reason when I get done it doesn't show up in IE. It works fine in Opera. What can I do to fix this? Thanks for your help guys.
jimbocook
11-01-2006, 10:50 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.
etc. etc.
this was trying to get the who's online etc. information to work with this hack. sross said he got it to work by moving the eval statements. If you're still around, can you tell me where you moved them?
Or can anyone else help?
GriZzm0
11-16-2006, 04:54 PM
Anyone know how to make it parse links and smileys?
Bacteria
11-21-2006, 08:04 PM
Grr I did exactly as it said but when I go to test.php it is a blank page. Is this right?
Captain Kirk76
11-23-2006, 06:04 PM
I can't get it working, it just gives me a blank page :(
Derekclarke
11-24-2006, 07:00 PM
Hi, using the codes from the first page with Vb 3.6.4 i have got the pages working, but cannot see how to restrict them to specific user groups?
Can anyone advise.
Thanks
Derek
shete
11-26-2006, 08:08 AM
Love this thank you so so much ! makes my site urls look much more professional and easier to remember
I can't get it working, it just gives me a blank page :(
it did that to me too ... but i bet your template is LOWERCASE huh ???
change it to CAPITALIZED LETTERS and it should work !
Grr I did exactly as it said but when I go to test.php it is a blank page. Is this right?
the template name needs to be capitalized !!
JimmyJames
11-29-2006, 03:21 PM
Ok, so I created a page and dropped the template in and everything works fine except for one thing. I need this page to be viewable by guests, so I tried wrapping a conditional around my template, but this did not work. Every time a guest tries to access my customized page, they get the generic vbulletin "you don't have permission to access this page" message. Any suggestions???
btw, i used this conditional around my template:
<if condition="$show['guest']"></if>
Gastongr
12-03-2006, 04:36 AM
Nice article.
I'm using this on a different directory, for those with path problems for images and links, adding the base url element with your forum path will solve it.
dakar
12-16-2006, 07:40 PM
Okay saw this a few pages back but it went unanswered;
Created new .php file and template.. works great... now the problem is the page I created takes user input and POSTS the values to another php script which does some math and echos the results. When the calculation page is called all the php echo and stuff is hosed.... The script works properly outside of vB. Am I missing something to perform standard php functions within a vB page?
wIrEs
01-02-2007, 10:11 AM
Does this work with 3.6.4?
i want to create a page with only the vbulletin copyrights at the bottom, making the page as my main index page, sort of like a mini-cms page with recent post, recent pictures etc...
Eagle Creek
01-02-2007, 04:05 PM
I have it working with 3.6.4.
coderphp
01-04-2007, 10:48 AM
nice tut thanx..
WhaLberg
01-04-2007, 10:52 AM
I was gonna open a thread same as that but it's good to see that it's already opened.
Some months ago, I thought how can I do an own page in the vB forum.. I checked the codes of official files.. It took my 2 month to understand that I need eval('print_output("' . fetch_template('templatename') . '");'); :D
Anyway..
Thanks.. I am sure people like your help. :)
wIrEs
01-05-2007, 02:12 PM
awesome, now i can finally move on with my life LOL, i mean, i have no longer limits on what i can do with vBulletin, sort of speak :)
thanks, installed.
i am a complete newbie. How would i make my new page appear in the bar that goes across that says UserCP, FAQ, Members List etc?
ragtek
01-13-2007, 09:31 PM
then edit the navbar template and search for memberlist.php then you know where you are ;) and where you have to put in the new link
Thank you, as i said, i am a complete newbie - thanks!
then edit the navbar template and search for memberlist.php then you know where you are ;) and where you have to put in the new link
I'm a little lost as to what i type in there now. Could you give me more details? My new page is called chatroom.php
stinger2
01-14-2007, 12:33 AM
very nice thank you....very easy to do
ragtek
01-14-2007, 12:33 PM
Thank you, as i said, i am a complete newbie - thanks!
I'm a little lost as to what i type in there now. Could you give me more details? My new page is called chatroom.php
<td class="vbmenu_control"><a href="chatroom.php$session[sessionurl_q]">linkname</a></td>
Thanks so much for your help!
I got it to work, thanks!
One question:
About ?do= thing you added at the bottom, I want to make a popup for vbshout. so you have http://url.com/vbshout.php as the main one, but when you type in http://url.com/vbshout.phpdo=popup a new mini window will popup so you can go all around the forum and be able to type in it. How would I be able to do that?
XxBuLLeTz
02-10-2007, 12:29 PM
im pretty sure to create a custom page, the link has to be in the root diretory...is there a way to get the custom page on another link like tournaments/index.php?
ZomgStuff
02-14-2007, 10:30 PM
im pretty sure to create a custom page, the link has to be in the root diretory...is there a way to get the custom page on another link like tournaments/index.php?
Use http and www headers, I believe.
Warlock40
02-15-2007, 07:14 PM
Baahhh.. All I get is a blank page. The names are in Capitals. I still can't get it to work.
Allan
03-05-2007, 10:21 PM
I add this, but don't show, always first page:
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'] == 'disclamer')
{
eval('print_output("' . fetch_template('disclamer') . '");');
}
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=disclamer to view this template.) Then of course, change TEMPLATE_XXX to your template name, it's that simple!
Any reason why this would work on an install with the default vB skin and *not* with a customised skin (with the TEST template created in each?) As in, it is blank when selecting the custom style. I confirm again the correct templates are there.
ReQueM
03-07-2007, 02:30 AM
thanks!!
i want change $navbits[$parent] = 'deneme'; for test.php?do=deneme page :confused:
Hi i am looking to try and use this to set up a directory using vb headers and footer on it is this possible and if so how would i do this? the directory is in the folder called directory and uses smatry templates if that helps.
Littlerocket
03-16-2007, 05:31 PM
Great mod. Does anyone have any idea how I'd integrate a PHP script into it though?
I'd like to integrate a php gallery script, but having no joy.
<removed>
Please don't post entire scripts, use an attachment (and check you have permission as well).
BrettMo
03-17-2007, 02:57 PM
I need to include a PHP file output in my template, but
<?PHP include("filename") ?>
does not work in a template. I see this covered over and over in this thread (I did read it) but I don't understand the answer to the problem. It seems to come down to something about making a variable in the "php include start template." Can someone explain how to do that to me in detail? Thanks.
tytyguy
03-21-2007, 08:43 PM
im getting a blank page. Im on vb 3.6.5 here are my codes. i want mydomain.com/sms.php
template
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle]</title>
</head>
<body>
$header
$navbar
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%"
align="center">
<tr>
<td class="tcat">My Custom Page Title</td>
</tr>
<tr>
<td class="alt1">Other Bluff...</td>
</tr>
</table>
$footer
</body>
</html>
and page
<?php
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// ##################### DEFINE IMPORTANT CONSTANTS #######################
// change the line below to the actual filename without ".php" extention.
// the reason for using actual filename without extention as a value of this constant is to ensure uniqueness of the value throughout every PHP file of any given vBulletin installation.
define('THIS_SCRIPT', 'sms');
// #################### 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(
// change the lines below to the list of actual templates used in the script
'sms',
);
// pre-cache templates used by specific actions
$actiontemplates = array();
// ########################## REQUIRE BACK-END ############################
require_once('./global.php');
// #################### HARD CODE JAVASCRIPT PATHS ########################
$headinclude = str_replace('clientscript', $vbulletin->options['bburl'] . '/clientscript', $headinclude);
// ################################################## ######################
// ######################### START MAIN SCRIPT ############################
// ################################################## ######################
$navbits = array();
// change the line below to contain whatever you want to show in the navbar (title of your custom page)
$navbits[$parent] = 'SMS Page';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
// change the line below to contain the name of the actual main output template used in your script
eval('print_output("' . fetch_template('SMS') . '");');
?>
edit: i got it.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.