So I installed this, created a user, generated api. Everything seemed fine and working ok at first.
Once I setup the client, set the api key there etc it now fails when I go to home:
I tried php54 as well.
include(DOMDocument.php): failed to open stream: No such file or directory
/var/www/html/bcon/yii/framework/yiilite.php(238)
226 {227 include($classFile);228 if(YII_DEBUG && basename(realpath($classFile))!==$className.'.php')229 throw new CException(Yii::t('yii','Class name "{class}" does not match class file "{file}".', array(230 '{class}'=>$className,231 '{file}'=>$classFile,232 )));233 break;234 }235 }236 }237 else238 include($className.'.php');239 }240 else // class name with namespace in PHP 5.3241 {242 $namespace=str_replace('\\','.',ltrim($className,'\\'));243 if(($path=self::getPathOfAlias($namespace))!==false)244 include($path.'.php');245 else246 return false;247 }248 return class_exists($className,false) || interface_exists($className,false);249 }250 return true;