Subversion-Projekte lars-tiefland.prado

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
$basePath=dirname(__FILE__);
4
$frameworkPath=$basePath.'/../../framework/prado.php';
5
$assetsPath=$basePath.'/assets';
6
$runtimePath=$basePath.'/protected/runtime';
7
 
8
if(!is_writable($assetsPath))
9
	die("Please make sure that the directory $assetsPath is writable by Web server process.");
10
if(!is_writable($runtimePath))
11
	die("Please make sure that the directory $runtimePath is writable by Web server process.");
12
 
13
require_once($frameworkPath);
14
 
15
$application=new TApplication;
16
$application->run();
17
 
18
?>