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 5th, 2004, 01:48 AM   #1 (permalink)
Junior Member
Verified Customer
 
Join Date: Sep 2004
Posts: 8
Problem with Install

I make it fine to step 3 of the installation. I put in all the information including that I am going to integrate with phbbs 2.0

Hit Complete Installation and receive the error:

Warning: main(/shaderscafe/photopost/languages/english/pp-inc.php): failed to open stream: No such file or directory in /homepages/46/d101686943/htdocs/shaderscafe/photopost/pp-inc.php on line 63

Fatal error: main(): Failed opening required '/shaderscafe/photopost/languages/english/pp-inc.php' (include_path='.:/usr/local/lib/php') in /homepages/46/d101686943/htdocs/shaderscafe/photopost/pp-inc.php on line 63

Not sure what to do from here.

- Noel
Nomi is offline   Reply With Quote
Old September 5th, 2004, 08:19 AM   #2 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,703
When you installed the program you did not input the proper path to the install

You can FTP in and edit the variable below

$PP_PATH="/shaderscafe/photopost";

change to

$PP_PATH="/homepages/46/d101686943/htdocs/shaderscafe/photopost";
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old September 5th, 2004, 12:38 PM   #3 (permalink)
Junior Member
Verified Customer
 
Join Date: Sep 2004
Posts: 8
I changed the variable on line 60 (only instance I could find)

Still receiving this when I try to go to adm-index.php

Fatal error: main(): Failed opening required '/shaderscafe/photopost/languages/english/pp-inc.php' (include_path='.:/usr/local/lib/php') in /homepages/46/d101686943/htdocs/shaderscafe/photopost/pp-inc.php on line 63

- Noel
Nomi is offline   Reply With Quote
Old September 5th, 2004, 12:49 PM   #4 (permalink)
Junior Member
Verified Customer
 
Join Date: Sep 2004
Posts: 8
Looks like I found the issue It all seems to be working now.

- Noel
Nomi is offline   Reply With Quote
Old September 5th, 2004, 12:49 PM   #5 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,703
The file to edit is config-inc.php line 18.

Upload a clean pp-inc.php file as you did not want to edit that
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old September 5th, 2004, 01:11 PM   #6 (permalink)
Junior Member
Verified Customer
 
Join Date: Sep 2004
Posts: 8
It all seems to be working except I don't seem to understand how to integrate it with phpbb 2.0.

I have Use Integrated forum Stylesheets set to yes. But I don't see anything. I'm sure it is something simple, but what do I do now?

- Noel
Nomi is offline   Reply With Quote
Old September 5th, 2004, 02:26 PM   #7 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,703
Your install looks fine to me. It has the colors of the forum.

You might want to edit the stylesheet image calls from a relative path

background-image: url(templates/Aeolus/images/bg_cat4.gif);

To a full url so any images called by Photopost will be seen on Photopost.

background-image: url(http://shaderscafe.com/forums/templa...es/bg_cat4.gif);

Take not also if you have some fancy template sets in phpBB as it seems that one does. You will need to alter your photopost ppopen and ppclose templates to allow for that. Make sure to backup anything in case you mess up. I cant test these as I do not run phpbb but this should work for that stylesheet

Something like this

ppopen would be something like this

<?php

$ppopen = <<<PPPRINT

<table class="{$Style['tablesurround']}" cellpadding="1" cellspacing="1" border="0" width="{$Globals['tablewidth']}" align="center">

<tr>
<td width="23" align="right" valign="bottom"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/top_left.gif" width="23" height="36" border="0" alt="" /></td>

<td width="100%" align="left" valign="middle" background="templates/Aeolus/images/top_center.gif"><table border="0" cellspacing="0" cellpadding="0"><tr><td><img src="http://shaderscafe.com/forums/templates/Aeolus/images/spacer.gif" width="1" height="11" border="0" /></td></tr>





<tr>
<td>
<table cellpadding="2" cellspacing="1" border="0" width="100%" class="{$Style['tableborders']}">

PPPRINT;

$ppopenside = <<<PPPRINT

<table class="{$Style['tablesurround']}" cellpadding="1" cellspacing="1" border="0" width="100%" align="center">
<tr>
<td width="23" align="right" valign="bottom"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/top_left.gif" width="23" height="36" border="0" alt="" /></td>

<td width="100%" align="left" valign="middle" background="templates/Aeolus/images/top_center.gif"><table border="0" cellspacing="0" cellpadding="0"><tr><td><img src="http://shaderscafe.com/forums/templates/Aeolus/images/spacer.gif" width="1" height="11" border="0" /></td></tr>
<tr>
<td>
<table cellpadding="2" cellspacing="1" width="100%" class="{$Style['tableborders']}">

PPPRINT;

?>

ppclose template would be something like this

<?php

$ppclose = <<<PPPRINT

<tr>
<td width="10" align="right" valign="top"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/bottom_left.gif" width="10" height="10" border="0" alt="" /></td>
<td width="100%" background="templates/Aeolus/images/bottom_center.gif"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/spacer.gif" width="1" height="1" border="0" alt="" /></td>
<td width="10" align="left" valign="top"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/bottom_right.gif" width="10" height="10" border="0" alt="" /></td>
</tr>
</table>
</td>
</tr>
</table>

PPPRINT;

$ppcloseside = <<<PPPRINT

<tr>
<td width="10" align="right" valign="top"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/bottom_left.gif" width="10" height="10" border="0" alt="" /></td>
<td width="100%" background="templates/Aeolus/images/bottom_center.gif"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/spacer.gif" width="1" height="1" border="0" alt="" /></td>
<td width="10" align="left" valign="top"><img src="http://shaderscafe.com/forums/templates/Aeolus/images/bottom_right.gif" width="10" height="10" border="0" alt="" /></td>
</tr>
</table>
</td>
</tr>
</table>

PPPRINT;

?>
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old September 5th, 2004, 03:58 PM   #8 (permalink)
Junior Member
Verified Customer
 
Join Date: Sep 2004
Posts: 8
Ok so if I want something like you guys have where the random images and photos and such show up on the forums, I am going to have to do that as a custom design for our forum?

I thought the integration would setup where the forums would display the images and such. Is that not the case? Either way I'll figure it out Just want to know how much work I'm in for here.

- Noel
Nomi is offline   Reply With Quote
Old September 5th, 2004, 07:04 PM   #9 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,703
Nope that thumbnail block on our forums is a hack

Hacks can be found at http://www.photopostdev.com
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S 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
Install problem calvorn Photopost Pro Installation & Upgrades 12 November 25th, 2005 08:36 PM
Install problem Hemmi Photopost Pro Installation & Upgrades 0 May 27th, 2005 12:52 PM
one problem with install rabbitek ReviewPost Installation & Upgrades 1 April 22nd, 2005 09:59 AM
Install Problem ejectorset Photopost Pro Installation & Upgrades 3 March 14th, 2005 10:04 AM
Install Problem RapCheck Photopost Pro Installation & Upgrades 4 October 3rd, 2004 06:39 PM


All times are GMT -5. The time now is 03:25 PM.

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