• Resolved davidinjp

    (@davidinjp)


    Upgraded to v2.5 smoothly. Everything is real nice (even my non-embedded wpg2 stuff), image uploader works good etc.

    Problem is that every time I click to write (new) or edit a post or page, it takes like 2 minutes for the edit page (where you input text) to load. I tried deactivating ALL plugins, restarted apache, disabled xcache, but nothing seems to fix this problem.

    After 2 minute wait I am able to write the post as I normally would, but there is another 2 minute hang when I click Save. However, the post is updated right away (as seen in another browser) when I do click save, it’s just the edit page itself has this two minute hanging problem…

    Any suggestions to try to resolve?

Viewing 3 replies - 31 through 33 (of 33 total)
  • Is there a final fix for this loading problem? My posting is taking forever. I’ve tried all sorts of things, but for some reason it’s just taking oceans of time whenever i write a new post or edit one. I’ve got my URL set to http://www., not just http://site.com. Categories shouldn’t be the problem, doesn’t seem like it was for others.

    Anyone know what to do?

    Thank you!!

    romanzmykulova

    (@romanzmykulova)

    Hi! For me worked to shutdow autosaves. simply use this plugin:
    <?php
    /*
    Plugin Name: Disable Autosave
    */
    function disable_autosave() {
    wp_deregister_script(‘autosave’);
    }
    add_action( ‘wp_print_scripts’, ‘disable_autosave’ );
    ?>
    it is from here
    I have wp-mu 2.7 and had problems with editing of posts/pages and this works for me. no need to convert categories… this problem was connected with autosave…

    romanzmykulova

    (@romanzmykulova)

    sorry this do not help… only i switched to Chrome and problem somehow diappear.. but now Chrome makinkg problems again – I am unable to post/edit pages/posts…

Viewing 3 replies - 31 through 33 (of 33 total)
  • The topic ‘Crazy long delay when I click write post/page WP 2.5’ is closed to new replies.