Re: php upload permissions/settings
I found these in /etc/php5/cli/php.ini
; Whether to allow HTTP file uploads.
file_uploads = On
; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
upload_tmp_dir = "/tmp"
; Maximum allowed size for uploaded files.
upload_max_filesize = 2M
So changing the upload limit seems a snip, but I'm sure it was something other than file_uploads = On that I had to set before
|