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 Classifieds Support > Classifieds Installation & Upgrades

Classifieds Installation & Upgrades If you're having install or upgrade problems, post here.

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old March 21st, 2006, 09:00 AM   #1 (permalink)
Member
Verified Customer
 
Join Date: May 2003
Location: Spring Branch, Texas
Posts: 391
Calendar Pal just won't show up.

OK, I've got another problem that I haven't posted on before because it's no great shakes... I can't get the Calender Pal to show up. I have it turned on, but it doesn't show. I've tried turning it on and off. Reuploading the tmpl file. Making the sidebar global.

Got any solutions for that?
creativepart is offline   Reply With Quote
Old March 21st, 2006, 09:14 AM   #2 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,702
I dont see any issues here if I set the sidebar on and the calendarpal is set to yes as well it shows.
__________________
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 March 21st, 2006, 09:18 AM   #3 (permalink)
Member
Verified Customer
 
Join Date: May 2003
Location: Spring Branch, Texas
Posts: 391
I have sidebar on (right) and Calander Pal Yes and it's not showing on my install.
I tried Sidebar global and under Cat bar and it won't show for those either.

See my site at http://www.tdpri.com/phpclassifieds
creativepart is offline   Reply With Quote
Old March 21st, 2006, 09:22 AM   #4 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,702
Your template looks old to me.

I show this in the current code and you can use this template
Attached Files
File Type: tmpl sidebar_rightclose.tmpl (928 Bytes, 3 views)
__________________
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 March 21st, 2006, 09:27 AM   #5 (permalink)
Member
Verified Customer
 
Join Date: May 2003
Location: Spring Branch, Texas
Posts: 391
Nope. That didn't help.

Any other ideas?
Thanks
Paul
creativepart is offline   Reply With Quote
Old March 21st, 2006, 09:45 AM   #6 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,702
Of course that helps Did you upload it to the proper template folder?
__________________
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 March 21st, 2006, 11:10 AM   #7 (permalink)
Member
Verified Customer
 
Join Date: May 2003
Location: Spring Branch, Texas
Posts: 391
Ok, it was good of you to help. Sorry. But it didn't make the Pal show up on the index page. But, just to be sure. I just did this again:

1. I downloaded the attachment to a bare folder on my C drive.
2. I uploaded it via WS_FTP to http//www.tdpri.com/phpclassifieds/templates folder.
3. The Calender settings are still set to on.
4. The Sidebar is still set to right.
5. There is no Calendar pal showing on my index page.
creativepart is offline   Reply With Quote
Old March 21st, 2006, 11:27 AM   #8 (permalink)
Member
Verified Customer
 
Join Date: May 2003
Location: Spring Branch, Texas
Posts: 391
I just got the Calendar Pal to show up. But the way I did it isn't right.

I copied the contents of calpal.tmpl into an empty file and renamed the file custom3pal.tmpl and then uploaded that and set Admin to show Custom Pal #3.

And NOW the Calendar shows.

So.... yikes. That's weird.
Paul
creativepart is offline   Reply With Quote
Old March 21st, 2006, 11:39 AM   #9 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,702
well that tells me your calpal is off in sidebar settings.

The template I have definately shows if calpal is yes then it shows.
__________________
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 March 21st, 2006, 11:57 AM   #10 (permalink)
Member
Verified Customer
 
Join Date: May 2003
Location: Spring Branch, Texas
Posts: 391
I'm not sure what you mean. My calpal.tmpl file contents supplied the code for Custom3pal.tmp so we know the code works. And I guarantee you that I've uploaded your sidebar_rightclose tmpl to the correct place.

Here is the sidebar_rightclose.tmpl file contents in your attachement. I don't see calpal.tmpl being called anywhere.
Quote:
<?php

echo <<<PPPRINT
</td>
<td width="10">
&nbsp;
</td>
<td align="center" valign="top" width="{$Globals['sidebar_width']}">
PPPRINT;

if ( $Globals['statspal'] == "yes" ) {
include( "{$Globals['TMPL_PATH']}/statspal.tmpl" );
}

if ( $Globals['randompal'] == "yes" ) {
$pphold = $ppopen; $ppopen = $ppopenside;
$pphold2 = $ppclose; $ppclose = $ppcloseside;
display_gallery("random", "", "", 1, 1);
$ppopen = $pphold; $ppclose = $pphold2;
}

if ( $Globals['ratingspal'] == "yes" ) {
include( "{$Globals['TMPL_PATH']}/topviewedpal.tmpl" );
}

if ( $Globals['custom1pal'] == "yes" ) {
include( "{$Globals['TMPL_PATH']}/custom1pal.tmpl" );
}

if ( $Globals['custom2pal'] == "yes" ) {
include( "{$Globals['TMPL_PATH']}/custom2pal.tmpl" );
}

if ( $Globals['custom3pal'] == "yes" ) {
include( "{$Globals['TMPL_PATH']}/custom3pal.tmpl" );
}

echo<<<PPPRINT
</td>
</tr>
</table>
<br />
PPPRINT;
?>
creativepart is offline   Reply With Quote
Old March 21st, 2006, 12:23 PM   #11 (permalink)
Member
Verified Customer
 
Join Date: May 2003
Location: Spring Branch, Texas
Posts: 391
Fixed it!

I took your sidebar_rightclose.tmpl (but could have used any, they were all missing it) and put:

Quote:
if ( $Globals['calpal'] == "yes" ) {
include( "{$Globals['TMPL_PATH']}/calpal.tmpl" );
}
and my Calpal now works as intended.

Paul
creativepart is offline   Reply With Quote
Old March 21st, 2006, 12:24 PM   #12 (permalink)
Member
Verified Customer
 
Join Date: May 2003
Location: Spring Branch, Texas
Posts: 391
By the way, sidebar_leftopen.tmpl is missing it too.
creativepart 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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Statisticsd and Calendar Schahab Photopost Pro How Do I...? 3 April 10th, 2006 12:39 PM
2.5: Calendar pal not showing up snoopy5 Classifieds Installation & Upgrades 10 February 13th, 2006 03:06 PM
Calendar pal bwolcott Photopost Pro How Do I...? 1 January 27th, 2006 09:31 AM
Calendar PAL - New Features InterFX ReviewPost Suggestions 1 January 5th, 2006 05:35 PM
Edit the Calendar PAL Title? trackpads Photopost Pro How Do I...? 1 December 5th, 2005 06:53 AM


All times are GMT -5. The time now is 09:20 AM.

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