• I have upgraded to 2.0 and things seemed to be fine, untill I tried to post a blog entry or change the blog settings. I hit the “Save and Continue”, “Save” or “Publish” and it just takes me back to the “Write”-page, with the blog entry still in the form… Nothing is being written to database.

    Also when I try to change settings it takes me to the page showing all available variables, but the changes that I made have not been updated.

    Can anyone help me out here? I want to blog again!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter karbo

    (@karbo)

    I also get a “This script was not meant to be called directly.” right below the edit form on the “Write” page…

    Thread Starter karbo

    (@karbo)

    bump

    bump

    same here, please help!!!! PHP 5.0.4 anyone?

    Well, I finally fixed it — but had to edit all the files listed below, commenting out the same if statement in all of them like so:

    // if (!isset($$wpvar)) {
    if (empty($_POST[“$wpvar”])) {
    if (empty($_GET[“$wpvar”])) {
    $$wpvar = ”;
    } else {
    $$wpvar = $_GET[“$wpvar”];
    }
    } else {
    $$wpvar = $_POST[“$wpvar”];
    }
    // }

    This appears in the following files in /wp-admin folder

    admin.php (4 matches)
    categories.php (4 matches)
    inline-uploading.php (4 matches)
    link-add.php (4 matches)
    link-categories.php (4 matches)
    link-manager.php (4 matches)
    moderation.php (4 matches)
    options.php (4 matches)
    options-head.php (4 matches)
    plugin-editor.php (4 matches)
    post.php (4 matches)
    templates.php (4 matches)
    theme-editor.php (4 matches)
    user-edit.php (4 matches)

    Not sure why my 5.0.4 environment doesn’t like the variable variables, or rather, thinks they are always set, but thought I would share my hack to get it working.

    Nope… doesn’t work.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Posts and settings not saved in 2.0’ is closed to new replies.