Thread Starter
websid
(@websid)
Just note that if you send the file with the “Flash uploader” him despite registering a record in the database does not upload the file but if you do the registration for the “browser uploader” sending the file is done with the registration in the database.
In this case, the error appears to be in the “Flash uploader”. How can we solve this? (This error came with the last update of the WP-Filebase).
Thread Starter
websid
(@websid)
Hello willhearne,
I managed to solve on my website putting a code in the theme functions.php. I saw this suggestion in a forum that I can not remember now:
function my_scripts_method() {
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, ‘https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js’, false, ‘1.11.2’);
}
add_action(‘wp_enqueue_scripts’, ‘my_scripts_method’, 99);
I hope this helps!