Changes between Initial Version and Version 1 of Ticket #53039, comment 2
- Timestamp:
- 04/15/2021 01:12:55 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #53039, comment 2
initial v1 17 17 Did you try to delete all transients of flush object cache? 18 18 19 19 If you have installed [https://wp-cli.org/] then you can try: 20 21 {{{ 22 # sudo -u www-data wp shell 23 wp> delete_site_transient( 'update_core' ); 24 => bool(false) 25 wp> get_core_updates(); 26 => bool(false) 27 wp> wp_version_check(); 28 => NULL 29 wp> get_core_updates(); 30 => array(1) { 31 [0]=> 32 object(stdClass)#12003 (11) { 33 ["response"]=> 34 string(6) "latest" 35 ["download"]=> 36 string(65) "https://downloads.wordpress.org/release/en_GB/wordpress-5.7.1.zip" 37 38 }}}