I update php4 from 4.4.2 to 4.4.4, then drupal 4.7.3 canot work? why?

Comments

rill’s picture

<?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();


nevets’s picture

It would probably help if you listed the errrors, what you mean by it does not work, and/or other details so people might be able to help.

.carey’s picture

My hosting company upgraded to php 4.4.4 (I'm not sure exactly when)... and I'm running three Drupal sites on it with no problems.

Maybe the issue has to do with something else. (?)

rill’s picture

when I update php to 4.4.4, My firefox cannot running some php files.
I use firefox:
no work: http://ygclub.org
work: http://www.ygclub.org

I use mozilla:
work: http://ygclub.org
work: http://www.ygclub.org

My firefox is 1.5.6 on freebsd 6.1.

nevets’s picture

I am using firefox 1.5.07 on Windows XP and it looks fine. I am guessing either you need a page refresh or it is a problem with that version of firefox.

rill’s picture

I found the ture problem with firefox cache。 When I clearn ... The firefox work fine and the problem is fixed.