![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/gositeme.com/public_html/whmcs/templates/phox/ |
{foreach from=$issues item=issue}
<div class="wdes-ns-panel panel {if $issue.clientaffected}panel-warning{else}panel-info{/if}">
<div class="panel-heading">
{$issue.title} ({$issue.status})
<div class="wdes-priority">
<span id="issuePriorityLabel" class="list-group-item {if $issue.rawPriority == 'Critical'}list-group-item-danger{elseif $issue.rawPriority == 'High'}list-group-item-warning{elseif $issue.rawPriority == 'Low'}list-group-item-success{else}list-group-item-info{/if}"><strong>{$LANG.networkissuespriority}</strong> - {$issue.priority}</span>
</div>
</div>
<ul class="list-group">
{if $issue.server or $issue.affecting}<li class="list-group-item"><strong>{$LANG.networkissuesaffecting} {$issue.type}</strong> - {if $issue.type eq $LANG.networkissuestypeserver}{$issue.server}{else}{$issue.affecting}{/if}</li>{/if}
<li class="list-group-item">
<p>
{$issue.description}
</p>
</li>
<li class="list-group-item"><strong>{$LANG.networkissuesdate}</strong> - {$issue.startdate}{if $issue.enddate} - {$issue.enddate}{/if}</li>
<li class="list-group-item"><strong>{$LANG.networkissueslastupdated}</strong> - {$issue.lastupdate}</li>
</ul>
</div>
{foreachelse}
{include file="$template/includes/alert.tpl" type="success" msg=$noissuesmsg textcenter=true}
{/foreach}
<div class="btn-group">
<a href="{if $prevpage}{$smarty.server.PHP_SELF}?{if $view}view={$view}&{/if}page={$prevpage}{else}#{/if}" class="btn btn-default {if !$prevpage}disabled{/if}">< {$LANG.previouspage}</a>
<a href="{if $nextpage}{$smarty.server.PHP_SELF}?{if $view}view={$view}&{/if}page={$nextpage}{else}#{/if}" class="btn btn-default {if !$nextpage}disabled{/if}">{$LANG.nextpage} ></a>
</div>
{if $servers}
{include file="$template/includes/subheader.tpl" title=$LANG.serverstatustitle}
<p>{$LANG.serverstatusheadingtext}</p>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>{$LANG.servername}</th>
<th class="text-center">HTTP</th>
<th class="text-center">FTP</th>
<th class="text-center">POP3</th>
<th class="text-center">{$LANG.serverstatusphpinfo}</th>
<th class="text-center">{$LANG.serverstatusserverload}</th>
<th class="text-center">{$LANG.serverstatusuptime}</th>
</tr>
</thead>
<tbody>
{foreach from=$servers key=num item=server}
<tr>
<td>{$server.name}</td>
<td class="text-center" id="port80_{$num}">
<span class="fad fa-spinner fa-spin"></span>
</td>
<td class="text-center" id="port21_{$num}">
<span class="fad fa-spinner fa-spin"></span>
</td>
<td class="text-center" id="port110_{$num}">
<span class="fad fa-spinner fa-spin"></span>
</td>
<td class="text-center"><a href="{$server.phpinfourl}" target="_blank">{$LANG.serverstatusphpinfo}</a></td>
<td class="text-center" id="load{$num}">
<span class="fad fa-spinner fa-spin"></span>
</td>
<td class="text-center" id="uptime{$num}">
<span class="fad fa-spinner fa-spin"></span>
<script>
jQuery(document).ready(function() {
checkPort({$num}, 80);
checkPort({$num}, 21);
checkPort({$num}, 110);
getStats({$num});
});
</script>
</td>
</tr>
{foreachelse}
<tr>
<td colspan="7">{$LANG.serverstatusnoservers}</td>
</tr>
{/foreach}
</tbody>
</table>
</div>
{/if}