I'm using VB3 and PP 5.01 with integration. Everything is working great now with much thanks to Omegatron.
The only silly little problem I have left is something that has occurred with the rollover buttons on the VBStyles Aria skin I am using. The rollovers work fine on the forum but for some reason when the header is generated for PP, some work and some do not.
I'm getting a pop up error on the 'members', 'search', and 'faq'
JSFX.Rollover - An Error Has Been Detected
You must define a JSFX.Rollover in your document
JSFX.Rollover("members","your_on_img.gif")
(check the spelling of your JSFX.Rollovers)
JSFX.findImg - An error has been detected
<IMG SRC="your_image.ext"Name="members">
(check the Name=attribute of your images)
The forum is located at
www.samsmarine.com/forums/index.php
The gallery is located at
www.samsmarine.com/photopost/index.php
Here's what is being generated on the forum page...
</script>
<script type="text/javascript" src="clientscript/vbulletin_global.
js"></script>
<script type="text/javascript" src="clientscript/vbulletin_menu.
js"></script>
<SCRIPT LANGUAGE=JavaScript SRC="aria/misc/rollovers.
js" TYPE="text/javascript"></SCRIPT>
<SCRIPT LANGUAGE="javascript">
<!--
JSFX.Rollover("register", "aria/misc/register_over.gif");
JSFX.Rollover("usercp", "aria/misc/usercp_over.gif");
JSFX.Rollover("faq", "aria/misc/faq_over.gif");
JSFX.Rollover("members", "aria/misc/members_over.gif");
JSFX.Rollover("calendar", "aria/misc/calendar_over.gif");
JSFX.Rollover("daily", "aria/misc/daily_over.gif");
JSFX.Rollover("new", "aria/misc/new_posts_over.gif");
JSFX.Rollover("search", "aria/misc/search_over.gif");
JSFX.Rollover("links", "aria/misc/links_over.gif");
JSFX.Rollover("logout", "aria/misc/logout_over.gif");
//-->
Here's what is being generated on the PP page
// -->
</script>
<script type="text/javascript" src="http://www.samsmarine.com/forums/clientscript/vbulletin_global.
js"></script>
<script type="text/javascript" src="http://www.samsmarine.com/forums/clientscript/vbulletin_menu.
js"></script>
<SCRIPT LANGUAGE=JavaScript SRC="aria/misc/rollovers.
js" TYPE="text/javascript"></SCRIPT>
<SCRIPT LANGUAGE="javascript">
<!--
JSFX.Rollover("http://www.samsmarine.com/forums/register", "aria/misc/register_over.gif");
JSFX.Rollover("usercp", "aria/misc/usercp_over.gif");
JSFX.Rollover("http://www.samsmarine.com/forums/faq", "aria/misc/faq_over.gif");
JSFX.Rollover("http://www.samsmarine.com/forums/members", "aria/misc/members_over.gif");
JSFX.Rollover("calendar", "aria/misc/calendar_over.gif");
JSFX.Rollover("daily", "aria/misc/daily_over.gif");
JSFX.Rollover("new", "aria/misc/new_posts_over.gif");
JSFX.Rollover("http://www.samsmarine.com/forums/search", "aria/misc/search_over.gif");
JSFX.Rollover("links", "aria/misc/links_over.gif");
JSFX.Rollover("logout", "aria/misc/logout_over.gif");
//-->
I have the aria/misc directory in both the /forums directory and in the /photopost directory
Here is what is in the headinclude template in
VB...
<SCRIPT LANGUAGE=JavaScript SRC="$stylevar[imgdir_misc]/rollovers.
js" TYPE="text/javascript"></SCRIPT>
<SCRIPT LANGUAGE="javascript">
<!--
JSFX.Rollover("register", "$stylevar[imgdir_misc]/register_over.gif");
JSFX.Rollover("usercp", "$stylevar[imgdir_misc]/usercp_over.gif");
JSFX.Rollover("faq", "$stylevar[imgdir_misc]/faq_over.gif");
JSFX.Rollover("members", "$stylevar[imgdir_misc]/members_over.gif");
JSFX.Rollover("calendar", "$stylevar[imgdir_misc]/calendar_over.gif");
JSFX.Rollover("daily", "$stylevar[imgdir_misc]/daily_over.gif");
JSFX.Rollover("new", "$stylevar[imgdir_misc]/new_posts_over.gif");
JSFX.Rollover("search", "$stylevar[imgdir_misc]/search_over.gif");
JSFX.Rollover("links", "$stylevar[imgdir_misc]/links_over.gif");
JSFX.Rollover("logout", "$stylevar[imgdir_misc]/logout_over.gif");
//-->
</SCRIPT>
Any ideas? Any help very much appreciated.