Does this still happen if you switch to the twentyten theme?
If no, check your theme’s functions.php file for something like:
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js');
wp_enqueue_script( 'jquery' );
and change it to:
if (!is_admin()) {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js');
wp_enqueue_script( 'jquery' );
}
Thanks for your response. Still happens with the official theme, and all plugins deactivated:
Plugins
All (21) | Inactive (21) | Recently Active (21) | Update Available (2)
Current Theme
Twenty Ten 1.2 by the WordPress team
The file is called by:
<script type=”text/javascript” src=”http://www.mydomain.com/blog/wp-admin/load-scripts.php?c=0&load=hoverIntent,common,jquery-color,thickbox,theme-preview,theme&ver=843850c1bb4a004a6550e505bfa2b478″></script>
The content of the file is: http://pastie.org/private/s3hirnbfy36puzl2dxrga
hmm…that is strange.
Have you tried downloading a fresh copy of WordPress and overwriting wp-admin and wp-includes?
Well, doing such things is what broke it originally.. An upgrade was a bad move. I’ve just done a fresh install and it’s all working fine now.. Such huge jumps in versions clearly aren’t a good idea 🙂
Thanks for your suggestions!