TConfigurationException

Description

Application base path 'false' does not exist or is not a directory.

Source File

/var/www/framework/TApplication.php (353)

0342:      * to determine the application configuration file,
0343:      * application root path and the runtime path.
0344:      * @param string the application root path or the application configuration file
0345:      * @see setBasePath
0346:      * @see setRuntimePath
0347:      * @see setConfigurationFile
0348:      */
0349:     protected function resolvePaths($basePath)
0350:     {
0351:         // determine configuration path and file
0352:         if(empty($basePath) || ($basePath=realpath($basePath))===false)
0353: throw new TConfigurationException('application_basepath_invalid',$basePath);
0354: if(is_dir($basePath) && is_file($basePath.DIRECTORY_SEPARATOR.$this->getConfigurationFileName())) 0355: $configFile=$basePath.DIRECTORY_SEPARATOR.$this->getConfigurationFileName(); 0356: else if(is_file($basePath)) 0357: { 0358: $configFile=$basePath; 0359: $basePath=dirname($configFile); 0360: } 0361: else 0362: $configFile=null; 0363: 0364: // determine runtime path 0365: $runtimePath=$basePath.DIRECTORY_SEPARATOR.self::RUNTIME_PATH;

Stack Trace

#0 /var/www/framework/TApplication.php(326): TApplication->resolvePaths('/opt/cvd/app/pr...')
#1 /var/www/cvd/app/pc.sandrigo/index.php(22): TApplication->__construct('/opt/cvd/app/pr...')
#2 {main}
2024-03-29 06:30 Apache/2.4.7 (Ubuntu) PRADO/3.2.4