HEX
Server: Apache
System: Linux webm003.cluster111.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: assotraipi (849654)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/assotraipi/www/wp-content/plugins/elastic-email-sender/template/t-ees_log.php
<style>
    .log-error {
        background-color: #FBB;
        padding: 20px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .log-error .header {
        margin-top: 0px;
        font-size: 18px;
        font-weight: bold;
    }
</style>

<div class="log-error">
    <p class="header">Error log</p>
    <?php

    define('LOG_PATH', plugin_dir_url(__DIR__) . 'api/error_log.php');

    $log_file = fopen(LOG_PATH, "r");

    while (!feof($log_file)) {
        echo fgets($log_file) . "<br>";
    }

    fclose($log_file);

    ?>
</div>