Yeah ... I had a new column (domain_egw) in table domain ...
And I have ever the trouble with the yes or no instead of Adr_IP
Basicly ... we have :
- my ($dmn_php, $dmn_cgi) = (@$dmn_data[19], @$dmn_data[20]);
- my $dmn_ip = @$dmn_data[21];
To fix the problem : ( File ispcp-dmn-mngr )
- my ($dmn_php, $dmn_cgi) = (@$dmn_data[19], @$dmn_data[20]);
[ The same ]
- my $dmn_egw = @$dmn_data[21];
[ id_column = 21 ]
- my $dmn_ip = @$dmn_data[22];
[ id column +1 : 21 -> 22]
Adding a new user works perfectly ... with no error in site-available/ispcp.conf (adresse IP is well noticed
)
Ryu