Michael
Forum Replies Created
-
I was browsing through the issues and accidentally realized, that the same question came up some years ago.
Yep, I have the same problem! Please fix this! It should only be a few lines of code; something like this:
// https://developer.mozilla.org/en-US/docs/Web/API/Document/readyState if(document.readyState !== 'complete') { // DOMContentLoaded has not fired yet, wait for it document.addEventListener('DOMContentLoaded', initFeed); } else { // DOMContentLoaded has already fired, init plugin directly initFeed(); }Forum: Plugins
In reply to: [WebP Express] Sanity check failed for destination path: String expected@geleiap I experienced the same thing after migrating the website to another domain. The images uploaded on the new domain had that kind of issue. Make sure you replace all occurrences of the old domain in your database. That worked for me. I hope that helps!
Forum: Plugins
In reply to: [ManageWP Worker] cloner.php@andrewarthurdawson Yes. It seems like the backups still are being completed despite the logged error. We can find this error within the mentioned file on a lot of managed websites, but have not experienced an incomplete backup so far. I would also recommend checking your backups regularly, as @bkjproductions mentioned.
Forum: Plugins
In reply to: [ManageWP Worker] cloner.phpI think it’s also a bit of a security vulnerability, as the error log file is publicly accessible per default and could disclose information. And yes, I was also worried that my website was hacked when I saw this the first time.