increase upload filesize

If I try to upload files greater then 1.5M I always get an error message:

"This file is bigger than the server is configured to allow."

I changed values in LocalSettings without success.
I trtied to change settings in php.ini, but it seems that I do not have sufficient permisssions to do this.

Any comments on that ?

Hi, The admin user on the

Hi,
The admin user on the JumpBox does not have permission to do some things by default, but it can do things AS the privileged user (root) by using the sudo command. So, if you want to edit a file only editable by root you would put sudo at the beginning of the command and it would be done as root:

sudo nano /etc/php5/apache2/php.ini

will run the command nano (an editor) as root. You will be asked for a password every now and then while using sudo, it is asking for the admin users password.

Another tip, if you want to do many things as root, you can run

sudo -s

this will give you a shell as the root user and everything you do will be as root until you exit that shell using CTRL+D.

This should be enough to help you edit that file ... but once you do edit it you will need to restart apache:

sudo /etc/init.d/apache2 restart

Good luck,

Austin

Fileupload is not possible

Fileupload is not possible for Files > 1.5 MB

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.