@pedroloza Could you please edit wp-config.php file and
Replace:
define('WP_DEBUG', false);
with this:
ini_set('log_errors','On');
ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
Let us know if it helps to get rid of the warning messages.
perfect solution, because that problem occurred with the plugins?
@pedroloza These are just warnings, it doesn’t stop the functionality of the plugin, to suppress the warnings, we need to add the lines above so the warnings could be suppressed.
@pedroloza It seems your hosting provider restricts write permissions to the folders that normally allowed in WordPress. For example, uploads folder. As you can see from the screenshot, it happens with our plugin and with essential-addons-for-elementor plugin when both trying to write to uploads folder.
You may want to remove those restrictions.
The upload folder should be writable by your web server. To resolve the issue, please refer to https://www.smashingmagazine.com/2014/05/proper-wordpress-filesystem-permissions-ownerships/.