| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/newsite/installation/view/install/tmpl/ |
Upload File : |
<?php
/**
* @package Joomla.Installation
*
* @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
/* @var InstallationViewInstallHtml $this */
?>
<form action="index.php" method="post" id="adminForm" class="form-validate form-horizontal x">
<h3><?php echo JText::_('INSTL_INSTALLING'); ?></h3>
<hr class="hr-condensed" />
<div class="progress progress-striped active" id="install_progress">
<div class="bar" style="width: 0%;"></div>
</div>
<table class="table">
<tbody>
<?php foreach ($this->tasks as $task) : ?>
<tr id="install_<?php echo $task; ?>">
<td class="item" nowrap="nowrap" width="10%">
<?php if ($task == 'Email') :
echo JText::sprintf('INSTL_INSTALLING_EMAIL', '<span class="label">' . $this->options['admin_email'] . '</span>');
else :
echo JText::_('INSTL_INSTALLING_' . strtoupper($task));
endif; ?>
</td>
<td>
<div class="spinner spinner-img" style="visibility: hidden;"></div>
</td>
</tr>
<?php endforeach; ?>
</tbody>
<tfoot>
<tr>
<td colspan="2"></td>
</tr>
</tfoot>
</table>
<?php echo JHtml::_('form.token'); ?>
</form>
<script type="text/javascript">
jQuery(function()
{
doInstall();
});
function doInstall() {
if(document.getElementById('install_progress') != null) {
Install.install(['<?php echo implode("','", $this->tasks); ?>']);
} else {
(function(){doInstall();}).delay(500);
}
}
</script>