Alias 'BaseApp' refers to an invalid path '/home/oub8175/public_html'. Only existing directories can be aliased.
/home/g175oubg/public_html/framework/PradoBase.php (394)
0383: {
0384: if(isset(self::$_aliases[$alias]))
0385: throw new TInvalidOperationException('prado_alias_redefined',$alias);
0386: else if(($rp=realpath($path))!==false && is_dir($rp))
0387: {
0388: if(strpos($alias,'.')===false)
0389: self::$_aliases[$alias]=$rp;
0390: else
0391: throw new TInvalidDataValueException('prado_aliasname_invalid',$alias);
0392: }
0393: else
0394: throw new TInvalidDataValueException('prado_alias_invalid',$alias,$path);
0395: }
0396:
0397: /**
0398: * Fatal error handler.
0399: * This method displays an error message together with the current call stack.
0400: * The application will exit after calling this method.
0401: * @param string error message
0402: */
0403: public static function fatalError($msg)
0404: {
0405: echo '<h1>Fatal Error</h1>';
0406: echo '<p>'.$msg.'</p>';
#0 /home/g175oubg/public_html/framework/TApplication.php(953): PradoBase::setPathOfAlias('BaseApp', '/home/oub8175/p...')
#1 /home/g175oubg/public_html/framework/TApplication.php(1047): TApplication->applyConfiguration(Object(TApplicationConfiguration), false)
#2 /home/g175oubg/public_html/framework/TApplication.php(394): TApplication->initApplication()
#3 /home/g175oubg/public_html/index.php(29): TApplication->run()
#4 {main}