PhotoPost Photo Gallery Sales PhotoPost Sales Toll Free Phone Number
Mon-Fri 9am-4pm EST
  PhotoPost Photo Sharing Photo Gallery    Visualize community tm
| | | | | | | | |

Go Back   PhotoPost Community > PhotoPost Support > PhotoPost Pro Support Forums > Photopost Pro Installation & Upgrades

Photopost Pro Installation & Upgrades If you're having install or upgrade problems

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old September 24th, 2004, 12:36 AM   #1 (permalink)
Member
Verified Customer
 
Join Date: Sep 2004
Posts: 103
Headers.php

Sorry for all these questions. Feel free to delete my other threads, as I've overcome the obstacles specified in each of them. Now one more problem..

Before you ask, yes I've read the vb3 integration thread and the manual and have conducted a search of any identical issue. I chose to transfer my headers over from vb3, but I keep getting runtime errors and my images aren't loading up (red x's).

The website I'm working on is http://www.realmofinfamy.com/forum and here are my header and headinclude templates:

Header

<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="$stylevar[left]"><a href="$vboptions[forumhome].php?$session[sessionurl]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
<td align="$stylevar[right]">
&nbsp;
<!--
NEW HEADER &amp; NAVBAR

Now that the nav buttons are in the
navbar template, you can stick whatever
you like into this space.

This makes it much easier for novice
admins to customize their header
template without affecting important
navigation elements.
-->
</td>
</tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output



HeadInclude

<meta http-equiv="Content-Type" content="text/html; charset=$stylevar[charset]" />
<meta name="generator" content="vBulletin $versionnumber" />
<meta name="keywords" content="$vboptions[keywords]" />
<meta name="description" content="$vboptions[description]" />

<!-- CSS Stylesheet -->
$style[css]
<if condition="is_browser('opera')">
<style type="text/css">
ul, ol { padding-left:20px; }
</style>
</if>
<!-- / CSS Stylesheet -->

<script type="text/javascript">
<!--
var SESSIONURL = "$session[sessionurl]";
var IMGDIR_MISC = "$stylevar[imgdir_misc]";
// -->
</script>

<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>


Give the information I've provided, along with my site url, precisely what am I supposed to plug into each template? Can you give me the exact string and the exact location of where I put it, please?

Last edited by orangeflea; September 24th, 2004 at 12:42 AM.
orangeflea is offline   Reply With Quote
Old September 24th, 2004, 08:06 AM   #2 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,795
example

src="clientscript/vbulletin_global.js

becomes

src="http://www.realmofinfamy.com/forum/clientscript/vbulletin_global.js

Per the VB3 Integration Thread you need to update all url's from relative urls to full urls
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is online now   Reply With Quote
Old September 24th, 2004, 11:19 AM   #3 (permalink)
Member
Verified Customer
 
Join Date: Sep 2004
Posts: 103
Damn, I've tried that and now a few of the images on my forum are messed up due to the redudant strings (i.e., http://www.realmofinfamy.com/forum/images/arrow.gifhttp://www.realmofinfamy.com/forum/images/arrow.gif")
orangeflea is offline   Reply With Quote
Old September 24th, 2004, 12:13 PM   #4 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,795
I would look for that one image call in you templates in case its the only one like that

You just got a little aggressive
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is online now   Reply With Quote
Old September 24th, 2004, 12:30 PM   #5 (permalink)
Member
Verified Customer
 
Join Date: Sep 2004
Posts: 103
I made all the changes, but my gallery still doesn't look right:

http://www.realmofinfamy.com/gallery

This is the main site: http://www.realmofinfamy.com/forum

I've done the changes to the header, headinclude, navbar, footer and navlink templates. What am I missing???

Last edited by orangeflea; September 24th, 2004 at 01:06 PM.
orangeflea is offline   Reply With Quote
Old September 24th, 2004, 01:08 PM   #6 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,795
Go into the Photopost admin section and in the edit options first paragraph of settings set Use forum Integration to yes
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is online now   Reply With Quote
Old September 24th, 2004, 05:22 PM   #7 (permalink)
Member
Verified Customer
 
Join Date: Sep 2004
Posts: 103
You're a god among men, Omegatron. Seriously.

Now there's one small, small problem. You know the font associated with the photo titles? Well, I want to adjust the font color of mine since it is black and it's on a brown background (you've seen my page), and I was wondering if it could be modified? In other words, I want to adjust the font size/color of the photo title text.

Please don't tell me I have to change the font of my board to do it.
orangeflea is offline   Reply With Quote
Old September 24th, 2004, 10:05 PM   #8 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,795
Well lets see LOL

The answer is yes and no. That is using the colors of your forum but you can do a template edit and change it if you want so the color change is only affected on the titles

EXAMPLE

SHOWPHOTO.TMPL

Lines 70-74

if ( $Globals['disptitle'] == "yes" ) {
echo<<<PPPRINT
<b>$title</b></span><br />
PPPRINT;
}

change to this say for white text

if ( $Globals['disptitle'] == "yes" ) {
echo<<<PPPRINT
<span style="color: #FFFFFF"><b>$title</b></span><br />
PPPRINT;
}
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is online now   Reply With Quote
Old September 28th, 2004, 12:04 PM   #9 (permalink)
Member
Verified Customer
 
Join Date: Aug 2003
Posts: 30
Send a message via AIM to RMS-Chef
Quote:
Originally Posted by omegatron
example

src="clientscript/vbulletin_global.js

becomes

src="http://www.realmofinfamy.com/forum/clientscript/vbulletin_global.js

Per the VB3 Integration Thread you need to update all url's from relative urls to full urls
Might be better to have people use:

$vboptions[bburl]/clientscript....

I always think the less hard coding the better with vB3
RMS-Chef is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Custom Headers Reefland How Do I? - vBulletin 3.0.X 1 June 18th, 2005 02:26 AM
Upgrade init.php conflicting with functions_gallery.php golfrewind Installs and Upgrade - vBulletin 3.0.X 2 January 12th, 2005 04:17 AM
vb3 headers on rp wacnstac ReviewPost Installation & Upgrades 2 December 22nd, 2004 05:21 PM
Different Headers vonedaddy General Discussion 1 August 16th, 2004 11:37 AM


All times are GMT -5. The time now is 10:51 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0