Reputation: 59
Getting the following error: Error There was an error uploading this file to the server. Maximum PHP file upload size is too small: This is set in php.ini in both upload_max_filesize and post_max_size settings of your PHP settings (located in php.ini and/or .htaccess file).
Unable to find install package
I have open the ini file but didnt find any size options in this file
Upvotes: 0
Views: 1361
Reputation: 31
Locate the php.ini of the apache server or watever you are using.
add the following lines in it.
; Maximum allowed size for uploaded files.
upload_max_filesize = 40M
; Must be greater than or equal to upload_max_filesize
post_max_size = 40M
You can view it in phpinfo or in global configuration of joomla PHP settings.
Upvotes: 1