mcfreder
Forum Replies Created
-
Thank you for reaching back!
The email text is as follow:
The email body content
a screenshot: https://prnt.sc/8_zdHzMoF6Rd
I’m not using any other mailing plugin or service what’s so ever so in this case I will have to suspect that this could because of “Sendinblue”. It could be an intentional behvior from their end to consume the 300 emails a day faster? Please put it into test and let me know as I hope I am wrong.
Meantime I will try gmail instead and see if that fixes.
- This reply was modified 1 year, 11 months ago by mcfreder.
Forum: Fixing WordPress
In reply to: Database ErrorEnter your website ftp and Add this line at the end of your wp-config.php
define('WP_ALLOW_REPAIR', true);
Then refresh https://biponey.com/wp-admin/
If that doesn’t work, you must go to your Mysql and select all tables then repair them all.
Forum: Fixing WordPress
In reply to: wp_options: Table is marked as crashed and last repair failedHave a look at this:
https://wptavern.com/how-to-repair-a-crashed-wordpress-posts-table
Forum: Fixing WordPress
In reply to: wp_options: Table is marked as crashed and last repair failedHave a look at this:
https://wptavern.com/how-to-repair-a-crashed-wordpress-posts-table
Forum: Fixing WordPress
In reply to: wp_options: Table is marked as crashed and last repair failedNP ??
Forum: Fixing WordPress
In reply to: wp_options: Table is marked as crashed and last repair failedJust Repair and optimize again. Since the problem occured again, that clearly emphasizes that you either have:
- An incompatible plugin which you need to disable right away (likely a cache plugin).
- Repair other databases in your server will release more cpu for your website/database to operate.
Another suggestion, if your database is huge try to disable revisions and clean transient feeds. You can use this plugin https://www.ads-software.com/plugins/advanced-database-cleaner/ to do that.
- This reply was modified 7 years, 2 months ago by mcfreder.
Forum: Fixing WordPress
In reply to: http to https mistakeIF your website is hosted on a server and you have FTP access; Find wp-config.php and put these lines there:
define('WP_HOME','https://www.carolinewebber.co.uk'); define('WP_SITEURL','https://www.carolinewebber.co.uk');
Forum: Fixing WordPress
In reply to: http to https mistakeIs your website hosted on www.ads-software.com? If that is the case I advise you to login there and go to general and change https://www.carolinewebber.co.uk to https://www.carolinewebber.co.uk
However, you can easily get a free SSL certificate through this website: https://www.sslforfree.com/
Forum: Fixing WordPress
In reply to: cURL error 28: Connection timed out after 3001 millisecondsThat error is dns related issue. They need to switch dns configuration to OpenDNS: https://www.digitalocean.com/community/questions/how-do-i-switch-my-dns-resolvers-away-from-google
Forum: Fixing WordPress
In reply to: Database updater errorGoto PhpMyAdmin, find your database and make sure your tables are not marked as corrupted or crashed. Nevertheless, I recommend you to select all tables and click repair from the drop down menu.
Forum: Fixing WordPress
In reply to: Too Many Redirects, Can’t LoginPlease enter your CPanel/Plesk >> File Managements
Look for your website and rename
.htaccess
tohtaccess.txt
Use this website to check if the redirect is fixed: https://www.redirect-checker.org/index.php
If the error still persists then it must be one of the plugins is also interfering. All you have to do is go to wp-content and rename
plugins
toplugins.old
Connect to your website using the FTP client and then go to /wp-content/ directory. There you will see /uploads/ folder. Right click on the uploads directory and set chmod 755
Forum: Fixing WordPress
In reply to: Error 500 fixationOpen your wp-config.php and add this line:
define('WP_MEMORY_LIMIT', '256M');
This should fix 500 error once and for all. However, If you still getting the error then you must go to cpanel and make sure PHP VERSION 5.6 is selected if not select it. 5.6 and 7.x version are a huge deal they take less cpu usage and handle errors very well; as a result a very fast loading time.
If you are on a dedicated server and the above didn’t work out you might want to reset files/folders permissions recursively:
#find . -type d -exec chmod 775 {} \; For all directories #find . -type f -exec chmod 644 {} \; For all files
- This reply was modified 7 years, 2 months ago by mcfreder.
Forum: Fixing WordPress
In reply to: Database ErrorIf the above solution doesn’t help. Please consult my reply: https://www.ads-software.com/support/topic/wp_options-table-is-marked-as-crashed-and-last-repair-failed-10/#post-9467879
Forum: Fixing WordPress
In reply to: wp_options: Table is marked as crashed and last repair failed@g-rand yes, you create a fresh wp_options table. Just install wordpress in a local machine or anywhere then go to the database and select the row with wp_options and then export it as
wp_options.sql
Now all you have left to do is to import
wp_options.sql
into your production wordpress dababase.If you get an error that says the table already exist. You need to type this in sql query box:
DROP TABLE wp_options;