Tiago Hillebrandt
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Healthcheck] Abandoned plugin?Hey Tomas, thanks for reaching out!
I like this plugin as it is lightweight and does exactly what I want&need
I’m glad to hear that! I have just released a new version including some security improvements and also bumping up the minimum required version for WordPress and PHP.
Is it abandoned?
A revamped version of the plugin can be found here: https://www.ads-software.com/plugins/supervisor/
Supervisor includes the same features that are available on WP Healthcheck, plus some extra ones like Brute Force Protection.
What can I do to support its further maintenance?
Recently, I have been working on adding new features to the Supervisor plugin. The project is progressing slowly due to my limited time, but some new updates should be released soon.
If you are willing to sponsor the project, we have this PayPal donation form: https://www.paypal.com/donate/?hosted_button_id=45R6Q8J8JERVS
With proper financial support, I could dedicate more time to adding features and enhancements to the plugin.
I’m not sure if you are a developer, but if you are, another way to help would be by coding new features and enhancements for the plugin. I have a roadmap with planned features, so if you are available to help, please let me know and we can discuss it further.
Thanks again for your message, I appreciate it!
Hello there,
I’m sorry to hear about the database you’ve lost.
However, given that your question is not related to the wp-healthcheck plugin (out of our support scope), I’d like to recommend you to send a message to your hosting company. They should be able to help you with the database restoration.
If the issue persists, you may want to reach out to the www.ads-software.com community forum, they will be able to help you in the process: https://www.ads-software.com/support/forum/how-to-and-troubleshooting/
If you have any questions related to the wp-healthcheck plugin, please don’t hesitate to contact us!
- This reply was modified 3 years, 9 months ago by Tiago Hillebrandt.
Hi @jdgj75,
This bug is related to another plugin: the health-check. Please make sure you report it to the proper developers ??
Best,
Tiago Hillebrandt
- This reply was modified 5 years, 10 months ago by Tiago Hillebrandt.
Forum: Plugins
In reply to: [Health Check & Troubleshooting] Apache out of date, but it’s notJeremy,
I believe your bug report is related to this plugin: https://www.ads-software.com/plugins/wp-healthcheck/
And I’m glad to say the issue you reported is fixed on new version. Thanks!
Marius, sorry for the mess here!
- This reply was modified 6 years, 10 months ago by Tiago Hillebrandt.
Forum: Plugins
In reply to: [WP Healthcheck] Text left maginHi Malae,
Yes, my apologies for not clarifying that.
Thanks for your contribution, and if you have any suggestions or feature requests, they are always welcome!
Forum: Plugins
In reply to: [WP Healthcheck] Text left maginHi Malae,
Yes, we are aware that PHP 5.6 is not outdated, let me clarify that for you.
When an user runs PHP older than 7.0.0, the below warning is displayed in WP Healthcheck:
Your PHP version (5.6.32) is compatible with the current WordPress install. However, in order to get better performance and other improvements, the WordPress team recommends you upgrade your server to PHP version 7.0.0 or greater.
As you can see, we don’t say that PHP 5.6 is outdated or won’t receive any security updates. We only say that user should consider to upgrade to PHP 7.0 ??
We just follow the requirements from WordPress requirements page (https://www.ads-software.com/about/requirements/).
Forum: Plugins
In reply to: [WP Healthcheck] Text left maginHello again!
Okay, thank you, if you experience the issue again please let me know and I’ll be happy to investigate further.
Regarding the PHP version, the WP Healthcheck already have warnings in place for the following situations:
– outdated versions (PHP less than 7.0.0)
– obsolete versions (PHP less than 5.2.4)Please let me know if you have any other questions!
Forum: Plugins
In reply to: [WP Healthcheck] Text left maginHi Malae,
Thank you for your bug report!
To help us to reproduce the issue and determine what’s going on, would you mind to share some details about your experience?
1. Which one is the browser/OS you are using?
2. Which one is the WordPress version you are running?
3. Are you able to provide any screenshots of the issue? (it could be via https://screenshot.net/#upload service)Thanks in advance!
Forum: Fixing WordPress
In reply to: Image Upload not working after changing directoryProbably you need to update your upload_path option value to /article in wp_options.
You can do it manually via phpMyAdmin or via MySQL CLI.
To see current value, run:
SELECT option_value FROM wp_options WHERE option_name LIKE 'upload_path';
To update to article as upload_path, run:
UPDATE wp_options SET option_value = 'article' WHERE option_name LIKE 'upload_path';
Hope this helps ??
Forum: Fixing WordPress
In reply to: Dashboard MessTry to disable the wp-fb plugin. According with error you sent, the issue is coming from it.
Forum: Fixing WordPress
In reply to: New install can't see theme thumbnails or any uploaded imagesHey,
I would recommend to check the upload_path value at wp_options table. If you keep that value empty, the default WordPress upload path will be wp-content/uploads.
Forum: Fixing WordPress
In reply to: Memory Limit Increase…Nothing is workingHey,
Have you already tried to increase the post_max_size value?
Forum: Fixing WordPress
In reply to: Rename Database Table Prefix .wp_Hey, if you change your table prefix in wp-config.php, you also will need to rename the tables in your database to use the same prefix. You can do that through phpmyadmin.
Forum: Fixing WordPress
In reply to: can't upgrade wordpressHi Cam,
You should check your file permissions at server side. If you don’t have access to the server, my advice would be to reach out your hosting company asking to check if files ownership is right and ask them to run the below commands in your site root:
find . -type d -exec chmod 755 {} \; find . -type f -exec chmod 644 {} \;
Forum: Fixing WordPress
In reply to: Problems with google searching my siteHey, you will need to implement a 301 redirect from 365flicks.co.uk to 365flicks.co.uk/blog. Thus, Google will re-index the new URL in place of the old one.