• Hi Any one help me to fix this issue
    I am getting the this Error
    Fatal error: Call to undefined function is_admin() in /hermes/web02/b2262/user/wp-includes/vars.php on line 16

    I attached the var.php file too

    Thanks
    Shawn

    <?php
    /**
    * Creates common globals for the rest of WordPress
    *
    * Sets $pagenow global which is the current page. Checks
    * for the browser to set which one is currently being used.
    *
    * Detects which user environment WordPress is being used on.
    * Only attempts to check for Apache and IIS. Two web servers
    * with known permalink capability.
    *
    * @package WordPress
    */

    // On which page are we ?
    if ( is_admin() ) {
    // wp-admin pages are checked more carefully
    preg_match(‘#/wp-admin/?(.*?)$#i’, $PHP_SELF, $self_matches);
    $pagenow = $self_matches[1];
    $pagenow = trim($pagenow, ‘/’);
    $pagenow = preg_replace(‘#\?.*?$#’, ”, $pagenow);
    if ( ” === $pagenow || ‘index’ === $pagenow || ‘index.php’ === $pagenow ) {
    $pagenow = ‘index.php’;
    } else {
    preg_match(‘#(.*?)(/|$)#’, $pagenow, $self_matches);
    $pagenow = strtolower($self_matches[1]);
    if ( ‘.php’ !== substr($pagenow, -4, 4) )
    $pagenow .= ‘.php’; // for Options +Multiviews: /wp-admin/themes/index.php (themes.php is queried)
    }
    } else {
    if ( preg_match(‘#([^/]+\.php)([?/].*?)?$#i’, $PHP_SELF, $self_matches) )
    $pagenow = strtolower($self_matches[1]);
    else
    $pagenow = ‘index.php’;
    }

    // Simple browser detection
    $is_lynx = $is_gecko = $is_winIE = $is_macIE = $is_opera = $is_NS4 = $is_safari = $is_chrome = $is_iphone = false;

    if ( isset($_SERVER[‘HTTP_USER_AGENT’]) ) {
    if ( strpos($_SERVER[‘HTTP_USER_AGENT’], ‘Lynx’) !== false ) {
    $is_lynx = true;
    } elseif ( strpos(strtolower($_SERVER[‘HTTP_USER_AGENT’]), ‘chrome’) !== false ) {
    $is_chrome = true;
    } elseif ( strpos(strtolower($_SERVER[‘HTTP_USER_AGENT’]), ‘safari’) !== false ) {
    $is_safari = true;
    } elseif ( strpos($_SERVER[‘HTTP_USER_AGENT’], ‘Gecko’) !== false ) {
    $is_gecko = true;
    } elseif ( strpos($_SERVER[‘HTTP_USER_AGENT’], ‘MSIE’) !== false && strpos($_SERVER[‘HTTP_USER_AGENT’], ‘Win’) !== false ) {
    $is_winIE = true;
    } elseif ( strpos($_SERVER[‘HTTP_USER_AGENT’], ‘MSIE’) !== false && strpos($_SERVER[‘HTTP_USER_AGENT’], ‘Mac’) !== false ) {
    $is_macIE = true;
    } elseif ( strpos($_SERVER[‘HTTP_USER_AGENT’], ‘Opera’) !== false ) {
    $is_opera = true;
    } elseif ( strpos($_SERVER[‘HTTP_USER_AGENT’], ‘Nav’) !== false && strpos($_SERVER[‘HTTP_USER_AGENT’], ‘Mozilla/4.’) !== false ) {
    $is_NS4 = true;
    }
    }

    if ( $is_safari && strpos(strtolower($_SERVER[‘HTTP_USER_AGENT’]), ‘mobile’) !== false )
    $is_iphone = true;

    $is_IE = ( $is_macIE || $is_winIE );

    // Server detection

    /**
    * Whether the server software is Apache or something else
    * @global bool $is_apache
    */
    $is_apache = (strpos($_SERVER[‘SERVER_SOFTWARE’], ‘Apache’) !== false || strpos($_SERVER[‘SERVER_SOFTWARE’], ‘LiteSpeed’) !== false);

    /**
    * Whether the server software is IIS or something else
    * @global bool $is_IIS
    */
    $is_IIS = (strpos($_SERVER[‘SERVER_SOFTWARE’], ‘Microsoft-IIS’) !== false || strpos($_SERVER[‘SERVER_SOFTWARE’], ‘ExpressionDevServer’) !== false);

    /**
    * Whether the server software is IIS 7.X
    * @global bool $is_iis7
    */
    $is_iis7 = (strpos($_SERVER[‘SERVER_SOFTWARE’], ‘Microsoft-IIS/7.’) !== false);

    ?>

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter samplestry

    (@samplestry)

    any one know how to solve this bug ?

    Hi
    I’ve encounter this problem during my automatic upgrade too. I have resolved this problem by downloading the latest wordpress update here ->http://wordpress.org/wordpress-2.9.zip and overwrite your old files.
    You may use Filezilla for easy upload.

    I hope this will solve your problem too.

    I am getting this error as well. Doing a complete manual re-install did not help, nor did disabling all plugins by renaming the plugin folder.

    OK, so I was able to fix this by downgrading to 2.8.6 from http://wordpress.org/download/release-archive/ then going back into my admin and trying the upgrade to 2.9 again.

    I think this is a bigger issue.

    A manual (re)install does solve this error message, but NOT if running multiple wordpress installs as individual domains, but as a sub-domain of a primary web hosting account.

    I run wordpress on my blog, which is its own domain (www.blognamehere.com)

    My web host allows me to run other domains (www.websitenamehere.com) under the same hosting accounting account, although officially they are subdomains of my primary account (www.blognamehere.com).

    Orginally I used simplescript to upgrade all of my wordpress installs; the primary account domain (www.blognamehere.com) upgraded fine, no breaks; but auto-upgrading http://www.websitenamehere.com fronm 2.9.b to 2.9 repeatedly resulted in the error “Call to undefined function is_admin() in /home/blognamehere/public_html/wp-includes/vars.php on line 16.”

    not that excited about doing a manual install, i instead decided to do a totally new, clean install of 2.9 in websitenamehere.com’s directory; clean install was fine until i imported orginal mysql db into new install/db – once again could not shake the error message “Call to undefined function is_admin() in /home/blognamehere/public_html/wp-includes/vars.php on line 16.”

    i then followed in painstaking detail the instructions on this thread to manually upgrade websitenamehere.com; including as usual changing in that directory the memory limit in wp-settings.php (from 32 mb to 128 mb).

    result: websitenamehere.com is now running 2.9 and seems to run fine.

    HOWEVER – that then broke the already upgraded (and working fine) 2.9 wordpress install in my primary domain (blognamehere.com), with the same error message: “Call to undefined function is_admin() in /home/blognamehere/public_html/wp-includes/vars.php on line 16.”

    i then manually upgraded blognamehere.com; which now works ONLY if the wp-settings.php memmory limit in that (primary) directory remains at 32 mb; and breaks again if that wp-settings memory limit is increased beyond 32 mb.

    Prior to the upgrade from 2.9b to 2.9, the wp-settings.php file in all my domain directories (primary, and add on domains running as subs of the primary) were set to a memory limit of 128 mb memory – and all ran fine.

    Unfortunately I need to be able to set all wp-settings.php memory limits to 128 mb in order to maintain functionality of each wordpress installs’ individual plugins.

    Any suggestions/thoughts, and/or is there a workaround for the apparent restrictions on increasing the memory limit above 32mb in the primary wp-settings.php directory?

    Thank you.

    I received this same exact error when doing a manual FTP upgrade. Only used the auto upgrade once when it was first released. Haven’t touched it since. While it’s a great concept it seems to be lacking for many.

    I have upgraded to many previous WordPress builds without problems in the past. Don’t have time to waste trying to figure out what the root cause of the current issue is. I’ve done a downgrade to the previous version. So everything is still currently up & running.

    I’m a newbie with this problem and I’m trying to fix it. Should I install WordPress fresh, rather than upgrading? Won’t I lose my information? I’ve done a full back-up but I’m not sure if I have the know-how to install a new version and then somehow find my old information and put it back in. Suggestions? Is there somewhere that gives clear instructions on how to repair this situation?

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Fatal error: wp-includes/vars.php on line 16 – please help me to fix this issue’ is closed to new replies.