Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/www/administrator/components/com_akeeba/views/buadmin/tmpl/ |
Upload File : |
<?php
/**
* @package Akeeba
* @copyright Copyright (c)2009-2016 Nicholas K. Dionysopoulos
* @license GNU General Public License version 3, or later
* @since 3.0
*/
// Protect from unauthorized access
defined('_JEXEC') or die();
JHtml::_('behavior.modal');
$proKey = (defined('AKEEBA_PRO') && AKEEBA_PRO) ? 'PRO' : 'CORE';
?>
<div id="akeeba-config-howtorestore-bubble" class="modal">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>
<?php echo JText::_('COM_AKEEBA_BUADMIN_LABEL_HOWDOIRESTORE_LEGEND') ?>
</h3>
</div>
<div class="modal-body">
<?php echo JText::sprintf('COM_AKEEBA_BUADMIN_LABEL_HOWDOIRESTORE_TEXT_' . $proKey,
'https://www.akeebabackup.com/videos/1212-akeeba-backup-core/1618-abtc04-restore-site-new-server.html',
'index.php?option=com_akeeba&view=transfer'); ?>
</div>
<div class="modal-footer">
<a href="#" class="btn" data-dismiss="modal">
<span class="icon icon-cancel"></span>
<?php echo JText::_('COM_AKEEBA_BUADMIN_BTN_REMINDME'); ?>
</a>
<a href="index.php?option=com_akeeba&view=buadmin&task=hidemodal" class="btn btn-success">
<span class="icon icon-ok-sign icon-white"></span>
<?php echo JText::_('COM_AKEEBA_BUADMIN_BTN_DONTSHOWTHISAGAIN'); ?>
</a>
</div>
</div>
<script>
jQuery(document).ready(function(){
jQuery("#akeeba-config-howtorestore-bubble").modal({
backdrop: true,
keyboard: true,
show: true
});
});
</script>