I installed version 1.8.0 alpha with WAMP server on window (I put the project on the sub folder of server root: e:\wamp\www\sdata). For the first step of installation, look like the css, js, … and the other theme resource didn’t load properly. By trace the source code, I figured out this problem came from the uri function in helper/theme.php. It returned the wrong URL of resources.
public static function uri($uri, $local = false)
{
$rootUri = ($local) ? ‘’ : Slim::getInstance()->rootUri;
// Serve the appropriate theme file
if (is_dir(PROJECT_ROOT . '/web/theme/' . self::getInstance()->name . '/' . $uri)) {
return $rootUri . 'theme/' . self::getInstance()->name . '/' . $uri;
}
else if (file_exists(PROJECT_ROOT . '/web/theme/' . self::getInstance()->name . '/' . $uri)) {
return $rootUri . 'theme/' . self::getInstance()->name . '/' . $uri;
}
else {
return $rootUri . 'theme/default/' . $uri;
}
}
If I change the return to …/theme/ instead of theme/ so It works but this change may effect to other functions. Hope you can check it.