Mihail Vasilchenko
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Vulnerability lodash CVE-2026-4800@xemix according to https://core.trac.ww.wp.xz.cn/ you can report vulnerabilities to https://hackerone.com/wordpress
Forum: Fixing WordPress
In reply to: no editor in 6.7 for Safari@wilkouk that’s great! Yes, could be the update or the cache expired 🙂
Forum: Fixing WordPress
In reply to: no editor in 6.7 for SafariHi @wilkouk
The resolution was to use the private window in Safari. It looks like extensions or cached data in Safari is the reason of this bug.
Thanks
Forum: Fixing WordPress
In reply to: no editor in 6.7 for Safari@fringewood yes, it will be hard to debug. It can be local storage, service workers etc. You can also try adding versioning to the url like https://myproject.com/wp-admin/post.php?post=9999&action=edit&version=1
Forum: Fixing WordPress
In reply to: no editor in 6.7 for SafariYou’re welcome @fringewood
If it works in private most likely it means that some of the Safari extensions or cookies or cached files are the reason for those react errors.
Thanks
Forum: Fixing WordPress
In reply to: no editor in 6.7 for Safari@fringewood @wilkouk I have tried Safari 18 on Catalina and on latest version of the OS (Sequoia) too. Both worked. Are you using the block or the classic editor? Did you tried using incognito (private) window in Safari?
Forum: Fixing WordPress
In reply to: no editor in 6.7 for Safari@fringewood I see.
Ok, let’s try to replicate. Can you paste me the link from here https://www.whatsmybrowser.org/
You’ve used wp 6.7 with no plugins and 2025 theme, correct?
Thanks
Forum: Fixing WordPress
In reply to: no editor in 6.7 for Safari@fringewood got it
Did you tried disabling wp plugins?
What happens if you switch to standard theme like 2024?
Forum: Fixing WordPress
In reply to: Can’t get my dashboard to openHi @svoges
Looks like a database upgrade or permission issue.
You can try contacting your hosting provider and ask them to set the correct permissions https://developer.ww.wp.xz.cn/advanced-administration/server/file-permissions/ and upgrade the database https://developer.ww.wp.xz.cn/cli/commands/core/update-db/
Also verify that your .htaccess file doesn’t have any rules blocking access to wp-admin/upgrade.php
It can also be a theme/plugin conflict. Try to disable plugins 1 by 1 and switching to default theme.
Thanks
- This reply was modified 1 year, 6 months ago by Mihail Vasilchenko.
Forum: Fixing WordPress
In reply to: no editor in 6.7 for SafariHi @fringewood
Seems like a javascript error. I have tried logging in wp dashboard on 6.7 in latest Safari and couldn’t replicate.
It could be a plugin/theme conflict or an extension in Safari. Try using the incognito and if it doesn’t help try to disable plugins 1 by 1 to find the culprit. You can also try switching to default theme.
You can also try adding this to your theme functions.php file but I didn’t tested it
// Add this code to your theme's functions.php or a custom plugin
function fix_react_in_safari() {
// Only apply fix if user is in admin area
if (!is_admin()) return;
// Dequeue problematic React and ReactDOM versions
wp_dequeue_script('react');
wp_dequeue_script('react-dom');
// Enqueue stable versions of React and ReactDOM
wp_enqueue_script(
'react-stable',
'https://cdnjs.cloudflare.com/ajax/libs/react/17.0.2/umd/react.production.min.js',
array(),
'17.0.2',
true
);
wp_enqueue_script(
'react-dom-stable',
'https://cdnjs.cloudflare.com/ajax/libs/react-dom/17.0.2/umd/react-dom.production.min.js',
array('react-stable'),
'17.0.2',
true
);
// Add compatibility layer for newer React features
wp_add_inline_script('react-dom-stable', "
if (typeof window.createRoot === 'undefined') {
window.createRoot = function(container) {
return {
render: function(element) {
ReactDOM.render(element, container);
},
unmount: function() {
ReactDOM.unmountComponentAtNode(container);
}
};
};
}
");
}
add_action('admin_enqueue_scripts', 'fix_react_in_safari', 100);Forum: Everything else WordPress
In reply to: New posts won’t show on home page@learndeutschwithme try to contact your hosting provider and ask how to clear the server cache.
If you see the recent posts when you’re logged in they either have the draft / private status or cache is disabled for logged in users. If it is cache check the installed plugins and try to disable the cache related ones.
Forum: Fixing WordPress
In reply to: articles archiving problem on my siteHi @ibrabd,
Are you trying to index them on google again?
You can request indexing again for each. The top right button on your screenshot. Or just wait till google rechecks the site again. But reindexing will be faster.
Hi @bnaka,
In my opinion the best they to do it is to contact the site owners first.
You should ask if they provide an api or an xml feed of the job postings. And if not do they allow scraping etc. If they do there are plenty services and wp plugins where you can define the start/end tags and it will scrape everything for you and provide the feed.
Forum: Everything else WordPress
In reply to: New posts won’t show on home pageI also see may 11 as the latest post date.
Are you using any cache plugins or maybe there is a server side cache on the hosting you use? If yes, can you try to clear it?
You can also try switching to the default theme and if you still see the site as it is now most likely it’s cached.
Let me know if any of these helped.
Thanks
Forum: Developing with WordPress
In reply to: Custom post type has no fields at all@suityou01 Glad you’ve resolved this. Yes, debugging helps a lot.
Thanks