disk was full but wordpress still having issues
Sounds like the upgrade download corrupted (probably because of disk space) – just do the upgrade manually.
Sounds like the upgrade download corrupted (probably because of disk space) – just do the upgrade manually.
It’s never a good idea to run an old version of WordPress, so I would recommend finding the source of the issues above all else. Old versions receive no security updates and have no long-term support, so by rolling back you’re leaving yourself extremely vulnerable to security issues that have since been fixed. To fix … Read more
A “Manual” install involves downloading the WordPress zip and extracting it to your site directory (via ftp or a file manager like cPanel has). make sure your wp-content folder is fully backed up as you will need it. then run the extract.
It is most probably just installing it from a package, it would be quite unwise from a security standpoint to let fantastico load directly from a remote server. Meaning I don´t think they are allowed to do it. Simply install wordpress from ftp should do it.
Thanks for your comments guys, I was over on the WPMU and was told to manual update, worked like a charm. Will do that with any issues in the future.
You should back-up your database and files if you are in any doubt whatsoever. It isn’t particularly hard to do. See this article on Backing Up WordPress, taken from the Codex: http://codex.wordpress.org/WordPress_Backups
Why not just remove it completely? You can add this to your themes functions.php file: // Hide update notice for everyone except admins function wps_hide_update_notice() { if ( !current_user_can( ‘manage_options’ ) ) { remove_action( ‘admin_notices’, ‘update_nag’, 3 ); } } add_action(‘admin_menu’,’wps_hide_update_notice’);
Let’s start debugging the problem. First let’s make sure that we’re getting into our IF conditional when the form $_POSTs. If you replace your code with this, then submit your form, you should see the message We’ve gotten into the $_POST conditional!” <?php if ( isset( $_POST[‘submit’] ) ) { echo “We’ve gotten into the … Read more
Not able to Update wordpress to 4.0
Found answer here: https://stackoverflow.com/a/19718745/3691686 wampmanager -> PHP -> PHP Extensions -> php_zip