diff options
author | xue <> | 2006-01-18 02:52:10 +0000 |
---|---|---|
committer | xue <> | 2006-01-18 02:52:10 +0000 |
commit | c95e5b62084b49ae7b51e5b6848327e82ac15c87 (patch) | |
tree | fa3aea2b1175b390eefb6a0be9728bc79c2fd7ec /demos | |
parent | e4fee00917f01b9c1358ac87d1929324141f90bd (diff) |
Added entry scripts to demos to make use of pradolite.php.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/composer/index.php | 3 | ||||
-rw-r--r-- | demos/composer/index2.php | 18 | ||||
-rw-r--r-- | demos/quickstart/index.php | 3 | ||||
-rw-r--r-- | demos/quickstart/index2.php | 18 |
4 files changed, 42 insertions, 0 deletions
diff --git a/demos/composer/index.php b/demos/composer/index.php index 04695b16..43c0b436 100644 --- a/demos/composer/index.php +++ b/demos/composer/index.php @@ -3,9 +3,12 @@ $basePath=dirname(__FILE__);
$frameworkPath=$basePath.'/../../framework/prado.php';
$assetsPath=$basePath.'/assets';
+$runtimePath=$basePath.'/protected/runtime';
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);
diff --git a/demos/composer/index2.php b/demos/composer/index2.php new file mode 100644 index 00000000..f3d8dd90 --- /dev/null +++ b/demos/composer/index2.php @@ -0,0 +1,18 @@ +<?php
+
+$basePath=dirname(__FILE__);
+$frameworkPath=$basePath.'/../../framework/pradolite.php';
+$assetsPath=$basePath.'/assets';
+$runtimePath=$basePath.'/protected/runtime';
+
+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;
+$application->run();
+
+?>
\ No newline at end of file diff --git a/demos/quickstart/index.php b/demos/quickstart/index.php index 04695b16..43c0b436 100644 --- a/demos/quickstart/index.php +++ b/demos/quickstart/index.php @@ -3,9 +3,12 @@ $basePath=dirname(__FILE__);
$frameworkPath=$basePath.'/../../framework/prado.php';
$assetsPath=$basePath.'/assets';
+$runtimePath=$basePath.'/protected/runtime';
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);
diff --git a/demos/quickstart/index2.php b/demos/quickstart/index2.php new file mode 100644 index 00000000..f3d8dd90 --- /dev/null +++ b/demos/quickstart/index2.php @@ -0,0 +1,18 @@ +<?php
+
+$basePath=dirname(__FILE__);
+$frameworkPath=$basePath.'/../../framework/pradolite.php';
+$assetsPath=$basePath.'/assets';
+$runtimePath=$basePath.'/protected/runtime';
+
+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;
+$application->run();
+
+?>
\ No newline at end of file |