Hello
After updated my wordpress to 3.3, i have a script error when i want upload file:
Uncaught ReferenceError: updateMediaForm is not defined
And the upload doesn't work.
Any idees ?
Hello
After updated my wordpress to 3.3, i have a script error when i want upload file:
Uncaught ReferenceError: updateMediaForm is not defined
And the upload doesn't work.
Any idees ?
i Done CTRL F5 to refresh scripts but nothing change,
In debug mode:
Notice: wp_enqueue_script was called incorrectly. Scripts and styles should not be registered or enqueued until the wp_enqueue_scripts, admin_enqueue_scripts, or init hooks. Please see Debugging in WordPress for more information. (This message was added in version 3.3.) in <wordpress>/wp-includes/functions.php on line 3578 Notice: wp_enqueue_style was called incorrectly. Scripts and styles should not be registered or enqueued until the wp_enqueue_scripts, admin_enqueue_scripts, or init hooks. Please see Debugging in WordPress for more information. (This message was added in version 3.3.) in <wordpress>/wp-includes/functions.php on line 3578 Notice: Constant ABSPATH already defined in /etc/wordpress/wp-config.php on line 35 Notice: Constant DB_NAME already defined in /etc/wordpress/wp-config.php on line 38 Notice: Constant DB_USER already defined in /etc/wordpress/wp-config.php on line 39 Notice: Constant DB_HOST already defined in /etc/wordpress/wp-config.php on line 40
Have you tried:
-reading the troubleshooting 3.3 master list: http://wordpress.org/support/topic/troubleshooting-wordpress-33-master-list
- deactivating all plugins to see if this resolves the problem? If this works, re-activate the plugins one by one until you find the problematic plugin(s).
- switching to the default theme to rule out any theme-specific problems.
- re-uploading all files & folders - except the wp-content folder from a fresh download of WordPress. by using FTP or whatever file management application your host provides.
All done, but the same error: Uncaught ReferenceError: updateMediaForm is not defined
i have the same problem with wp 3.3.1 but only in the remote server.
in the local server everything is working.
any clues on how to solve this?
So
Keep /etc/wordpress/
Make copy of your wordpress folder : /usr/share/wordpress
Do http://codex.wordpress.org/Updating_WordPress#Manual_Update
and do link to your config file:
/usr/share/wordpress/wp-config.php -> /etc/wordpress/wp-config.php
"Scripts and styles should not be registered or enqueued until the wp_enqueue_scripts, admin_enqueue_scripts, or init hooks"
Before call "wp_deregister_script, wp_register_script, wp_enqueue_script"
write "$wp_scripts = new WP_Scripts();"
You must log in to post.