rediculous limits
upload_max_filesize
Collapse
X
-
Kevin, do you use PHP -Selector? And what control panel?
Where do you see upload_max_filesize different from your server default (512M) ? If its on regular phpinfo() page then definitely this is done with php.ini or with .htaccess file (just look for any directory above virtualhost documentroot). If you just see someone can upload larger 512M file - this could be changed right before upload progress in same .php file, using for example this code:
In this case I would recommend checking for that directive recursively in domain root, this way:Code:ini_set("upload_max_filesize","300M" ) ;
Code:cd /path_to_domain/ grep upload_max_filesize . -Rs
Comment
Comment