Bigul Malayi
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Determine which WPMU network site uses a specific pluginHi @srd75,
In WordPress Multisite, there is no built-in feature to show which child sites use a particular plugin.
It may be possible with a customized MySQL query or a WP-CLI Command. Refer to the following threads for an example:
Forum: Fixing WordPress
In reply to: After 7.01 I can not see any of my postsHi @rdilauro,
The debug log you shared will not cause this issue. Those are only depreciation warnings.
It looks like a compatibility conflict with the EasyIndex plugin. Temporarily deactivate this plugin after a full site backup and make sure the bug persists. If the problem is resolved, please contact their support forum.
Forum: Fixing WordPress
In reply to: After 7.01 I can not see any of my postsHi @rdilauro,
We hope you have set up a Blog page for the posts in Settings >> Reading. Please confirm. Refer to this documentation for more details: https://elementor.com/blog/blog-website-with-wordpress/
Forum: Fixing WordPress
In reply to: After 7.01 I can not see any of my postsHi @rdilauro,
Hope you had a backup before upgrading to WordPress 7.0.1. Please visit Posts >> All Posts, open the posts in the frontend, and check whether it shows a blank screen.
Are you using a customized version or a child theme of the default WordPress 2017 theme?
Please enable WordPress Debug Mode and check whether it shows any errors when you visit a Post or blog page (https://rdilauro.com/CarpeVino/indexes/wine-index-2/) in the frontend.
Refer to this documentation for more details on enabling the debug mode: https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/#example-wp-config-php-for-debugging
Are you using any redirection settings for the Blog page: https://rdilauro.com/CarpeVino/indexes/wine-index-2/
Forum: Fixing WordPress
In reply to: I can’t update my theme and plugins or upload imagesWhich version of WordPress are you currently using? Please check the following, it may help you to fix the issues.
- Go to Tools >> Site Health and make sure it reports any critical issues
- Check that you have sufficient disk space available on your hosting space
- Disable all the WordPress plugins and switch to the default 2025 theme after a full site backup, and make sure the bug exists or not
- Enable WordPress Debug Mode and check whether you are getting any errors in the debug.log file. Refer to this documentation for more details: https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/#example-wp-config-php-for-debugging
- Please share the current values you have set for the following: memory_limit, upload_max_filesize, post_max_size, and max_execution_time
- What is the size of the images you normally upload from Media >> Library or from a Post or Page
Forum: Fixing WordPress
In reply to: content disappears when front page template is appliedHi @herdingdogs,
Glad to know you are getting the expected results now. Thanks for sharing it. It will be helpful for our forum users.
It looks like the Custom Page Template was overriding your page when it was set as the static Homepage. Once you removed the Page Template, the Homepage was able to use the default template, and it works as expected.
Forum: Fixing WordPress
In reply to: content disappears when front page template is appliedHi @herdingdogs,
This may be a conflict with your theme’s Front Page template. You can check for it inside the theme files (for example, front-page.php).
Which theme are you using now? Is it a block theme? Please switch to a WordPress default theme, like 2025, after a full site backup, and confirm whether the bug persists.
You can also verify Appearance >> Editor >> Templates >> Front Page to confirm it contains a Post Content block. If that block has been removed or modified, the page content may not display correctly on the homepage.
Hi @ssgads,
Happy to know you are getting the expected results now. Thank you for the confirmation and for sharing more information.
Forum: Fixing WordPress
In reply to: Command Line Parameter ignoredHi Merlin,
You are welcome. Happy to know you are getting the expected results using the Redirection plugin 🙂
Forum: Fixing WordPress
In reply to: Wedsite home page won’t load after updating WPHi @rolandco19,
We hope you have upgraded to the latest version of WordPress from the site’s dashboard by clicking the upgrade link.
Somehow, your website isn’t loading on my end; it shows the error: “This site can’t be reached.”
Please visit Pages >> All Pages and make sure your homepage is still there. If so, go to Settings >> Reading >> Your homepage displays, select the *A static page* option, choose your homepage, and save the changes. Refer to this documentation for more details: https://wordpress.com/support/pages/front-page/#set-a-static-homepage
Then visit Settings >> Permalinks, resave the settings, and check whether you are getting the expected results.
Hi @ssgads,
The screenshot is missing. Does it happen when you are installing a new plugin from Plugins>>Add New? If so, does it happen with multiple plugins?
Which version of PHP are you using now?
Hi @lunchbug,
The easiest solution is to restore a site backup if you are backing up the site regularly. Maybe your hosting service will have an automatic backup option; please confirm it.Hope you are using a custom post type for the Portfolio posts. By default, WordPress posts and pages will also have a restore option for the revisions. You can find it on the right side of the post/page edit screen. Check out this article for more details: https://www.hostinger.com/in/tutorials/wordpress-revisions
Are you using a Page Builder like Elementor or Divi? Then it has its own restore mechanism. Refer to this documentation as an example: https://elementor.com/help/revision-history-undo-and-redo/
Did the images and widgets disappear after an update or any other changes, such as a migration?
Forum: Fixing WordPress
In reply to: Command Line Parameter ignoredYou are welcome. Please try the workarounds after you have fixed the severe error on your site, and let us know your feedback.
Forum: Fixing WordPress
In reply to: Visual Editor Flickering and ErrorHi @rmcole,
You are welcome. Most likely, it will be due to a compatibility issue with the outdated theme. Can you please upgrade to the latest version of the theme after a full site backup and confirm whether the bug exists? If the problem remains, contact your theme support.
Forum: Fixing WordPress
In reply to: Command Line Parameter ignoredHi @merlinsilk,
In most cases, WordPress ignores the unknown query parameters and serves the requested page. Are you passing any query parameters other than y=123456?
Are you using any security, caching, or SEO plugins that could be affecting URL handling?
We hope you are using the latest version of WordPress and have placed the URL rewrite code just above the WordPress block in the .htaccess file.
Please try the following code after a full site backup and check whether it helps or not.RewriteEngine On
RewriteCond %{QUERY_STRING} ^[a-zA-Z]=[0-9]+$ [NC]
RewriteRule ^$ - [R=404,L]As an alternative, you can also try plugins like https://wordpress.org/plugins/redirection/ for URL redirections.