Categories
PHP PHP 5

How to ace a PHP job test in South Africa

Initial Preparation First of all do a project in PHP that utilises the database. I am talking about pure PHP and not a framework. Remember to turn make sure you set the following configuration settings. display_errors = 1; error_reporting(E_ALL); You can always view the php documentation which is always of great help.  Get ready for […]

Categories
wordpress

Debug WordPress PHP Whitescreen of Death

This article highlights what you need to do to debug a WordPress Whitescreen of Death whether in the dashboard or frontend. Go to: wp-config.php Then change: define(‘WP_DEBUG’, false); To: define(‘WP_DEBUG’, true); Source: Tutsplus Fix WordPress White Screen of Death