windansea
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: automatic update 6.9.4 > 7.0 failsHi t-p,
OK. I’ll do.
Thanks!Forum: Themes and Templates
In reply to: [Simple Life] Translation files 2.4 (nl_NL) / WP 5.7.2Sorry, correction: should be ‘/wp-content/languages/themes’ off course
Forum: Fixing WordPress
In reply to: 5.0.2 update problem: Class ‘WP_REST_Autosaves_Controller’ not foundDear Samuel, Steven,
Thanks for reading so well: indeed after years of updating (..), this time I did mixed up two directories (..) without discovering myself. I never imagined that this could happen to me too… ;-), and so a little ashamed now.
Sorry for taking your time and thanks a lot for all your efforts!
Now with a good reason: ‘Very Best Wishes’!
Bert
Forum: Fixing WordPress
In reply to: 5.0.2 update problem: Class ‘WP_REST_Autosaves_Controller’ not foundSteven,
FYI: I just started a complete new fresh (empty) database with the same errors as result. So the database should be OK and the source of the error should be somewhere in the directories (??)
Forum: Fixing WordPress
In reply to: 5.0.2 update problem: Class ‘WP_REST_Autosaves_Controller’ not foundSteven,
WordPress
5.0.2
PHP
7.0.32
MySQL
5.7.24
Web Server
apache/2.4.18Yay! The transients were cleaned up successfully.
Yay, nxsSNAPNetworks_bck option was deactivated successfully.Bert
Forum: Fixing WordPress
In reply to: 5.0.2 update problem: Class ‘WP_REST_Autosaves_Controller’ not foundI forgot this detail: I did change all the paths (home, siteurl) in the database wp_options and in the .htaccess file
Bert
Forum: Fixing WordPress
In reply to: 5.0.2 update problem: Class ‘WP_REST_Autosaves_Controller’ not foundSteven,
The other server is a production server 4.9.9 and no problem since yearsYes, readable: 0664 > wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php
I just noticed that clicking on the comments in the dashboard section gives
Class ‘WP_Block_Type_Registry’ not found with 7 generated errors from wp-includes/script-loader.php on line 2421 (also present and readable)
Forum: Fixing WordPress
In reply to: 5.0.2 update problem: Class ‘WP_REST_Autosaves_Controller’ not foundHi Steven,
Thanks for your answer.
Yes, _manually_ I did twice, and deleting first the whole admin/includes directories on the webserver. The way I update since years…
Bert
Forum: Plugins
In reply to: [Advanced Sidebar Menu] Ascending Descending?Hi Mat,
Great! Thanks for your immediate and positive answer!
Bert
Forum: Fixing WordPress
In reply to: WordPress 3.4.2. directly to 3.5.1 ?Clear,
Thanks Esmi!
Forum: Fixing WordPress
In reply to: Message WordPress 3.0.3 is available! = backOK
Besides this I discovered that this message / warning was because of the release of the Dutch version of 3.0.3 Although I was running allready on the international English/American 3.0.3 version! Perhaps good to know for others that this was the issue…
So resolved!
Thanks
BertForum: Plugins
In reply to: How to change default target in 2.5Found!
Perhaps handy for others: I did change in links.js the order and changed
“Option(v[0], v[1]);” in “Option(v[1], v[1]);”fillTargetList : function(id) {
var dom = tinyMCEPopup.dom, lst = dom.get(id), v;lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang(‘advanced_dlg.link_target_blank’), ‘_blank’);
lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang(‘not_set’), ”);
lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang(‘advanced_dlg.link_target_same’), ‘_self’);if (v = tinyMCEPopup.getParam(‘theme_advanced_link_targets’)) {
tinymce.each(v.split(‘,’), function(v) {
v = v.split(‘=’);
lst.options[lst.options.length] = new Option(v[1], v[1]);
});