php.ini for website.

Hi, it is necessary to set php.ini options by website, try to assign it in the vhost or rewrite rules no works,

Example:

vhost.conf:

phpIniOverride {
php_value display_errors “Off”
php_value upload_max_filesize “200M”
php_value post_max_size “250M”
php_value max_input_vars 5000
}

htaccess:

< IfModule litespeed>
php_value max_input_vars 5000
</ IfModule>

Yes you can use phpinioverride feature, but you are using it inside .filemanager context, there will be one more phpinioverride outside filemanager context

phpIniOverride {
}

Put your customizations there.