https://www.icyphoenix.com/viewtopic.php?f=26&t=1411
-----------------------------------
Derky
Fri 23 Mar, 2007 15:24

FAP SUPPORT - Invalid Combination Of Category Id And Authentication Data
-----------------------------------
When you look (as a normal user, so not an admin) to a personal album that has not yet been created you will see an error with: [quote][color=#ff0000]Invalid combination of category id and authentication data[/color][/quote]

I have fixed it this way:

OPEN[code]/album_mod/album_personal.php[/code]

FIND[code]if ( album_check_permission($auth_data, ALBUM_AUTH_UPLOAD) == true )
			{
				$template->assign_block_vars('index_pics_block.no_pics.manage_personal_gal_folders', array());
			}[/code]

REPLACE WITH[code]if ( album_check_permission($auth_data, ALBUM_AUTH_UPLOAD) == true )
			{
				$template->assign_block_vars('index_pics_block.no_pics.manage_personal_gal_folders', array());
			}
			else
			{
				message_die(GENERAL_MESSAGE, sprintf($lang['Personal_gallery_not_created'], $username));
			}[/code]

I don't know if it's good, but it works.  :P


-----------------------------------
Artie
Fri 23 Mar, 2007 17:03

Re: Invalid Combination Of Category Id And Authentication Da
-----------------------------------
I do not experience this problem and I'm not sure of your solution,
but Hey...if it works  :wink:


-----------------------------------
Derky
Fri 23 Mar, 2007 17:08

Re: Invalid Combination Of Category Id And Authentication Da
-----------------------------------
[quote user="Artie" post="10645"]I do not experience this problem and I'm not sure of your solution,
but Hey...if it works  :wink:[/quote]

http://www.google.nl/search?hl=nl&client=opera&rls=nl&q=Invalid+combination+of+category+id+and+authentication+data+powered+by+phpbb&btnG=Zoeken&meta=  :P


-----------------------------------
Mighty Gorgon
Tue 27 Mar, 2007 01:15

Re: Invalid Combination Of Category Id And Authentication Da
-----------------------------------
This should have been solved in 1.4.2... I think you cannot replicate it here... right? :wink:


