Hey,
Looking at those logs only one issue in easy modal, and the one to do with easy modal is only appearing because another plugin has caused an error and printed something to the browser before it was supposed to.
Specifically
Cannot send session cache limiter – headers already sent (output started at /home/adeptioc/public_html/wp-includes/functions.php:3245)
This means that something was echoed, printed or dumped to the browser before it was supposed to.
Try setting your wp-config.php file with the following
define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_DISPLAY’, true);
This will show the errors to the browser and also show you a tracestack basically backtracking what functions caused the issue and where they are.
That would help greatly.