The Error
**Warning** :file_exists(): open_basedir restriction in effect. File(/* <body>
// ========================================================================== */
body {
background-color: {{dc:theme:x_design_bg_color}};
}
/* Container Sizing
// ========================================================================== */
.x-container.width { width: {{dc:theme:x_layout_site_width unit="%"}}; }
...
The Function its calling ThemeOptions.php line 502 below
private function stackCSSProcess($fileOrCSS) {
if (file_exists($fileOrCSS)) { //502
return file_get_contents($fileOrCSS);
}
return $fileOrCSS;
}
it does the same again for another file
open_basedir restriction in effect. File(/* Custom Fonts ā¦
The rest of the website below is still functioning.
open_basedir = {WEBSPACEROOT}{/}{:}{TMP}{/}
Iām on the starter stack. if I change stack the site gives a 404.
If I turn off debug mode the site shows 404
if I set open_basedir to none. 404
Any help would be greatly appreciated.
Thanks