I have upgraded a not so old version of a Wordpress site and also upgraded the server from php 5.6 to php 7.2 (all this in a local and controlled environment).
The site has a few plugins and a custom theme. Plugins where disabled and re-enabled one by one to control errors.
After the upgrade of all plugins that allowed an upgrade I've been tracking errors and solving them until this point where I am, where:
When entering theme options and another plugin configuration I get the error message:
The site is experiencing technical difficulties. Please check your email for instructions.
I don't find any error trace in apache/php error log and in Wordpress debug log. All PHP configuration is set up to show all errors and my wp-config.php
file has these lines to force debug and log:
define('WP_DEBUG', true );
define('WP_DEBUG_LOG', true );
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
Where can I get more specific information about these errors? I know which plugins/theme cause them, but I need to debug and locate the lines where they happen.
Thank you.
Uncaught Error: [] operator not supported for strings in ../wp-content/plugins/revslider/includes/framework/base-admin.class.php:71
can you check your revslider for line 71 – Masivuye Cokile