There has been a critical error on your website

Look at your site (apache2) error.log. If you see access errors (can’t mkdir, can’t rmdir, permission denied), you may be dealing with a permissions problem. the wp-content folder and it’s children/subfolder need to be writable by the web server. Usually (on an ubuntu-apache combination), this requires that you change ownership (via chown) for the whole … Read more

Error Warning: Invalid argument supplied for foreach()

It sounds like something (theme or plugin) has called a wordpress function and passed the wrong type of variable. In the first few notices WordPress is expecting an object and has been passed something else. In the warning it is expecting an array and has been passed something else. Debug what is causing it, then … Read more

HELP: cannot log into wordpress. PHP error

When you get that polite ‘white screen of death’, you’ll find the problem in the error.log file in the root of your site (perhaps in the error.log file in wp-admin, if the error was caused by an admin-level program). You can renamed the plugins folder to temporarily disable all plugins. But the error.log file will … Read more

My posts are getting to Auto draft when I try to Publish

Can you try the following in your wp-config.php define( ‘AUTOSAVE_INTERVAL’, 3600 ); // autosave 1x per hour define( ‘WP_POST_REVISIONS’, false ); // no revisions What this would do disable auto-save and post-revisions. Try with that, if it works could be your then it could be your internet or hosting conflicts.