Skip to content
Snippets Groups Projects
Commit 8e12d4d9 authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#1131 - error in php-cgi-starter

Fixed: FS#1118 - [client_id] is not resolved in .php-fcgi-starter
parent 658b0f19
No related branches found
No related tags found
No related merge requests found
......@@ -442,6 +442,7 @@ class page_action extends tform_actions {
$app->db->query($sql);
}
if($web_rec['php_open_basedir'] == '') {
$document_root = $app->db->quote(str_replace("[client_id]",$client_id,$document_root));
$php_open_basedir = str_replace("[website_path]",$document_root,$web_config["php_open_basedir"]);
$php_open_basedir = $app->db->quote(str_replace("[website_domain]",$web_rec['domain'],$php_open_basedir));
$sql = "UPDATE web_domain SET php_open_basedir = '$php_open_basedir' WHERE domain_id = ".$this->id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment