6

Max_file_uploads via PHP Settings Page


Avatar
ALR Network

Seems that there's not currently a way to set the "max_file_uploads" value (currently 20) via the DirectAdmin interface.

After discussing with support, they recommended the following:

```
cd /usr/local/directadmin/data/templates
cp php_settings.json custom
```
then append this to the end of custom/php_settings.json:
```
"max_file_uploads" : {
"default" : 20,
"type" : "int",
"range" : [ 1, 100 ]
}
```
and then you can control this setting via the same PHP settings page.

However, I feel this should be integrated directly into the PHP Settings page.

A

Activity Newest / Oldest

Avatar

Gedas

Status changed to: Under review