https://www.icyphoenix.com/viewtopic.php?f=26&t=2480&p=17863#p17863
-----------------------------------
Artie
Sat 21 Jul, 2007 01:14

Re: Multiple Problems
-----------------------------------
[quote user="nims" post="17765"]Hi,

I am facing few problems with my FAP 1.4.1

1. 
I have set : Maximum number of files user can upload at a time : 3
Maximum number of fields to pre-generate : 3

But still there is only 1 upload box.
Is it necessary to enable Nuffload configuration, perl uploader and Nuffload multiple uploads for this ?[/quote]
No you don't need Nuffload for this. 
Have you set [b]Pre generate the upload fields[/b] to [b]Yes[/b] 
If not do you have a button on the upload page to add a new file ?

[quote user="nims" post="17765"]2. 
I have set : Maximum file size : 128000
Enabling this option, each image will be resized on the fly if needed (to keep image properties respecting the album settings in ACP). : Yes

But still if I upload image of say 250KB and view the full size image in the album its 250KB only. Should it not be 128000 ( the max file size) ?[/quote]
Some of the image settings' purpose are a bit confusing to me, but Yes, I think it should.
[quote user="nims" post="17765"]3.
I have set : Users can create sub categories in own personal gallery : Yes

But the "Create New Folder" Button only appears if they have uploaded atleast one picture in their personal gallery. What if the users want to just upload the pictures in sub-categories and not in their main category.[/quote]

I don't quite understand why this is like this, myself. You can add a new folder/category by the [b]Manage[/b] link near the bottom of the page or you can apply the code change  below. I don't think it should cause any problems.
OPEN [b]album_mod/album_personal.php[/b]

FIND
[codeblock]if( (album_check_permission($auth_data, ALBUM_AUTH_MANAGE_PERSONAL_CATEGORIES) == true) && ((($is_root_cat) && ($row['count'] > 0)) || (!$is_root_cat)))[/codeblock]
REPLACE WITH
[codeblock]	if( (album_check_permission($auth_data, ALBUM_AUTH_MANAGE_PERSONAL_CATEGORIES) == true) && ((($is_root_cat) && ($row['count'] >= 0)) || (!$is_root_cat)))[/codeblock]


