I have configured php configuration for each domain account like below in the file
/etc/sentora/configs/apache/phpconfig/domain_user.conf
That file i have made like below. For only the particular domain.
<Directory "/var/sentora/hostdata/domain_user/">
php_value upload_max_filesize 512M
php_value post_max_size 512M
php_value max_execution_time 100
php_value max_input_time 100
php_value memory_limit 512M
php_value file_uploads Off
</Directory>
Also I have configured below in the file "/etc/sentora/configs/apache/httpd.conf" correctly.
IncludeOptional /etc/sentora/configs/apache/phpconfig/*.conf
So it is working for me if i have changed my domain php version to 5.6, But its not working when I am checking after changed the php version to 7.0
It seems like when my server core php version is 5.6 its working on the version 5.6.
php_value {key} {value}
was working when I used in mod_php but not in fastcgi
My phpinfo like below when its 7.0
And when my domain is in php 5.6 my phpinfo look like below.
Can anyone help me to out from this?
Thanks in advance.