← Back to team overview

mahara-contributors team mailing list archive

[Bug 634829] Re: maxuploadsize should consider that post_max_size is the whole POST content

 

** Changed in: mahara
       Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/634829

Title:
  maxuploadsize should consider that post_max_size is the whole POST
  content

Status in Mahara ePortfolio:
  Fix Released

Bug description:
  In addition to respecting quota (), maxupload variable (which used to
  be in filebrowser pieform, now it is in get_max_upload_size function,
  see 7b2772a03 on master) considers minimum value of either
  'post_max_size' or 'upload_max_filesize':

  $maxuploadsize = min(get_real_size(ini_get('post_max_size')),
  get_real_size(ini_get('upload_max_filesize')));

  It should be taken into account that post_max_size PHP setting
  evaluates the whole POST content (which includes file name and other
  from values, not only the file itself), thus assuming that file should
  be equal to this value while determining maxupload size is incorrect.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/634829/+subscriptions


References