\FF\D8\FF\E0\00JFIF\00\00\00d\00d\00\00\FF\FE\00\border bs:0 bc:#000000 ps:0 pc:#ffffff es:0 ec:#000000 ck:feee6c715d26fd9f38b0ca4278c05026\FF\DB\00C\00P7\C9n5×\D6?\BDê\9Ds\EBp\9F[`8m\B7)o\B5\E8\E6I\99\FE3]]A2\BA\8Cw\D6E\93\\DEv\C8\009\F2\F1NI?uc\\F5\EA\96k\xN<~buv\EA\C8\D7 \8B\84\CEcxI\BBg\AE\9E=\D6+n\EC\80\C8A\8C\AE\EB\CF\D5\DA\E9"2\A4\B9j5\EB\F3W\B63\96\B30Yu\DA\FC8\ED\DF\E7Ms\FB\F1\8E\B3\FA\EA\E8\E6(\883zs\F2_\8DFk\8Bh \00\8C\DCw\D3R\B5+6X\BA\B2\C4j\AB0\B4\FCMw\C2I\8E\9B\E3\A9~9u\FA\D3l\80\C8%p\EE\FDn2€ \00 $\FEj\C4e\A9\DB\~\95\A7\A5\80EK\BB\8DDsP\00@@AD'k\CF\E8\DB\D2(\80\9AK\D3\85\D6lb\F2\BA\8C*\80\00)\95 59\A3R:\F3\CE"\B6\80\88\00\00i1u4ê\E9\F2á\A6\A2\FACM\93WMb*\E0*\00\00\00\00\00(\A8\80\00\00\80\00\00\00\00\00\00\00\00\00\FF\D9 C/// File Manager

File Manager

Path: /usr/local/lsws/admin/html.5.4.4/service/

Viewing File: verMgrCont.php

<h2 class="bottom_bar">Version Management</h2>
<?php
	$release_log_url = 'https://www.litespeedtech.com/products/litespeed-web-server/release-log';
	echo '<p class="xtbl_value"><a target=_new href="' . $release_log_url . '">Release Notes</a></p>';

	if (isset($error) && $error != NULL) {
		echo '<p class="gui_error">Error: ' . $error . '</p>';
	}

	$product->getNewVersion();
	$product->getInstalled();

	if (isset($service->license['type']))
	{
?>
		<table width="100%" class="xtbl" border="0" cellpadding="5" cellspacing="1">
			<tr class="xtbl_header">
				<td colspan="5" class="xtbl_title" nowrap>License Info</td>
			</tr>
			<tr class="xtbl_label"><td width="120">Type</td><td>Serial</td><td>Expiration Date</td><td>Software Update Expiration</td><td>Action</td></tr>
			<tr class="xtbl_value"><td>
<?php

	$updexpdate = $service->license['updateExpires_date'];
	$timeleft = $service->license['updateExpires'] - time();
	if ($timeleft < 172800) // 2 days
	{
		$exptag = ($timeleft < 0) ? 'Expired' : 'Expiring soon';
		$updexpdate .= '<span style="background: rgb(230, 3, 3); margin-left:6px; padding:2px 6px;border-radius: 3px;color: white;">' . $exptag . '</span>';
	}
	$features = '';
	$feature = $service->license['feature'] & 11; // 1011
	if ($feature == 1) {
		$features = ' (LSCache Standard)';
	}
	elseif ($feature == 9) {
		$features = ' (LiteMage Starter)';
	}
	elseif ($feature == 11) {
		$features = ' (LiteMage Standard)';
	}
	elseif ($feature == 3) {
		$features = ' (LiteMage Unlimited)';
	}

	echo $service->license['type'] . $features . '</td><td>'
			. $service->license['serial'] . '</td><td>'
			. $service->license['expires_date'] . '</td><td>'
			. $updexpdate . '</td><td>'
			. '<a href="javascript:vermgr_checklic()" title="Check License Status Now">Validate License</a>';
?>
	</td></tr>
	</table>

<?php
	}

	if ( $product->new_release != NULL)
	{
?>
		<table width="100%" class="xtbl" border="0" cellpadding="5" cellspacing="1">
			<tr class="xtbl_header">
				<td colspan="2" class="xtbl_title" nowrap>Latest Release</td>
			</tr>
			<tr class="xtbl_label"><td width="120">Release</td><td>Action</td></tr>
			<tr class="xtbl_value"><td>
<?php
		echo $product->new_version . '</td><td>';
		if ($product->isInstalled($product->new_version))
			echo '<a href="javascript:vermgr(\'download\',\'' . $product->new_version . '\')">Force Reinstall</a>';
		else
			echo '<a href="javascript:vermgr(\'download\',\'' . $product->new_version . '\')">Download/Upgrade</a>';

?>

	</td></tr>
	</table>


<?php
	}
?>


		<table width="100%" class="xtbl" border="0" cellpadding="5" cellspacing="1">
			<tr class="xtbl_header">
				<td colspan="2" class="xtbl_title" nowrap>Installed Versions</td>
			</tr>
			<tr class="xtbl_label">
				<td width="120">Version</td><td>Actions</td>
			</tr>
<?php
	natsort($product->installed_releases);

 	$product->installed_releases = array_reverse($product->installed_releases);


	foreach( $product->installed_releases as $rel )
	{
		echo '<tr class="xtbl_value"><td>' . $rel . '</td><td nowrap>';
		if ( $product->version !== $rel )
		{
			echo '<a href="javascript:vermgr(\'switchTo\',\'' . $rel . '\')">SwitchTo</a>&nbsp;&nbsp;';
			echo '<a href="javascript:vermgr(\'remove\',\'' . $rel . '\')">Remove</a>&nbsp;&nbsp;';
		}
		else {
			echo 'Active (Build ' . $product->cur_build . ')&nbsp;&nbsp;';
		}
		echo '<a href="javascript:vermgr(\'download\',\'' . $rel . '\')">Force Reinstall</a>';
		echo "</td></tr>\n";
	}
?>
        </table>