pb66
(Paul)
6
I think the way the conf file is being read is as string lines rather than variable = value pairs. A quick php only fix might be to remove the quotes in the conf eg dbuser = emoncms so the quotes are not included as part of the string, but that won’t work in bash so I think you will need to remove the quotes whilst parsing the strings eg
$conf[$line_a[0]]=trim($line_a[1],‘"’);