summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-09-30 15:00:38 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-09-30 15:00:38 -0700
commite120a6e886a40eaf135f6032aa47e3eeeb58b3af (patch)
treea5cff291469b3cda0204f79359d27f5aad6c33ec
parentbd11d95c334a39fe6bf24c932c43f124b20ff139 (diff)
downloadbrdo-e120a6e886a40eaf135f6032aa47e3eeeb58b3af.tar.gz
brdo-e120a6e886a40eaf135f6032aa47e3eeeb58b3af.tar.bz2
Issue #76824 by geerlingguy, xjm, droplet, kbahey: Change notice for Drupal should not handle 404 for certain files.
-rw-r--r--.htaccess6
-rw-r--r--includes/bootstrap.inc28
-rw-r--r--includes/common.inc5
-rw-r--r--modules/locale/locale.test5
-rw-r--r--sites/default/default.settings.php36
5 files changed, 70 insertions, 10 deletions
diff --git a/.htaccess b/.htaccess
index aa3f7b809..e59cd99a5 100644
--- a/.htaccess
+++ b/.htaccess
@@ -16,12 +16,6 @@ Options +FollowSymLinks
# Make Drupal handle any 404 errors.
ErrorDocument 404 /index.php
-# Force simple error message for requests for non-existent favicon.ico.
-<Files favicon.ico>
- # There is no end quote below, for compatibility with Apache 1.3.
- ErrorDocument 404 "The requested file favicon.ico was not found.
-</Files>
-
# Set the default handler.
DirectoryIndex index.php index.html index.htm
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 1fe8c1435..39c1b0852 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -2403,6 +2403,34 @@ function drupal_maintenance_theme() {
}
/**
+ * Returns a simple 404 Not Found page.
+ *
+ * If fast 404 pages are enabled, and this is a matching page then print a
+ * simple 404 page and exit.
+ *
+ * This function is called from drupal_deliver_html_page() at the time when a
+ * a normal 404 page is generated, but it can also optionally be called directly
+ * from settings.php to prevent a Drupal bootstrap on these pages. See
+ * documentation in settings.php for the benefits and drawbacks of using this.
+ *
+ * Paths to dynamically-generated content, such as image styles, should also be
+ * accounted for in this function.
+ */
+function drupal_fast_404() {
+ $exclude_paths = variable_get('404_fast_paths_exclude', FALSE);
+ if ($exclude_paths && !preg_match($exclude_paths, $_GET['q'])) {
+ $fast_paths = variable_get('404_fast_paths', FALSE);
+ if ($fast_paths && preg_match($fast_paths, $_GET['q'])) {
+ drupal_add_http_header('Status', '404 Not Found');
+ $fast_404_html = variable_get('404_fast_html', '<html xmlns="http://www.w3.org/1999/xhtml"><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body></html>');
+ // Replace @path in the variable with the page path.
+ print strtr($fast_404_html, array('@path' => check_plain(request_uri())));
+ exit;
+ }
+ }
+}
+
+/**
* Return TRUE if a Drupal installation is currently being attempted.
*/
function drupal_installation_attempted() {
diff --git a/includes/common.inc b/includes/common.inc
index 3b32a2083..da0340b3f 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -2476,6 +2476,9 @@ function drupal_deliver_html_page($page_callback_result) {
watchdog('page not found', check_plain($_GET['q']), NULL, WATCHDOG_WARNING);
+ // Check for and return a fast 404 page if configured.
+ drupal_fast_404();
+
// Keep old path for reference, and to allow forms to redirect to it.
if (!isset($_GET['destination'])) {
$_GET['destination'] = $_GET['q'];
@@ -2492,7 +2495,7 @@ function drupal_deliver_html_page($page_callback_result) {
if (empty($return) || $return == MENU_NOT_FOUND || $return == MENU_ACCESS_DENIED) {
// Standard 404 handler.
drupal_set_title(t('Page not found'));
- $return = t('The requested page could not be found.');
+ $return = t('The requested page "@path" could not be found.', array('@path' => request_uri()));
}
drupal_set_page_content($return);
diff --git a/modules/locale/locale.test b/modules/locale/locale.test
index 3ae6d91a5..ec9d1d82f 100644
--- a/modules/locale/locale.test
+++ b/modules/locale/locale.test
@@ -291,9 +291,8 @@ class LocaleTranslationFunctionalTest extends DrupalWebTestCase {
$this->assertRaw(t('The language %locale has been removed.', array('%locale' => $name)), t('The test language has been removed.'));
// Reload to remove $name.
$this->drupalGet($path);
- $this->assertNoText($langcode, t('Language code not found.'));
- $this->assertNoText($name, t('Name not found.'));
- $this->assertNoText($native, t('Native not found.'));
+ // Verify that language is no longer found.
+ $this->assertResponse(404, t('Language no longer found.'));
$this->drupalLogout();
// Delete the string.
diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php
index 32160598d..8479cf5d4 100644
--- a/sites/default/default.settings.php
+++ b/sites/default/default.settings.php
@@ -429,6 +429,42 @@ ini_set('session.cookie_lifetime', 2000000);
# );
/**
+ * Fast 404 pages:
+ *
+ * Drupal can generate fully themed 404 pages. However, some of these responses
+ * are for images or other resource files that are not displayed to the user.
+ * This can waste bandwidth, and also generate server load.
+ *
+ * The options below return a simple, fast 404 page for URLs matching a
+ * specific pattern:
+ * - 404_fast_paths_exclude: A regular expression to match paths to exclude,
+ * such as images generated by image styles, or dynamically-resized images.
+ * If you need to add more paths, you can add '|path' to the expression.
+ * - 404_fast_paths: A regular expression to match paths that should return a
+ * simple 404 page, rather than the fully themed 404 page. If you don't have
+ * any aliases ending in htm or html you can add '|s?html?' to the expression.
+ * - 404_fast_html: The html to return for simple 404 pages.
+ *
+ * Add leading hash signs if you would like to disable this functionality.
+ */
+$conf['404_fast_paths_exclude'] = '/\/(?:styles)\//';
+$conf['404_fast_paths'] = '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i';
+$conf['404_fast_html'] = '<html xmlns="http://www.w3.org/1999/xhtml"><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body></html>';
+
+/**
+ * By default, fast 404s are returned as part of the normal page request
+ * process, which will properly serve valid pages that happen to match and will
+ * also log actual 404s to the Drupal log. Alternatively you can choose to
+ * return a 404 now by uncommenting the following line. This will reduce server
+ * load, but will cause even valid pages that happen to match the pattern to
+ * return 404s, rather than the actual page. It will also prevent the Drupal
+ * system log entry. Ensure you understand the effects of this before enabling.
+ *
+ * To enable this functionality, remove the leading hash sign below.
+ */
+# drupal_fast_404();
+
+/**
* Authorized file system operations:
*
* The Update manager module included with Drupal provides a mechanism for