From 17502a9d155ecdff4b429b6fd65906b2069486b8 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Sun, 26 Aug 2018 02:29:21 -0400 Subject: remove error pages for now --- Bugzilla/Install/Filesystem.pm | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index 1da33882b..cb1b1ad15 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -382,37 +382,6 @@ sub FILESYSTEM { # Create static error pages. $create_dirs{"errors"} = DIR_CGI_READ; - $create_files{"errors/401.html"} = { - perms => CGI_READ, - overwrite => 1, - contents => _error_page( - 401, 'Authentication Required', - "This server could not verify that you are authorized to access - that url. you either supplied the wrong credentials (e.g., bad - password), or your browser doesn't understand how to supply the - credentials required.") - }; - $create_files{"errors/403.html"} = { - perms => CGI_READ, - overwrite => 1, - contents => _error_page( - 403, 'Access Denied', - "Access to the requested resource has been denied.") - }; - $create_files{"errors/404.html"} = { - perms => CGI_READ, - overwrite => 1, - contents => _error_page( - 404, 'Object Not Found', - "The requested URL was not found on this server.") - }; - $create_files{"errors/500.html"} = { - perms => CGI_READ, - overwrite => 1, - contents => _error_page( - 500, 'Internal Server Error', - "The server encountered an internal error and was unable to complete your request.") - }; # Because checksetup controls the creation of index.html separately # from all other files, it gets its very own hash. -- cgit v1.2.3-24-g4f1b