yfaktor wrote: |
PLease let us know if we understood your question right |
Hi - the IP is identical for all approx. 30 users - every user has different domain.
The VPS has one php.ini for all which can be overruled in the confixx-admin-tool under "http-special" where per each domain/each user one can overrule the global php.ini-statements using the statement
"php_admin_flag".
Example:
ErrorLog /var/www/
web41/log/error_log.log
php_admin_flag safe_mode off
<Directory "/var/www/
web41/html/">
AllowOverride All
</Directory>
"web41" is the user, but one can put in *per domain* the same overruling statements.
Alternatives to the above:
"Configuration settings from php.ini may be overridden by
php_flag settings in the server configuration file or local
.htaccess files. " from
http://www.php.net/manual/en/ref.apache.php
So to overrule the global php.ini on VPS I would prefer the .htaccess-file. Is that possible?
Best regards