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 June 24th, 2005, 05:14 PM   #1 (permalink)
Junior Member
Verified Customer
 
Join Date: Sep 2004
Posts: 26
Install and runtime problems with 5.1 on Fusion.12

Hi I apologize in advance if this is the wrong forum and for putting multiple problems in one post.

So I'm running a fresh install of PP5.1 on a fresh install FusionBB.12beta on Debian with PHP4.3 and MySQL4.1.

-First problem is during install I got an error saying it could not find Mogrify, even though I know the path is correct because it is working on my production installation w/ UBB.threads/PhotoPost. I can confirm this because it is not making thumbnails.

-Second problem is that myself as a Admin can't post pictures but my test users can. The error I get logged in as admin is this.

Code:
Content visible to verified customers only.
as well as
Code:
Content visible to verified customers only.
I know that it knows who I am because it tells me I'm logged in and lets me see the admin panel.

-Third problem is that users who post get this error message in a refresh page, and thumbnails are not made (because of the mogrify error).
Code:
Content visible to verified customers only.
I've checked the permissions for all my files and everything seems to be correct, and I've checked all the paths, so I'm at a loss here to what is wrong.

Any help would be appreciated!

TIA, Jon
cascadeclimbers is offline   Reply With Quote
Old June 24th, 2005, 05:42 PM   #2 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
John

There is only one file error that has been reported with fusion.php which is a typo in the distribution

Line 27 of fusion.php has this

{$Globals['dprefix']}user_info.user_login FROM {$Globals['dprefix']}users

it should be this

{$Globals['dprefix']}users.user_login FROM {$Globals['dprefix']}users

Now your other issue is a server one not photopost one. Apparently exec has been disabled on this server which tells me you cant use mogrify at all. You would need to check with your host on this and alternatively use GD2
Chuck S is offline   Reply With Quote
Old June 25th, 2005, 02:25 AM   #3 (permalink)
Junior Member
Verified Customer
 
Join Date: Sep 2004
Posts: 26
Thanks Chuck.

I checked with our host and they have disabled exec under PHP apache module, I'm switching to the CGI-PHP to see if that resolves the problem.

I changed that code and now I'm getting the same error but on line 401

Code:
Content visible to verified customers only.
and says it isn't able to post photo.

Now that is when I have admin deleted in the Admin Options in the bottom. If I have admin name in the admin I just get the "unable to find user error".
cascadeclimbers is offline   Reply With Quote
Old June 25th, 2005, 02:27 AM   #4 (permalink)
Junior Member
Verified Customer
 
Join Date: Sep 2004
Posts: 26
Ok it looks like the mogrify/thumbnail problem is resolved!
cascadeclimbers is offline   Reply With Quote
Old June 25th, 2005, 06:42 AM   #5 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
Okay just to be sure you did the edit right and all issues are solved make sure your fusion file is this one renamed to php obviously
Attached Files
File Type: txt fusion.txt (32.8 KB, 2 views)
__________________
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 June 25th, 2005, 05:24 PM   #6 (permalink)
Junior Member
Verified Customer
 
Join Date: Sep 2004
Posts: 26
I uploaded the file and am getting the same error. I logged in as a normal user and was able to post without any problems, so it appears it has something to do with admin users.
cascadeclimbers is offline   Reply With Quote
Old June 25th, 2005, 06:40 PM   #7 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
I can post as an admin user without any issues on my fusion site. I use the same fusion file I posted here.

You know the drill PM me with whatever access to investigate and help.
__________________
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 June 25th, 2005, 10:03 PM   #8 (permalink)
Junior Member
Verified Customer
 
Join Date: Sep 2004
Posts: 26
I've discovered the problem. I created another test user and made it an admin, and was able to post. So I thought, well what is different about this account and my account. First I though maybe it had to do with user number 1. Then I realized the error was saying can't find user jon, which is my display name, but not my login name. Changed my display name to my login name and guess what..... it worked! So it looks like there is an error somewhere where it authenticating or something with the display name to the login name table.
cascadeclimbers is offline   Reply With Quote
Old June 25th, 2005, 10:30 PM   #9 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
Yes its a complicated issue there. It would only affect UBBThreads or fusion users since of the loginname username issue and only affects admins

I think the easiest fix here would be line 377 of uploadphoto.php

if ( isset($upuser) && !empty($upuser) ) {

change to this

if ( isset($upuser) && !empty($upuser) && $upuser != $User['username'] ) {
__________________
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 June 25th, 2005, 10:58 PM   #10 (permalink)
Junior Member
Verified Customer
 
Join Date: Sep 2004
Posts: 26
Still get the error with that.
cascadeclimbers is offline   Reply With Quote
Old June 25th, 2005, 11:12 PM   #11 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
Try this

In uploadphoto.php lines 376-377 should be this

Code:
Content visible to verified customers only.
try changing it to this as it works on my install

[/code]

Code:
Content visible to verified customers only.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.

Last edited by Chuck S; June 26th, 2005 at 08:16 AM.
Chuck S is offline   Reply With Quote
Old June 26th, 2005, 04:53 PM   #12 (permalink)
Junior Member
Verified Customer
 
Join Date: Sep 2004
Posts: 26
That works!

Cheers, Jon
cascadeclimbers 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 Problems BobHarbison Photopost Pro Installation & Upgrades 2 March 25th, 2005 09:10 AM
Install problems trancetopia Installs and Upgrade - vBulletin 3.0.X 5 March 21st, 2005 11:42 AM
problems + problems after install help please. drache Photopost Pro Installation & Upgrades 9 September 1st, 2004 10:15 AM
Runtime Error JayMorr Classifieds Bug Reports 6 July 2nd, 2004 05:32 PM


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

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