Icy Phoenix
Archived phpBB Topics (Styles, Mods, Support) - FAP SUPPORT - Personal Galleries Not Showing Up
menace690 [ Thu 11 Jan, 2007 17:46 ]
Post subject: FAP SUPPORT - Personal Galleries Not Showing Up
When I try to view my Personal Gallery, it shows the correct number of pictures but does not show the actual pictures. Recent gallery pictures work though.
www.mystationhouse.org
Artie [ Thu 11 Jan, 2007 20:58 ]
Post subject: Re: Personal Galleries Not Showing Up
Could you temporarily set your personal galleries for all to view ..... so we could see what is happening.
menace690 [ Wed 17 Jan, 2007 18:32 ]
Post subject: Re: Personal Galleries Not Showing Up
Could you temporarily set your personal galleries for all to view ..... so we could see what is happening.
Done, sorry I missed your reply for so long.
Artie [ Thu 18 Jan, 2007 00:49 ]
Post subject: Re: Personal Galleries Not Showing Up
Very strange
Try uploading
album_mod/album_personal.php again.
menace690 [ Mon 22 Jan, 2007 22:05 ]
Post subject: Re: Personal Galleries Not Showing Up
Unfortunately, nothing has changed. I uploaded the entire FAP install again. I am guessing something is screwed up elsewhere, but I really don't know where else to look.... I may just start over.
Artie [ Mon 22 Jan, 2007 22:18 ]
Post subject: Re: Personal Galleries Not Showing Up
Is this an upgrade from Smartor's ?
menace690 [ Mon 22 Jan, 2007 22:39 ]
Post subject: Re: Personal Galleries Not Showing Up
It's not an upgrade. It was a straight install.
I noticed something else that is super wierd..
The use rdolinsky has one picture show up in his Personal Galery, everyone else has none. How could this possibly happen?
Mighty Gorgon [ Tue 23 Jan, 2007 02:37 ]
Post subject: Re: Personal Galleries Not Showing Up
I'm quite sure that this is a permission issue...
Can you try to check the permissions of the already created personal galleries?
menace690 [ Wed 24 Jan, 2007 06:50 ]
Post subject: Re: Personal Galleries Not Showing Up
I'm quite sure that this is a permission issue...
Can you try to check the permissions of the already created personal galleries?
Hmm. how would I go about doing this?
Artie [ Wed 24 Jan, 2007 23:13 ]
Post subject: Re: Personal Galleries Not Showing Up
Vist the gallery.
Click on You can manage the categories in the gallery
Then click Edit for the category
menace690 [ Tue 30 Jan, 2007 00:42 ]
Post subject: Re: Personal Galleries Not Showing Up
Vist the gallery.
Click on You can manage the categories in the gallery
Then click Edit for the category
I think we are onto something. The pictures all show up in the list, but all say that they are not approved. How do I get pictures approved?
Artie [ Tue 30 Jan, 2007 01:38 ]
Post subject: Re: Personal Galleries Not Showing Up
You know I think there should be an Approve and Unapprove button in the Moderator Panel.... but it ain't there, is it.
This needs some investigating.

Artie [ Tue 30 Jan, 2007 02:04 ]
Post subject: Re: Personal Galleries Not Showing Up
Looks like you have stumbled across a bug here
OPEN
album_modcp.php
FIND
'APPROVAL_BUTTON' => ( $is_auth_approve == true ) ? '' : '<input type="submit" class="liteoption" name="approval" value="' . $lang['Approve'] . '" />',
REPLACE WITH
'APPROVAL_BUTTON' => ( !$is_auth_approve == true ) ? '' : '<input type="submit" class="liteoption" name="approval" value="' . $lang['Approve'] . '" />',
FIND
'UNAPPROVAL_BUTTON' => ( $is_auth_approve == true ) ? '' : '<input type="submit" class="liteoption" name="unapproval" value="' . $lang['Unapprove'] . '" />',
REPLACE WITH
'UNAPPROVAL_BUTTON' => ( !$is_auth_approve == true ) ? '' : '<input type="submit" class="liteoption" name="unapproval" value="' . $lang['Unapprove'] . '" />',
Still need attention to the Recent Pics block ..... they should not show if not approved.
menace690 [ Tue 30 Jan, 2007 06:33 ]
Post subject: Re: Personal Galleries Not Showing Up
This definitely solved the problem I was having. Thanks for all your patience. Now to integrate with MPS. (MyProfileSpace).
Mighty Gorgon [ Mon 05 Feb, 2007 00:36 ]
Post subject: Re: BUG - Personal Galleries Not Showing Up
Thanks
Artie, I have messed up the switch by inverting the IF statement...
