Hi Friends,
Won’t able to find the exact problem but found solutions to overcome this issue. What I did is hide the warnings that’s it and it worked for me, you can do this by changing following line in wp-config.php
define(‘WP_DEBUG’, false);
with
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);
and it worked for me!
Hope this will help you to solve your problem. ??