summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorKevin Cupp <kevin.cupp@gmail.com>2012-02-05 20:14:32 +0100
committerKevin Cupp <kevin.cupp@gmail.com>2012-02-05 20:14:32 +0100
commitd63e40138e675df40f3a17e04972e82e7a748307 (patch)
tree02ad420bf5ec25e6e3379e1f821e4e029b00f828 /index.php
parentb211adee89f5fd2192051e9c0826146bd150f469 (diff)
Adding in a few 503 status codes for common errors in response to this ExpressionEngine bug about errors getting cached by reverse proxies who cache 200 responses: http://expressionengine.com/bug_tracker/bug/17420
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/index.php b/index.php
index 1712a7d66..a37826690 100644
--- a/index.php
+++ b/index.php
@@ -218,6 +218,7 @@ if (defined('ENVIRONMENT'))
{
if ( ! is_dir(BASEPATH.$application_folder.'/'))
{
+ header('HTTP/1.1 503 Service Unavailable.', TRUE, '503');
exit('Your application folder path does not appear to be set correctly. Please open the following file and correct this: '.SELF);
}
@@ -233,6 +234,7 @@ if (defined('ENVIRONMENT'))
{
if ( ! 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);
}