I just upgraded to 4.7.1. I can't access my "settings" in the admin area. All other admin area links work, except for "settings". When I click on the "settings" link I get a download prompt for the settings file. This is what the downloaded file contains:

<?php
// $Id: index.php,v 1.90 2006/01/27 18:51:51 dries Exp $

/**
 * @file
 * The PHP page that serves all page requests on a Drupal installation.
 *
 * The routines here dispatch control to the appropriate handler, which then
 * prints the appropriate page.
 */

require_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);

$return = menu_execute_active_handler();
switch ($return) {
  case MENU_NOT_FOUND:
    drupal_not_found();
    break;
  case MENU_ACCESS_DENIED:
    drupal_access_denied();
    break;
  case MENU_SITE_OFFLINE:
    drupal_site_offline();
    break;
  default:
    // Print any value (including an empty string) except NULL or undefined:
    if (isset($return)) {
      print theme('page', $return);
    }
    break;
}

drupal_page_footer();

Operating System Linux
Kernel Version 2.6.14.3-1-grsec
Apache Version 1.3.34 (Unix)
PHP Version 4.4.2
MySQL Version 4.0.25-standard

Comments

styro’s picture

You didn't happen to put that in the wrong place did you?

--
Anton
New to Drupal? | Forum posting tips | Troubleshooting FAQ
Example Knowledge Base built using Drupal

TurtleX’s picture

Yeah, at first I put it in the root .htaccess file, but I corrected that and and made a new .htaccess file with the SetHandler line and put it in the "files" folder. But even though I restored the orginal .htaccess file in the root folder I still can't access my "settings" link.

TurtleX’s picture

I guess I have to reinstall...