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

Photopost Pro Bug Reports Post post installation PhotoPost Pro problems here.

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old September 10th, 2008, 06:32 PM   #1 (permalink)
Member
Verified Customer
 
Join Date: Mar 2006
Posts: 104
Exclamation Passwort Protected Categories Bugs

Some of these things have been mentioned before in other Threads. I try to collect them here, and I hope that sometime soon there will be a solution. Until then this may be a warning for all admins not to offer passwort protected categories etc., as there are massive leaks.

First: As I understand it, images stored in a password protected category should not be visible anywhere else, under no circumstances, in any form or size. Not even as a thumbnail. The same goes for comments on those images.

What I did:
- added a password protected category.
- uploaded an image

What I found out:

- image will not be visible in the member's gallery. This is as it should be.
- image will not be visible in latest photos or random photos boxes within photopost. This is as it should be.
- but: as soon as the image is commented on, this comment shows up under "latest comments" on my gallery home and a thumbnail of the image is shown - even for guests. Why should comments in a password protected area be open for the public, and why should one want to show thumbnails of password protected images to all the world? The comments do not show up on comshow.php.
- If using inc_features, a thumbnail of the image is shown in the featured photos box on my forumhome - even for guests!
- if using the PhotoPost Recent Images on Profile Page Mod, a thumbnail of the image is shown in the featured photos box on the profile page of the uploader - even for guests! I know this is a mod, but it's provided by Chuck, so I think it has to rank at least as semi-official.

Furthermore annoying:

If a user uploads an image into a password protected area, Photopost sets this image as index-thumbnail for the member's gallery in showmembers.php. Rightly so, Photopost does not show this thumbnail to other users and guests - after all, it is in a password protected area and the thumb should not be shown (although elsewhere it is). Instead of showing a replacement picture, such as a lock, or not changing the thumb at all if the last uploaded image goes to a password protected area, Photopost shows nothing at all. There is no way for other visitors to reach the member's gallery from showmembers.php. My members have started to upload double images just to get a index thumb for their member's gallery, since there does not seem to be another possibility to set it.
This has been mentioned at least a year ago and not fixed in versions since, although this behaviour is clearly not intuitive (but rather stupid).

As is, the password protected categories - for me - are plain useless.
__________________
http://www.roma-antiqua.de

Last edited by cellarius; September 10th, 2008 at 06:44 PM.
cellarius is offline   Reply With Quote
Old September 12th, 2008, 04:52 AM   #2 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
Well I can not comment on the external hack your talking about here as yes its a mod. The vb photo block though is going to show photos to whomever you choose to set viewing permissions. Not including password protected cats is easy in bold in the queries in inc_features.php add this

Code:
Content visible to verified customers only.
I will let Michael comment on the showmembers photo thing.

Now recent comments is easy in index.php around line 199 add this in bold.

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; September 15th, 2008 at 05:39 AM.
Chuck S is offline   Reply With Quote
Old September 15th, 2008, 03:28 AM   #3 (permalink)
Member
Verified Customer
 
Join Date: Mar 2006
Posts: 104
Thanks for your answer, Chuck.

Quote:
Originally Posted by Chuck S View Post
Well I can not comment on the external hack your talking about here as yes its a mod.
As stated: I know it's a mod, but since you are the one that provided the mod, who then should be able to comment on the issue?

Quote:
The vb photo block though is going to show photos to whomever you choose to set viewing permissions.
My opinion: This has nothing to do with viewing permissions. Viewing permissions is for global rules. Password protected images are for people who know the password - and nobody else (admins or mods excepted). I can fully understand my users who complained that their password protected images showed up on my main page.

Quote:
Not including password protected cats is easy in bold in the queries in inc_features.php add this

Code:
Content visible to verified customers only.
Thanks for the code, I'll try it later. But I want to say that I strongly feel that this should be standard. A file hack should not be needed for this.

Quote:
I will let Michael comment on the showmembers photo thing.
I'm waiting for that.

Quote:
Now recent comments is easy in index.php around line 199 add this in bold.

Code:
Content visible to verified customers only.
Again: This should be standard and not require a file hack.

Will the two hacks suggested in this thread become standard in future (the next?) releases?
__________________
http://www.roma-antiqua.de
cellarius is offline   Reply With Quote
Old September 15th, 2008, 04:02 AM   #4 (permalink)
Member
Verified Customer
 
Join Date: Mar 2006
Posts: 104
Quote:
Originally Posted by Chuck S View Post
The vb photo block though is going to show photos to whomever you choose to set viewing permissions. Not including password protected cats is easy in bold in the queries in inc_features.php add this

Code:
Content visible to verified customers only.
Works - thank you.

Quote:
Now recent comments is easy in index.php around line 199 add this in bold.

Code:
Content visible to verified customers only.
Not so easy, it seems, once one does test it. Adding your code leads to the following error:
Code:
Content visible to verified customers only.
This is clearly caused by a missing c.password in the select-statement of the mysql-request, which I tried adding. It now reads:
Code:
Content visible to verified customers only.
This in turn spawns the following error:
Code:
Content visible to verified customers only.
Clearly, the added field in the SELECT-Statement does disturb the list-operation there - but this is for you to sort.
__________________
http://www.roma-antiqua.de
cellarius is offline   Reply With Quote
Old September 15th, 2008, 05:39 AM   #5 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
anything thats a fix will get put into the build

As far as mods you would need to post in the mod forums on any hacks and the hack author would choose to respond or not even if its me it does not matter.

Recent comments make the query in index.php this and try

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; September 16th, 2008 at 12:11 PM.
Chuck S is offline   Reply With Quote
Old September 16th, 2008, 01:52 AM   #6 (permalink)
Member
Verified Customer
 
Join Date: Mar 2006
Posts: 104
Quote:
Originally Posted by Chuck S View Post
anything thats a fix will get put into the build
That's good to hear, really.


Quote:
Recent comments make the query in index.php this and try

Code:
Content visible to verified customers only.
Doesn't work, same error as above. I'm not too surprised, though. As far as I know, mysql allows only one FROM-statement, and there are two in your code. I would have expected some kind of JOIN there.

Any word from Micheal concerning the other open issue?
__________________
http://www.roma-antiqua.de
cellarius is offline   Reply With Quote
Old September 16th, 2008, 06:22 AM   #7 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
Actually just a typo its suppose to be left join Reload the query in my post
__________________
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 16th, 2008, 06:55 AM   #8 (permalink)
Member
Verified Customer
 
Join Date: Mar 2006
Posts: 104
Not working.

Though I really appreciate your effort - would it be possible for you to test the queries you suggest before making me try them? You surely have a testing board and better debugging possibilities than me.
That's the third one I'm putting in there that spawns the same error...

Quote:
Originally Posted by cellarius View Post
Any word from Micheal concerning the other open issue?
__________________
http://www.roma-antiqua.de
cellarius is offline   Reply With Quote
Old September 16th, 2008, 12:11 PM   #9 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
Code:
Content visible to verified customers only.
That should work fine so what does not work? I did change the query and have it running on my site.
__________________
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 16th, 2008, 01:49 PM   #10 (permalink)
Member
Verified Customer
 
Join Date: Mar 2006
Posts: 104
Now, whatever you changed or whatever I did do wrong the last time - indeed, this version works, and it does the trick. Thanks!

But once again I'll ask the question: Any news from Michael concerning the as if yet unadressed problem from the OP?
__________________
http://www.roma-antiqua.de
cellarius is offline   Reply With Quote
Old September 16th, 2008, 02:47 PM   #11 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
Well that all depends on how he wants to address things

I would suggest trying this in image-inc.php

Code:
Content visible to verified customers only.
change to this

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.
Chuck S is offline   Reply With Quote
Old September 17th, 2008, 05:41 AM   #12 (permalink)
Member
Verified Customer
 
Join Date: Mar 2006
Posts: 104
No, that did not change it - still the same behaviour.
__________________
http://www.roma-antiqua.de
cellarius is offline   Reply With Quote
Old September 17th, 2008, 05:42 AM   #13 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
Interesting I will do some testing but that should have worked fine. That essentially tells the program only to update the lastphoto for a user if the category does not have a password. Now just for clarification you uploaded to a password protected category with some other test user not previously affected and the last photo was changed?
__________________
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 17th, 2008, 06:48 AM   #14 (permalink)
Member
Verified Customer
 
Join Date: Mar 2006
Posts: 104
What I did:

1. Edited the file
2. Used my own account (which had for his user gallery a not password protected image thumb), uploaded an image into a password protected category -> my user gallery's thumb changed to the password protected image
3. opened another browser and surfed as guest to the user gallery index: as before, the new image thumb was invisible.
__________________
http://www.roma-antiqua.de
cellarius is offline   Reply With Quote
Old September 17th, 2008, 06:35 PM   #15 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
Members Galleries - ReefTalk Gallery

Interesting my account Chuck S I uploaded two photos into a private password protected album and my lastphoto did not change
__________________
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 17th, 2008, 06:36 PM   #16 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
This is the entire block I have in image-inc.php

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.
Chuck S is offline   Reply With Quote
Old September 22nd, 2008, 04:56 AM   #17 (permalink)
Member
Verified Customer
 
Join Date: Mar 2006
Posts: 104
Hi Chuck,

didn't get around to try this any sooner - but: if I change the whole chunk of code, it works. Retried it with the shorter version - it doesnt.

Anyway: with the code changes you last proposed the member gallery thumb does not get changed anymore when uploading into a password-protected category, so this is fine now.

Just one last question: I understand that code changes proposed here will be taken over into future releases. Is this true for this one, too? Just asking 'cause you mentioned above Michael might want to follow a different path on this one. If this is not sure to make it into the next release, I'd mark it in my upgrade notes as requiring attention.

Thanks!
__________________
http://www.roma-antiqua.de
cellarius is offline   Reply With Quote
Old September 22nd, 2008, 05:01 AM   #18 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
These are all proposed code changes. Michael will follow it or do it his own way thats up to him. I only report the issue and the proposed fix although 95% of what I propose is the fix used.
__________________
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 December 21st, 2008, 04:44 PM   #19 (permalink)
Member
Verified Customer
 
Join Date: Mar 2006
Posts: 104
Sorry to see that none of this made it into 6.2. Of course, release date was pretty close. But I still think these are quite serious flaws.

And: Obviously Michael never gave any statement about this problem:
Quote:
If a user uploads an image into a password protected area, Photopost sets this image as index-thumbnail for the member's gallery in showmembers.php. Rightly so, Photopost does not show this thumbnail to other users and guests - after all, it is in a password protected area and the thumb should not be shown (although elsewhere it is). Instead of showing a replacement picture, such as a lock, or not changing the thumb at all if the last uploaded image goes to a password protected area, Photopost shows nothing at all. There is no way for other visitors to reach the member's gallery from showmembers.php. My members have started to upload double images just to get a index thumb for their member's gallery, since there does not seem to be another possibility to set it.
This has been mentioned at least a year ago and not fixed in versions since, although this behaviour is clearly not intuitive (but rather stupid).
If you're not interested in this bug just plain tell me - then I'll know and stop bothering to bother you
__________________
http://www.roma-antiqua.de
cellarius is offline   Reply With Quote
Old December 21st, 2008, 09:04 PM   #20 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,070
Well from what I see two of your three issues involve external files.

Now Michael does not remember every bug I will pass along the password cat comment that should be fixed. The photo block we could alter but will leave that external file up for him to decide.
__________________
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
Password Protected Categories ConqSoft Bugs - vBulletin 3.5.X 4 January 31st, 2006 07:55 PM
[Trivial Suggestion] Password Protected Categories ConqSoft Bugs - vBulletin 3.5.X 1 July 22nd, 2005 07:00 PM
Suggestion for Moderated password protected categories HansMuenchen vBGallery Suggestions 0 June 25th, 2005 10:20 AM
Password protected categories imported_Blaminator vBGallery Suggestions 2 May 30th, 2005 01:53 AM


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

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