You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
2.1 KiB
35 lines
2.1 KiB
<?php
|
|
if(!defined('OSTSCPINC') || !$thisstaff || !$thisstaff->isAdmin()) die('Access Denied');
|
|
?>
|
|
<div id="upgrader">
|
|
<div id="main">
|
|
<h1 style="color:#FF7700;"><?php echo __('Upgrade Aborted!');?></h1>
|
|
<div id="intro">
|
|
<p><strong><?php echo __('Upgrade aborted due to errors. Any errors at this stage are fatal.');?></strong></p>
|
|
<p><?php echo sprintf(__('Please note the error(s), if any, when %1$s seeking help %2$s.'),'<a target="_blank" href="https://osticket.com/support/">','</a>');?><p>
|
|
<?php
|
|
if($upgrader && ($errors=$upgrader->getErrors())) {
|
|
if($errors['err'])
|
|
echo sprintf('<b><font color="red">%s</font></b>',$errors['err']);
|
|
echo '<ul class="error">';
|
|
unset($errors['err']);
|
|
foreach($errors as $k => $error)
|
|
echo sprintf('<li>%s</li>',$error);
|
|
echo '</ul>';
|
|
} else {
|
|
echo '<b><font color="red">'.__('Internal error occurred').' - '.__('Get technical help!').'</font></b>';
|
|
}
|
|
?>
|
|
<p><b><?php echo sprintf(__('For details - please view %s or check your email.'),
|
|
sprintf('<a href="logs.php">%s</a>', __('System Logs')));?></b></p>
|
|
<br>
|
|
<p><?php echo sprintf(__('Please refer to the %1$s Upgrade Guide %2$s for more information.'), '<a target="_blank" href="https://docs.osticket.com/en/latest/Getting%20Started/Upgrade%20and%20Migration.html">', '</a>');?></p>
|
|
</div>
|
|
<p><strong><?php echo __('Need Help?');?></strong> <?php echo sprintf(__('We provide %1$s professional upgrade services %2$s and commercial support.'), '<a target="_blank" href="https://osticket.com/support/"><u>','</u></a>'); echo sprintf(__('%1$s Contact us %2$s today for <u>expedited</u> help.'), '<a target="_blank" href="https://osticket.com/contact-us/">','</a>');?></p>
|
|
</div>
|
|
<div class="sidebar">
|
|
<h3><?php echo __('What to do?');?></h3>
|
|
<p><?php echo sprintf(__('Restore your previous version from backup and try again or %1$s seek help %2$s.'), '<a target="_blank" href="https://osticket.com/support/">','</a>');?></p>
|
|
</div>
|
|
<div class="clear"></div>
|
|
</div>
|