Valentine
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-admin redirects to IP 0.0.0.0Hello!
In .htaccess, do you have a deny/allow rule set?
It would look something like this:Deny from all Allow from 0.0.0.0
Forum: Fixing WordPress
In reply to: Plugin IssueHi!
Are you able to get access to your hosting account? It would be best to login and do so via file manager.
Or of course, get in touch with your developer.
Forum: Fixing WordPress
In reply to: I can’t open or publish a post on my website.At the time of checking your website it works well. Or is the issue only with creating a new post?
It would be best to simply disable this plugin and install a new one.
Forum: Fixing WordPress
In reply to: SPAM registrationsYou can use the ALTER TABLE command:
ALTER TABLE TABLE_NAME AUTO_INCREMENT = [New Number];
Just edit the number you want the further ID’s to go from. Or set it in phpMyAdmin Operations tab.
This would be done manually, not sure how to automate this process, sorry!
Forum: Fixing WordPress
In reply to: http – httpsIt will work after you complete everything in the guide, or simply revert the changes you made.
- This reply was modified 4 years, 9 months ago by Valentine.
Forum: Fixing WordPress
In reply to: http – httpsI’d recommend keeping your site safe and using an SSL. If you do not want to purchase it from your provider, you can install it for free, from here for example: https://www.sslforfree.com/
It has a short guide on how to do so ??
SSL creates a secure connection for your visitors and the site just looks more professional if you take a glance at the URL tab.
Forum: Fixing WordPress
In reply to: SPAM registrationsSorry, looks like I did not quite understand your last question
Forum: Fixing WordPress
In reply to: SPAM registrationsHey!
User Email Activation is available if you have WPForms User Registration. When you require a user to click a confirmation link in their email, spambots are less likely to get through this security step.
Another way to stop spam user registrations is using a CAPTCHA.
Forum: Fixing WordPress
In reply to: http – httpsHey,
the 429 error indicates that too many requests are being sent.First of all, do you have an active SSL? After that, make sure you have made other necessary changes : https://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/
Forum: Fixing WordPress
In reply to: Media Files are disappearing again and againDoes it occur after making some sort of changes?
First of all, make sure your shop page is set up correctly: https://docs.woocommerce.com/document/woocommerce-pages/
Also, try to deactivate any plugins that are not WooCommerce for a while, to see if it could be them causing this.
Forum: Fixing WordPress
In reply to: How to fix this error?Hm, that seems to do the trick most of the time. Yet as it didn’t work, give this a read: https://thisinterestsme.com/fix-fatal-memory-bytes-exhausted/
Forum: Fixing WordPress
In reply to: Image description fieldAny time you upload an asset to your website (image, PDF, video, or audio file) WordPress, by default, creates a page to host just that piece of content.
That page gets its own URL which can contain more information about the asset than may be necessary or relevant on its parent page.
So the description is the descriptive text that shows up on your image attachment page.
You can read more about the fields here: https://limelightdept.com/articles/the-difference-between-image-alt-texts-and-descriptions/
Forum: Fixing WordPress
In reply to: Media Files are disappearing again and againHello!
Do the images get removed from your Media library in WordPress admin too? Or do they only disappear from your website?Forum: Fixing WordPress
In reply to: How to fix this error?Hello!
You should try pasting this in wp-config.php just before the line that says ‘That’s all, stop editing! Happy blogging.’define( 'WP_MEMORY_LIMIT', '256M' );
or a higher limit, depending on what you have set currently.
Forum: Fixing WordPress
In reply to: Unknown username or email adressHello!
Your language is great by the way ??
Do you still have access to PHPMyAdmin? It would be great, as you can change the user via the database.
If you take a look at this guide: https://www.wpbeginner.com/wp-tutorials/how-to-change-your-wordpress-username/ you will see the 3rd method will show you how to do so.I hope this may work for you!