• Hi all,

    I had this problem on another site some time ago and I found a solution. But for some reason I cannot find it anywhere on the internet and I’ve been searching for ages!

    Anyway, basically, when you login to the admin and go to write a post, the page displays fine. After a few minutes though the page layout breaks and it appears to try and load the stylesheet for the website. I am guessing this is due to the auto-save doing something wrong.

    So, any help would be greatly appreciated. I know the answer is out there somewhere, so even a link would be great.

    Thanks
    Paul

Viewing 10 replies - 1 through 10 (of 10 total)
  • Paul, thanks to explain in a good English the problem I have.
    I have been searching on internet as well, but nothing, I am unable to post with pictures and sometimes I can post text, but only if I am fast.( before the auto-save works)

    Thread Starter desmondo

    (@desmondo)

    Hi NMarqes.

    I still haven’t found the solution yet, but hopefully someone on here sees this post and we can both be happy!

    I will be searching, if I find something I will post, but I hope you find the solution first, lol.
    I have found somewhere some solution that did not work for me.
    they said: can be a problem with plugins ( I have 2.5.1 v) and some plugins are not available yet, other people said to reinstall the 2.5.1 version but do not overwrite, (back up first) then delete the old version and then install the new one. But that did not work. Try. Don’t forget to deactivate your plugins in these operations.

    Thread Starter desmondo

    (@desmondo)

    I’ve tried deactivating all the plugins, the problem still occurs. If anyone can help with this, we would appreciate it! It’s hard to know what to search for.

    Thread Starter desmondo

    (@desmondo)

    Bump, has anyone seen this problem?

    My friend, seems like we are the only ones with this problem, yesterday I could post, but I had to try twice but only text, no pictures.
    If I take long to post the save button is presses automatically.
    I can’t even modify a post. No blogging…

    Thread Starter desmondo

    (@desmondo)

    I still haven’t resolved this. It’s damn frustrating as I have fixed it once before, but can’t for the life of me remember how I did it. Might have been something to do with the HTACCESS file. Does that jog anyone’s memory?

    Please help!

    Thread Starter desmondo

    (@desmondo)

    I tried adding a blank .htaccess file to the blog and blog admin directory, to no avail though. I am sure it was something like that last time; perhaps I need to add some lines of code to the .htaccess file. I’m getting warmer, just need to know what to add.

    Even if you haven’t had this problem, could anyone think of what I should try adding to the .htaccess file?

    Thanks

    Thread Starter desmondo

    (@desmondo)

    I know I’m a pain, but is anyone reading this! Surely the answer is out there?

    Thread Starter desmondo

    (@desmondo)

    nmarques, if you’re still around, or if anyone else finds this. I seemed to have solved it when I fixed my Permalinks.

    Basically, when I added a .htaccess file to the root directory of my blog, (in my case “/blog/”), with the mod_rewrite information in it, it’s solved the problem of the autosave at the same time.

    So, here is the code, you’d have to add a .htaccess file to the root directory of your wordpress files and change the paths in the code below:

    # BEGIN WordPress
    <ifmodule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /blog/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /blog/index.php [L]
    </ifmodule>
    # END WordPress

    Hope this is of use to someone, it drove me crazy for weeks!

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Autosave in post area breaks layout’ is closed to new replies.