Strange Problem With ispcp.conf - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Support Area (/forum-30.html) +--- Forum: Usage (/forum-34.html) +--- Thread: Strange Problem With ispcp.conf (/thread-7322.html) Pages: 1 2 |
RE: Strange Problem With ispcp.conf - grg - 07-29-2009 11:32 PM 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; Then: Code: rm /etc/apache2/sites-enabled/ispcp.conf And: Code: cat /etc/ispcp/apache/parts/ispcp_base.tpl > /etc/apache2/sites-enabled/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. RE: Strange Problem With ispcp.conf - joximu - 07-30-2009 07:07 AM hm, so the point is: the engine does not write the ispcp.conf in the apache config. Hey - did you notice there is a ispcp.conf in "/etc/apache2/sites-available" - this one should be changed. And - the clou - the other one is a symlink to this... :-) /J RE: Strange Problem With ispcp.conf - grg - 07-30-2009 05:24 PM Mmm ok, but the real file is the one in working directory or sites-available? Because i've checked all other working directories (other daemons) but they're all copies of real files loaded by the daemons. Any symlink. That's the strangest problem i've ever had O_O. RE: Strange Problem With ispcp.conf - joximu - 07-30-2009 10:55 PM ispcp always takes the working copy for next changes - but when saving it always writes the same file to sites-available. So - if you do manual changes, do it on both or at least working copy (and with the next change in this part - its in the system). IMHO only apache uses this symlink thing "available"->"enabled" (I think it's because of the apache way on debian, suse did it otherwise).... /J RE: Strange Problem With ispcp.conf - grg - 07-30-2009 11:34 PM Ok, so the simlynk isn't between /etc/ispcp/apache/working/ispcp.conf and /etc/apache2/sites-enabled/ispcp.conf but between /etc/apache2/sites-available/ispcp.conf and /etc/apache2/sites-enabled/ispcp.conf. And ispcp when modifying something copy the file /etc/ispcp/apache/working/ispcp.conf into /etc/apache2/sites-enabled/ispcp.conf. So just need to run a2ensite ispcp.conf. RE: Strange Problem With ispcp.conf - joximu - 07-30-2009 11:42 PM yep :-) |