For those of you interested in modifying the apache plugin here you go:
Code:
vi /usr/local/ispconfig/server/plugins-enabled/apache2_plugin.inc.php
Around line 198 added groupname variable like so:
Code:
function update($event_name,$data) {
global $app, $conf;
$groupname = "apache";
Around line 403 commented out groupname and added my own like so:
Code:
//$groupname = escapeshellcmd($data["new"]["system_group"]);
$groupname = "apache";
Around line 430 added a chmod to make group writeable:
Code:
exec("chown -R $username:$groupname ".escapeshellcmd($data["new"]["document_root"]));
exec("chmod -R ug+w ".escapeshellcmd($data["new"]["document_root"]));
Recent comments
1 day 5 hours ago
1 day 10 hours ago
1 day 14 hours ago
1 day 16 hours ago
2 days 6 hours ago
2 days 6 hours ago
2 days 11 hours ago
2 days 18 hours ago
2 days 19 hours ago
2 days 20 hours ago