Ok, Seem the php5-starter script was not complete (since some days... update?)
Before it was:
Code:
#!/bin/sh
umask 022
#PHPRC="{PHP_STARTER_DIR}/{DMN_NAME}/php5/"
export PHPRC
TMPDIR="{WWW_DIR}/{DMN_NAME}/phptmp"
export TMPDIR
#PHP_FCGI_CHILDREN=2
export PHP_FCGI_CHILDREN
exec {PHP5_FASTCGI_BIN}
and afterwards:
Code:
#!/bin/sh
umask 022
PHPRC="{PHP_STARTER_DIR}/{DMN_NAME}/php5/"
export PHPRC
TMPDIR="{WWW_DIR}/{DMN_NAME}/phptmp"
export TMPDIR
PHP_FCGI_CHILDREN=0
First: we see that in all old domains the PHPRC was commented out -> this means that the domain has no own php.ini - the general is taken.
Second is the other problem - the new domain did not execute the php binary at all - the starter script was cut...
So - I corrected...
Have a look at /etc/ispcp/fcgi/parts/php5-fcgi-starter.tpl
/Joxi
Addon:
you may now correct all the php5-starter-scripts in /var/www/fcgi/domsin/... so they make use of their own php.ini.
Just remove the comment signs before the PHPRC line.... I'd also remove the # before the children line... maybe put a higher number there...
/J