Jaxx
I don't know if this will help. I also use Photopost. These are the instuctions that I wrote down for myself for future use in case I had these problems again.
You will have to replace all the "your_website.com" with the name of your web site.
I had to do the following to get the VB header and footer to work in the gallery area.
Go to the gallery area and empty all the code in the file "header-inc.php" and replace it with:
PHP Code:
<?php
$vbpath ="/home/atphotos/public_html/geomaine/forum";
$pppath ="/home/atphotos/public_html/geomaine/gallery";
chdir($vbpath);
require("./global.php");
eval('$navbar = "' . fetch_template('navbar') . '";');
$vbheader = "$stylevar[htmldoctype]
<html dir=\"$stylevar[textdirection]\" lang=\"$stylevar[languagecode]\">
<head>
<link rel=\"stylesheet\" href=\"/gallery/stylesheets/gm.css\" type=\"text/css\" />
$headinclude";
$vbheader .= "</head>
<body>
$header
$navbar
<div align=\"center\">";
eval('$vbfooter = "' . fetch_template('footer') . '";');
$vbfooter = process_replacement_vars($vbfooter);
$vbfooter = "</div>$vbfooter";
chdir($pppath . "/");
$HTTP_POST_FILES = $_FILES;
$HTTP_POST_VARS = $_POST;
?>
You will have to create a style in your gallery called "gm.css" for this to work.
Now go to your vBulletin templates in your ADMINCP and do the following changes:
In the headerinclude template.
Find:
Code:
<script type="text/javascript" src="clientscript/vbulletin_global.js"></script>
<if condition="$show['popups']"><script type="text/javascript" src="clientscript/vbulletin_menu.js"></script></if>
Replace with:
Code:
<script type="text/javascript" src="<A href="http://geocachingmaine.org/forum/clientscript/vbulletin_global.js"></script">http://geocachingmaine.org/forum/clientscript/vbulletin_global.js"></script>
<if condition="$show['popups']"><script type="text/javascript" src="<A href="http://geocachingmaine.org/forum/clientscript/vbulletin_menu.js"></script></if>[/CODE">http://geocachingmaine.org/forum/clientscript/vbulletin_menu.js"></script></if>
Go to you vBulletin footer template and replace it with the following code:
Find:
Code:
<a href="$vboptions[contactuslink]">$vbphrase[contact_us]</a> -
<a href="$vboptions[homeurl]">$vboptions[hometitle]</a> -
<if condition="$show['admincplink']"><a href="$admincpdir/index.php?$session[sessionurl]">$vbphrase[admin]</a> -</if>
<if condition="$show['modcplink']"><a href="$modcpdir/index.php?$session[sessionurl]">$vbphrase[mod]</a> -</if>
<if condition="$vboptions['archiveenabled']"><a href="archive/index.php">$vbphrase[archive]</a> -</if>
<!-- - <a href="$vboptions[privacyurl]">$vbphrase[privacy_statement]</a> - -->
<a href="#top" onclick="self.scrollTo(0, 0); return false;">$vbphrase[top]</a>
Replace with:
Code:
<!-- attroll foot mod for gallery -->
<a href="<A href="http://geocachingmaine.org/forum/sendmessage.php">$vbphrase[contact_us]</a">http://geocachingmaine.org/forum/sendmessage.php">$vbphrase[contact_us]</a> -
<a href="$vboptions[homeurl]">$vboptions[hometitle]</a> -
<if condition="$show['admincplink']"><a href="<A href="http://geocachingmaine.org/forum/admincp/index.php?$session[sessionurl]">$vbphrase[admin]</a">http://geocachingmaine.org/forum/admincp/index.php?$session[sessionurl]">$vbphrase[admin]</a> -</if>
<if condition="$show['modcplink']"><a href="<A href="http://geocachingmaine.org/forum/modcp/index.php?$session[sessionurl]">$vbphrase[mod]</a">http://geocachingmaine.org/forum/modcp/index.php?$session[sessionurl]">$vbphrase[mod]</a> -</if>
<if condition="$vboptions['archiveenabled']"><a href="<A href="http://geocachingmaine.org/forum/archive/index.php">$vbphrase[archive]</a">http://geocachingmaine.org/forum/archive/index.php">$vbphrase[archive]</a> -</if>
<if condition="$vboptions[privacyurl]"><a href="$vboptions[privacyurl]">$vbphrase[privacy_statement]</a> -</if>
<a href="http://geocachingmaine.org/forum/#top" onclick="self.scrollTo(0, 0); return false;">$vbphrase[top]</a>
<!-- / attroll foot mod for gallery -->