Page 1 of 1

Problem with File Upload Size

Posted: 07 Dec 2009, 15:15
by mikekroupa
I am having trouble setting the file upload size for registered users. For some reason, the system keeps giving me a limit of 50B. This happens even though I set the file upload size parameters in phoca download to larger values.

I have this information in the user upload section of the parameters.
Enable User Upload: Yes
Maximum size of all user files: 20971520
User File Upload size: 3145728

Even with this there is a message on the user upload screen that says:
Upload File [Max Size: 50 B]

Can anyone help me solve this problem?

Re: Problem with File Upload Size

Posted: 07 Dec 2009, 19:32
by Jan
Hi, did you changed the parameters in parameters component in menu link to ucp?

See:
https://www.phoca.cz/documents/16-joomla ... -in-joomla

Jan

Re: Problem with File Upload Size

Posted: 08 Dec 2009, 00:54
by mikekroupa
Thanks. I went to the menu manager in Joomla and edited the menu item for the file upload link. Under Parameters (Component) I changed a value in User Upload Settings. The value for "Enable User Upload" was set to "yes." I changed this to "Use Global" and the problem went away. I can now specify file size limits using the Phoca Download parameters settings.

Re: Problem with File Upload Size

Posted: 08 Dec 2009, 02:20
by downunder
Need to check your PHP Information under HELP>System Info.

upload_max_filesize should be set to the max upload size (e.g. 8M). If not you will have to update your PHP.ini file or set an override in your .htaccess file (linux/unix only).

Directive in .htaccess would be...

php_value upload_max_filesize 8M

Hope this helps