D'oh! No body. How abstract of me.
So, continuing where I left off... New install. Generally working. But the default theme is bombing, no style is showing up and a couple of links are hosed.
I've narrowed it down to the `zen/functions.php` and the following code:
`if (strstr(basename(dirname($_SERVER['SCRIPT_NAME'])), "zen")) {
define('WEBPATH', dirname(dirname($_SERVER['SCRIPT_NAME'])));
} else {
define('WEBPATH', dirname($_SERVER['SCRIPT_NAME']));
}`
WTF does this do? Basically, it is returning a WEBPATH of `/` and this results in <link ... /> href attribute of `//themes/default/zen.css`. No good. So, what if anything should I be looking at to fix this branch? Or is something on my end broken? If I break down the boolean part I get the correct value, `/zenphoto`, but when the branch executes in context, I get `/`. That dog won't run. So... is this my problem, and if so how do I fix it, or something that sneaked in the release that should be corrected?
Comments
`define('WEBPATH', '/zenphoto');`
Sorry about that. :-/