PATH:
home
/
vcomplcotr
/
www
/
wp-content
/
plugins
/
akeebabackupwp
/
app
/
Solo
/
ViewTemplates
/
Main
<?php /** * @package solo * @copyright Copyright (c)2014-2025 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ use Awf\Html; use Awf\Text\Text; defined('_AKEEBA') or die(); // Used for type hinting /** @var \Solo\View\Main\Html $this */ $router = $this->container->router; $inCMS = $this->container->segment->get('insideCMS', false); $token = $this->container->session->getCsrfToken()->getValue(); ?> {{-- Configuration Wizard pop-up --}} @if($this->promptForConfigurationWizard) @include('Configuration/confwiz_modal') @endif {{-- AdBlock warning --}} @include('Main/warning_adblock') {{-- Stuck database updates warning --}} @if ($this->stuckUpdates) <?php $resetUrl = $router->route('index.php?view=Main&task=forceUpdateDb'); ?> <div class="akeeba-block--failure"> <p> <?php echo Text::sprintf('COM_AKEEBA_CPANEL_ERR_UPDATE_STUCK', $this->getContainer()->appConfig->get('prefix', 'solo_'), $resetUrl ) ?> </p> </div> @endif {{-- Potentially web accessible output directory --}} @if ($this->isOutputDirectoryUnderSiteRoot) <!-- Oh, hi there! It looks like you got curious and are peeking around your browser's developer tools – or just the source code of the page that loaded on your browser. Cool! May I explain what we are seeing here? Just to let you know, the next three DIVs (outDirSystem, insecureOutputDirectory and missingRandomFromFilename) are HIDDEN and their existence doesn't mean that your site has an insurmountable security issue. To the contrary. Whenever Akeeba Backup detects that the backup output directory is under your site's root it will CHECK its security i.e. if it's really accessible over the web. This check is performed with an AJAX call to your browser so if it takes forever or gets stuck you won't see a frustrating blank page in your browser. If AND ONLY IF a problem is detected said JavaScript will display one of the following DIVs, depending on what is applicable. So, to recap. These hidden DIVs? They don't indicate a problem with your site. If one becomes visible then – and ONLY then – should you do something about it, as instructed. But thank you for being curious. Curiosity is how you get involved with and better at web development. Stay curious! --> {{-- Web accessible output directory that coincides with or is inside in a CMS system folder --}} <div class="akeeba-block--failure" id="outDirSystem" style="display: none"> <h3>@lang('COM_AKEEBA_CPANEL_HEAD_OUTDIR_INVALID')</h3> <p> @sprintf('COM_AKEEBA_CPANEL_LBL_OUTDIR_LISTABLE', realpath($this->getModel()->getOutputDirectory())) </p> <p> @lang('COM_AKEEBA_CPANEL_LBL_OUTDIR_ISSYSTEM') </p> <p> @lang('COM_AKEEBA_CPANEL_LBL_OUTDIR_ISSYSTEM_FIX') @lang('COM_AKEEBA_CPANEL_LBL_OUTDIR_DELETEORBEHACKED') </p> </div> {{-- Output directory can be listed over the web --}} <div class="akeeba-block--{{ $this->hasOutputDirectorySecurityFiles ? 'failure' : 'warning' }}" id="insecureOutputDirectory" style="display: none"> <h3> @if ($this->hasOutputDirectorySecurityFiles) @lang('COM_AKEEBA_CPANEL_HEAD_OUTDIR_UNFIXABLE') @else @lang('COM_AKEEBA_CPANEL_HEAD_OUTDIR_INSECURE') @endif </h3> <p> @sprintf('COM_AKEEBA_CPANEL_LBL_OUTDIR_LISTABLE', realpath($this->getModel()->getOutputDirectory())) </p> @if (!$this->hasOutputDirectorySecurityFiles) <p> @lang('COM_AKEEBA_CPANEL_LBL_OUTDIR_CLICKTHEBUTTON') </p> <p> @lang('COM_AKEEBA_CPANEL_LBL_OUTDIR_FIX_SECURITYFILES') </p> <form action="@route('index.php?view=Main&task=fixOutputDirectory')" method="POST" class="akeeba-form--inline"> <input type="hidden" name="@token()" value="1"> <button type="submit" class="akeeba-btn--block--green"> <span class="akion-hammer"></span> @lang('COM_AKEEBA_CPANEL_BTN_FIXSECURITY') </button> </form> @else <p> @lang('COM_AKEEBA_CPANEL_LBL_OUTDIR_TRASHHOST') @lang('COM_AKEEBA_CPANEL_LBL_OUTDIR_DELETEORBEHACKED') </p> @endif </div> {{-- Output directory cannot be listed over the web but I can download files --}} <div class="akeeba-block--warning" id="missingRandomFromFilename" style="display: none"> <h3> @lang('COM_AKEEBA_CPANEL_HEAD_OUTDIR_INSECURE_ALT') </h3> <p> @sprintf('COM_AKEEBA_CPANEL_LBL_OUTDIR_FILEREADABLE', realpath($this->getModel()->getOutputDirectory())) </p> <p> @lang('COM_AKEEBA_CPANEL_LBL_OUTDIR_CLICKTHEBUTTON') </p> <p> @lang('COM_AKEEBA_CPANEL_LBL_OUTDIR_FIX_RANDOM') </p> <form action="@route('index.php?view=Main&task=addRandomToFilename')" method="POST" class="akeeba-form--inline"> <input type="hidden" name="@token()" value="1"> <button type="submit" class="akeeba-btn--block--green"> <span class="akion-hammer"></span> @lang('COM_AKEEBA_CPANEL_BTN_FIXSECURITY') </button> </form> </div> @endif {{-- mbstring warning --}} @unless($this->checkMbstring) <div class="akeeba-block--failure"> @sprintf('COM_AKEEBA_CPANEL_ERR_MBSTRING_' . ($inCMS ? 'WORDPRESS' : 'SOLO'), PHP_VERSION) </div> @endunless {{-- Front-end backup secret word reminder --}} @unless(empty($this->frontEndSecretWordIssue)) <div class="akeeba-block--warning"> <h3>@lang('COM_AKEEBA_CPANEL_ERR_FESECRETWORD_HEADER')</h3> <p>@lang('COM_AKEEBA_CPANEL_ERR_FESECRETWORD_INTRO')</p> <p>{{ $this->frontEndSecretWordIssue }}</p> <p> @lang('COM_AKEEBA_CPANEL_ERR_FESECRETWORD_WHATTODO_SOLO') @sprintf('COM_AKEEBA_CPANEL_ERR_FESECRETWORD_WHATTODO_COMMON', $this->newSecretWord) </p> <p> <a class="akeeba-btn--green--large" href="@route('index.php?view=Main&task=resetSecretWord&' . $token . '=1')"> <span class="akion-android-refresh"></span> @lang('COM_AKEEBA_CPANEL_BTN_FESECRETWORD_RESET') </a> </p> </div> @endunless {{-- You need to enter your Download ID --}} @if ($this->needsDownloadId) <div class="akeeba-block--success"> <h3> @lang('COM_AKEEBA_CPANEL_MSG_MUSTENTERDLID') </h3> <p> @if($inCMS) @sprintf('COM_AKEEBA_LBL_CPANEL_NEEDSDLID', 'https://www.akeeba.com/instructions/1557-akeeba-solo-download-id-2.html') @else @sprintf('COM_AKEEBA_LBL_CPANEL_NEEDSDLID', 'https://www.akeeba.com/instructions/1539-akeeba-solo-download-id.html') @endif </p> <form name="dlidform" action="@route('index.php?view=main')" method="post" class="akeeba-form--inline"> <input type="hidden" name="task" value="applyDownloadId"/> <input type="hidden" name="token" value="@token()"> <div class="akeeba-form-group"> <label for="dlid"> @lang('COM_AKEEBA_CPANEL_MSG_PASTEDLID') </label> <input type="text" id="dlid" name="dlid" placeholder="@lang('COM_AKEEBA_CONFIG_DOWNLOADID_LABEL')" class="form-control"> </div> <div class="akeeba-form-group--actions"> <button type="submit" class="akeeba-btn--green"> <span class="akion-checkmark"></span> @lang('COM_AKEEBA_CPANEL_MSG_APPLYDLID') </button> </div> </form> </div> @endif {{-- You have CORE; you need to upgrade, not just enter a Download ID --}} @if ($this->warnCoreDownloadId) <div class="akeeba-block--failure"> @lang('SOLO_MAIN_LBL_NEEDSUPGRADE') </div> @endif <div class="akeeba-block--failure" style="display: none;" id="cloudFlareWarn"> <h3>@lang('COM_AKEEBA_CPANEL_MSG_CLOUDFLARE_WARN')</h3> <p>@sprintf('COM_AKEEBA_CPANEL_MSG_CLOUDFLARE_WARN1', 'https://support.cloudflare.com/hc/en-us/articles/200169456-Why-is-JavaScript-or-jQuery-not-working-on-my-site-')</p> </div>
[+]
..
[-] paypal.blade.php
[edit]
[-] warnings.blade.php
[edit]
[-] latest_backup.blade.php
[edit]
[-] icons_system.blade.php
[edit]
[-] icons_advanced.blade.php
[edit]
[-] icons_basic.blade.php
[edit]
[-] status.blade.php
[edit]
[-] profile.blade.php
[edit]
[-] warning_adblock.blade.php
[edit]
[-] default.blade.php
[edit]
[-] migreight.blade.php
[edit]
[-] icons_troubleshooting.blade.php
[edit]
[-] oneclick.blade.php
[edit]
[-] icons_includeexclude.blade.php
[edit]