Georgi.Marokov
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Editing with updated WPThank you! That Gutenberg editing is such a mess – I can’t insert [code] block, can't insert longer sentences and indent them. Don't even know why the editor is so small at all. Probably a lot of people consider moving away from WordPress already.
Forum: Fixing WordPress
In reply to: Autoupdate is not workingSo basically there a few more things to watch out when debugging this issues. I did the following and everything works like a charm.
Downloaded Background Update Tester plugin to see if there are any conflicts.
Your WordPress install can communicate with WordPress.org securely.
No version control systems were detected. (I had .git folder in my installation)
Your installation of WordPress doesn’t require FTP credentials to perform updates. If it does just add define(‘FS_METHOD’,’direct’); in the wp-config.php or add the credentials via some of those contantsdefine(‘FS_CHMOD_FILE’, 0755);
define(‘FS_CHMOD_DIR’, 0755);
define(‘FS_METHOD’, ‘ftpext’);
define(‘FTP_BASE’, ‘/httpdocs/’);
define(‘FTP_CONTENT_DIR’, ‘/httpdocs/wp-content/’);
define(‘FTP_PLUGIN_DIR ‘, ‘/httpdocs/wp-content/plugins/’);
define(‘FTP_USER’, ‘username’);
define(‘FTP_PASS’, ‘password’);
define(‘FTP_HOST’, ‘123.456.789’);
define(‘FTP_SSL’, false);
All of your WordPress files are writable.Forum: Fixing WordPress
In reply to: Autoupdate is not workingSo maybe my webserver would require FTP credentials to autoupdate so adding this to wp-config.php would be a clue:
define(‘FS_METHOD’, ‘direct’);Forum: Fixing WordPress
In reply to: Autoupdate is not workingA little luck so far. I found that plugin Background Update Tester which detect why auto updates are not working. I had version control in my folder so I removed it and now everything is passing but still no upgrade either to the core or plugins occurred.