Here's a better description of what i need.
Forum address:
www.site.com/forums/index.php
Image gallery main page address:
www.site.com/forums/gallery/index.php
Needed address:
www.site.com/forums/gallery.php
Previously, i've used invision, and there i could do this simply by adding the required entry in
www.site.com/forums/index.php. For example, if my file was gallery.php, i would add the folowing:
"gal" => "gallery",
And then if I called
www.site.com/forums/index.php?act=gal I'd see my gallery. Contents of the gallery.php would be as follows:
Code:
<?php
$idx = new gallery;
class gallery {
var $output = "";
var $page_title = "";
var $nav = array();
var $html = "";
var $base_url = "";
function Articles()
{
global $ibforums, $DB, $std, $print;
require('/home/site/public_html/forums/gallery/index.php');
$print->add_output('');
$print->do_output( array( 'TITLE' => "Gallery", 'JS' => 0, NAV => array( "Gallery" ) ) );
}
}
?>
That would do it in invision, no skin modification would even be required.
The quiestion is, how can i do this in vBulletin, still having it's design, footer and header?