Sorry i had a doubt:
must i put the clean template on /etc/ispcp/apache/working ?
Because as the command pasted above says, i'm working on /etc/apache2/sites-enabled/ispcp.conf
Ok, some news:
stop the daemon, launch this query:
Code:
USE sys;
UPDATE `domain` SET `domain_status` = 'change' WHERE `domain_status` = 'ok';
UPDATE `subdomain` SET `subdomain_status` = 'change' WHERE `subdomain_status` = 'ok';
Then:
Code:
rm /etc/apache2/sites-enabled/ispcp.conf
rm /etc/ispcp/apache/working/ispcp.conf
And:
Code:
cat /etc/ispcp/apache/parts/ispcp_base.tpl > /etc/apache2/sites-enabled/ispcp.conf
cat /etc/ispcp/apache/parts/ispcp_base.tpl > /etc/ispcp/apache/working/ispcp.conf
(using cat and not cp to prevent any type of chmod issues)
Then:
Code:
/var/www/ispcp/engine/ispcp-rqst-mngr
Ok after this process i get a /etc/ispcp/apache/working/ispcp.conf fully populated. The file /etc/apache2/sites-enabled/ispcp.conf is not modified.
The situation is the same if i add a subdomain. The ispcp.conf in working directory is populated, the one in sites-enabled not.
I can fix with:
rm /etc/apache2/sites-enabled/ispcp.conf
cat /etc/ispcp/apache/working/ispcp.conf > /etc/apache2/sites-enabled/ispcp.conf
But it would be interesting to discover why ispcp has stopped using this file.
I'll also try to regenerate ALL config files to see if the problem of the double lines persist.