summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorxue <>2006-03-25 22:00:48 +0000
committerxue <>2006-03-25 22:00:48 +0000
commitdbf96121469b00c070b95095dcae2b1c408581dc (patch)
tree3ed37a37ead906c88e1c680213d57aae7c48d464 /framework
parent686805ddf0f760e2c30ff8aa02994daf9fd386fa (diff)
Added more meaningful error message when creating runtime directory fails.
Diffstat (limited to 'framework')
-rw-r--r--framework/Exceptions/messages.txt1
-rw-r--r--framework/TApplication.php3
2 files changed, 3 insertions, 1 deletions
diff --git a/framework/Exceptions/messages.txt b/framework/Exceptions/messages.txt
index 798fb50a..a60230bd 100644
--- a/framework/Exceptions/messages.txt
+++ b/framework/Exceptions/messages.txt
@@ -30,6 +30,7 @@ application_service_invalid = Service '{0}' must implement IService interface
application_service_unknown = Requested service '{0}' is not defined.
application_service_unavailable = Service Unavailable.
application_moduleid_duplicated = Application module ID '{0}' is not unique.
+application_runtimepath_failed = Unable to create runtime path '{0}'. Make sure the parent directory exists and is writable by the Web process.
appconfig_aliaspath_invalid = Application configuration <alias id="{0}"> uses an invalid file path "{1}".
appconfig_alias_invalid = Application configuration <alias> element must have an "id" attribute and a "path" attribute.
diff --git a/framework/TApplication.php b/framework/TApplication.php
index 12ac7195..681e8f3e 100644
--- a/framework/TApplication.php
+++ b/framework/TApplication.php
@@ -314,7 +314,8 @@ class TApplication extends TComponent
$subdir=basename($this->_configFile);
$this->_runtimePath.='/'.$subdir;
if(!is_dir($this->_runtimePath))
- mkdir($this->_runtimePath);
+ if(@mkdir($this->_runtimePath)===false)
+ throw new TConfigurationException('application_runtimepath_failed',$this->_runtimePath);
}
}
else