MIKROM: a ten zbytek?
In your document root, create the following file: wplv-config.php
Paste the following into wplv-config.php
<?php if (!defined('ABSPATH')) { header('HTTP/1.0 403 Forbidden'); die; } define('WPLV_DEBUG', false);
In wp-config.php, add the following line. Add it before the line where you define WP_DEBUG.
include_once $_SERVER['DOCUMENT_ROOT'] . '/wplv-config.php';
In wp-config.php, replace the line where you define WP_DEBUG with the following
define('WP_DEBUG', defined('WPLV_DEBUG') ? WPLV_DEBUG : false);
That's it. Refresh the page in the browser and you are ready to go.