diff options
Diffstat (limited to 'http/index.php')
-rw-r--r-- | http/index.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/http/index.php b/http/index.php new file mode 100644 index 0000000..1d47a53 --- /dev/null +++ b/http/index.php @@ -0,0 +1,21 @@ +<?php + +// The following directory checks may be removed if performance is required +$basePath = dirname(__FILE__); +$frameworkPath = $basePath . '/../lib/prado/framework/prado.php'; +$assetsPath = $basePath . '/assets/'; +$applicationPath = $basePath . '/../include/'; +$runtimePath = $basePath . '/../cache/prado/'; + +if(!is_file($frameworkPath)) + die("Unable to find prado framework path $frameworkPath."); +if(!is_writable($assetsPath)) + die("Please make sure that the directory $assetsPath is writable by Web server process."); +if(!is_writable($runtimePath)) + die("Please make sure that the directory $runtimePath is writable by Web server process."); + + +require_once($frameworkPath); + +$application = new TApplication($applicationPath); +$application->run(); |