MOON
Server: Apache
System: Linux 101-53-147-124.cprapid.com 4.18.0-553.121.1.el8_10.x86_64 #1 SMP Thu Apr 30 09:06:34 EDT 2026 x86_64
User: clientsoftwares (1005)
PHP: 8.2.30
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/clientsoftwares/www/lms.clientsoftwares.com/version.php
<?php
$project_name = 'InfixLMS';
function getStorageFile($file_name)
{
    $file = 'storage/app/.' . $file_name;
    if (file_exists($file)) {
        return file_get_contents($file);
    }
    return false;
}

?>
    <!DOCTYPE html>
    <html>
    <head>
        <meta name="author" content="spondonit">
        <meta name="descripton" content="A project of spondonit">
        <title>Version | <?php echo $project_name ?></title>
    </head>

    <body>
    <h1 style="text-align: center;">Your current version
        of <?php echo $project_name . ' is ' . getStorageFile('version') ?></h1>
    </body>
    </html>