fioitv
Member
Posted 4 months ago #
Hi folks,
here is the problem:
when i try to write a post wp replies:
"Uno script in questa pagina potrebbe essere occupato o aver smesso di rispondere. È possibile fermare lo script adesso o attendere per vedere se lo script conclude la sua esecuzione.(brief translation: a script in this page does not work. you can stop it or wait for it to work :-(
Script: http://giallofastidio.net/wp-includes/js/jquery/jquery.js?ver=1.2.6:11"
when i click alternatively on 'stop' or 'continue' a white page appears saying 'internal error'
please, help me!!
thanks in advance
mazedlx
Member
Posted 4 months ago #
that must be a wordpress 2.6 bug. i can't see the "add media" button when writing a new post/page, selecting all plugins doesn't work either.
iamthechosenone
Member
Posted 3 months ago #
I have a similar problem. Same error message except when I click stop, I get the completed post.
The strange thing is that I use one wordpress installation for over 30 blogs, but I only get this error on one domain. i have deleted everything and started again with fresh files directly from wordpress and I still get the same.
Very strange and very annoying
Gary Walsh
Member
Posted 3 months ago #
Hello,
I found the problem with my site was that on writing a NEW post (not editing an existing one) there was a script that was loading the post meta for EVERY post-id in the whole database. In my case about 30,000 records. This killed the system. What I did was prevent the load of post meta by modifying the wp-admin\edit-form-advanced.php and removing the load of the custom fields meta.
<?php
$metadata = has_meta($post->ID);
list_meta($metadata);
?>
This fixed the problem and it loads very quickly now. May not be elegant but then again neither is loading every post in the meta!
GW
craigchilds
Member
Posted 3 months ago #
thanks Gary.
that worked perfectly - removing that line.
such a funny thing to happen on only one installation suddenly. cheers bro.
DJWILLIS
Member
Posted 3 months ago #
I had the same issue, thank god I found this thread! It worked perfectly for me as well! My posting time now goes from 3 minutes to 3 seconds! Can't thank you enough!
Willis
http://www.williswho.com
Guppy411
Member
Posted 2 months ago #
Gary,
You are awesome, I new it had something to do with the Custom Fields Meta as it was loading hundreds of fields that some were created in the database when I upgraded. I deleted them all but was still getting the JS error. The problem is I could not figure out how to disable it (I am fairly new to WP and it was like finding a needle in rain forest).
Guppy
summerbreeze
Member
Posted 2 months ago #
Hi, I am having the same trouble. I am not sure what I am looking for in the file I brought up my php editor and I can't find anything about meta data fields. Any help would be great thanks Jenn
mountainsage
Member
Posted 1 week ago #
Thanks...it worked perfectly!