• Whenever I click a plugin name in the options space in wp-admin, I get a grey page, with a white box with a mysterious phrase:

    “Cannot load 0.”

    I’m not able to access “All In One SEO” options, vbridge, related posts, plugins.

    I’m running wp 2.5.1, any ideas on what could be the problem? Thanks in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter paamayim

    (@paamayim)

    Ok, I’m digging into wp-admin/admin.php to solve this problem. It seems that something is turning all $_GET variables passed to options_general.php, to 0.

    For instance if I track $_GET[‘page’] in admin.php after a call to:

    ./wp-admin/options-general.php?page=yet-another-related-posts-plugin/options.php

    print_r($_GET);

    returns:

    Array ( [page] => 0 [pagenumber] => 0 )

    I dunno what the hell is going on here 🙁

    I recognize that this might be a little late but I was encountering the same problem and was able to discover what was the offending code.

    I don’t know what your situation was but for me, I had added this to wp-config.php:

    // vbulletin integration
    $curdir = getcwd ();
    chdir('/www/site/forum');
    require_once('/www/site/forum/global.php');
    chdir ($curdir);

    to be able to display vbulletin user info on my template pages and when I removed the code things started to work again.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘wp-admin / options / -plugin- : “cannot load 0.”’ is closed to new replies.