summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-06-12 01:26:58 +0200
committerAndrey Andreev <narf@bofh.bg>2012-06-12 01:26:58 +0200
commit079fbfcde095230f304e889217f897031a948f61 (patch)
treeeaad5b05fcf646665a5ffdf125fa47bbe29a8ed5 /index.php
parentc73df1de471d4dc849942e718e17d97a04c6fd20 (diff)
Changed APPPATH, BASEPATH and VIEWPATH to be absolute paths (fixes issue #1321) and removed EXT constant
Diffstat (limited to 'index.php')
-rw-r--r--index.php46
1 files changed, 31 insertions, 15 deletions
diff --git a/index.php b/index.php
index 3b00dd360..680dccfea 100644
--- a/index.php
+++ b/index.php
@@ -178,9 +178,11 @@ if (defined('ENVIRONMENT'))
{
$system_path = realpath($system_path).'/';
}
-
- // ensure there's a trailing slash
- $system_path = rtrim($system_path, '/').'/';
+ else
+ {
+ // Ensure there's a trailing slash
+ $system_path = rtrim($system_path, '/').'/';
+ }
// Is the system path correct?
if ( ! is_dir($system_path))
@@ -196,10 +198,6 @@ if (defined('ENVIRONMENT'))
// The name of THIS file
define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));
- // The PHP file extension
- // this global constant is deprecated.
- define('EXT', '.php');
-
// Path to the system folder
define('BASEPATH', str_replace('\\', '/', $system_path));
@@ -212,6 +210,11 @@ if (defined('ENVIRONMENT'))
// The path to the "application" folder
if (is_dir($application_folder))
{
+ if (realpath($system_path) !== FALSE)
+ {
+ $application_folder = realpath($application_folder);
+ }
+
define('APPPATH', $application_folder.'/');
}
else
@@ -226,20 +229,33 @@ if (defined('ENVIRONMENT'))
}
// The path to the "views" folder
- if (is_dir($view_folder))
- {
- define ('VIEWPATH', $view_folder .'/');
- }
- else
+ if ( ! is_dir($view_folder))
{
- if ( ! is_dir(APPPATH.'views/'))
+ if ( ! empty($view_folder) && is_dir(APPPATH.$view_folder.'/'))
+ {
+ $view_folder = APPPATH.$view_folder;
+ }
+ elseif ( ! is_dir(APPPATH.'views/'))
{
header('HTTP/1.1 503 Service Unavailable.', TRUE, '503');
exit('Your view folder path does not appear to be set correctly. Please open the following file and correct this: '.SELF);
}
+ else
+ {
+ $view_folder = APPPATH.'views';
+ }
+ }
- define ('VIEWPATH', APPPATH.'views/' );
+ if (realpath($view_folder) !== FALSE)
+ {
+ $view_folder = realpath($view_folder).'/';
}
+ else
+ {
+ $view_folder = rtrim($view_folder, '/').'/';
+ }
+
+ define ('VIEWPATH', $view_folder);
/*
* --------------------------------------------------------------------
@@ -251,4 +267,4 @@ if (defined('ENVIRONMENT'))
require_once BASEPATH.'core/CodeIgniter.php';
/* End of file index.php */
-/* Location: ./index.php */
+/* Location: ./index.php */ \ No newline at end of file