At EDIS it is possible to adapt the PHP configuration according to your demand.
Just place in the folder in /www/home
an own php.ini file with the requested configuration
--- start php.ini --- ---> do not paste this line
magic_quotes_gpc = off
memory_limit = 64M
--- end php.ini --- ---> do not paste this line
This php configuration is valid only in the current folder and must be explicitly set for each folder.
If you wish to have a change of configuration for your web server, please file in addition to the php.ini in the folders /www/home a .htaccess file with the content
--- start .htaccess --- ---> do not paste this line
suPHP_ConfigPath /home/ UserID /www/home
--- end .htaccess ---> do not paste this line
Example: suPHP_ConfigPath /home/ab001dm4/www/home
Alternatively, you can also set the environment variables directly into your code:
ini_set("sendmail_from","test@test.test");
ini_set("precision",19);
ini_set("memory_limit","99M");
ini_set("log_errors","On");
phpinfo();
?>
The PHP version of your web host and the sub domains or sub vHosts can be changed in the vHost zone under https://manage.edis.at if your booked web server supports PHP.
Please keep in mind, that it is not possible to change all options at runtime - some need to be centrally configured in the webservers main configuration.