How to avoid timeout waiting for output from CGI script?

WordPress uses a file called wp-cron.php as a virtual cron job, or scheduled task in order to automate things like publishing scheduled posts, checking for plugin or theme updates, sending email notifications and more. By default WordPress is setup to call wp-cron.php everytime someone visits your WordPress website when a scheduled task is present, to … Read more

CHMOD 0777, but WordPress still not able to write files/folders [closed]

This really isn’t a WordPress issue. That said, the key error is “open_basedir restriction in effect.” If you’re running your own VPS, you need to learn to configure it. open_basedir restrictions keep scripts in one directory from being able to affect scripts in another directory, which is an important security feature. If one accounts gets … Read more

Having an HTTP error 500 after migrating a website

The error almost answers your question. Rename the folder for the plugin inlinks and the site should be restored. You may have to clear your browser’s cache. Once that is done you can work out the PHP error which is likely the result of using PHP versions on your dev and live server that are … Read more

How to set up suhosin.ini for unlimited menus

I found the answer, so I’m posting it to help others out: In this file (depending on your server setup): /etc/php5/apache2/conf.d Change suhosin.ini on the following lines (remove the semicolons if applicable): suhosin.post.max_vars = 5000 suhosin.request.max_vars = 5000 The default 1000 will not work – 5000 seems to work well for my needs (so far!)