diff options
author | emkael <emkael@tlen.pl> | 2016-02-24 23:19:37 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-02-24 23:19:37 +0100 |
commit | 6e72eace43adc48f0b311c26d66d13315e25fe93 (patch) | |
tree | cdafacdaf58ee9932e169f7f56467f2af29f4bfc /http | |
parent | 6f7fdef0f500cd4bb540affd3bc1482243f337c1 (diff) |
* sample Prado frontend structure
Diffstat (limited to 'http')
-rw-r--r-- | http/assets/.gitignore | 1 | ||||
-rw-r--r-- | http/index.php | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/http/assets/.gitignore b/http/assets/.gitignore new file mode 100644 index 0000000..72e8ffc --- /dev/null +++ b/http/assets/.gitignore @@ -0,0 +1 @@ +* 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(); |