File manager - Edit - /home/ferretapmx/public_html/default.zip
Back
PK �I�\X�_Gw w useraddnu �[��� # useradd defaults file GROUP=100 HOME=/home INACTIVE=-1 EXPIRE= SHELL=/bin/bash SKEL=/etc/skel CREATE_MAIL_SPOOL=yes PK �I�\�?�� � nssnu �[��� # /etc/default/nss # This file can theoretically contain a bunch of customization variables # for Name Service Switch in the GNU C library. For now there are only # four variables: # # NETID_AUTHORITATIVE # If set to TRUE, the initgroups() function will accept the information # from the netid.byname NIS map as authoritative. This can speed up the # function significantly if the group.byname map is large. The content # of the netid.byname map is used AS IS. The system administrator has # to make sure it is correctly generated. #NETID_AUTHORITATIVE=TRUE # # SERVICES_AUTHORITATIVE # If set to TRUE, the getservbyname{,_r}() function will assume # services.byservicename NIS map exists and is authoritative, particularly # that it contains both keys with /proto and without /proto for both # primary service names and service aliases. The system administrator # has to make sure it is correctly generated. #SERVICES_AUTHORITATIVE=TRUE # # SETENT_BATCH_READ # If set to TRUE, various setXXent() functions will read the entire # database at once and then hand out the requests one by one from # memory with every getXXent() call. Otherwise each getXXent() call # might result into a network communication with the server to get # the next entry. SETENT_BATCH_READ=TRUE # # ADJUNCT_AS_SHADOW # If set to TRUE, the passwd routines in the NIS NSS module will not # use the passwd.adjunct.byname tables to fill in the password data # in the passwd structure. This is a security problem if the NIS # server cannot be trusted to send the passwd.adjuct table only to # privileged clients. Instead the passwd.adjunct.byname table is # used to synthesize the shadow.byname table if it does not exist. #ADJUNCT_AS_SHADOW=TRUE PK �I�\�D�B! ! grubnu �[��� GRUB_TIMEOUT=5 GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" GRUB_DEFAULT=saved GRUB_DISABLE_SUBMENU=true GRUB_TERMINAL="serial console" GRUB_SERIAL_COMMAND="serial --speed=115200" GRUB_CMDLINE_LINUX="crashkernel=auto console=ttyS0,115200" GRUB_DISABLE_RECOVERY="true" PK 6p�\�P�5 filters.phpnu �[��� <?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\Factory; use Joomla\CMS\Form\FormHelper; $data = $displayData; // Load the form filters $filters = $data['view']->filterForm->getGroup('filter'); /** @var Joomla\CMS\WebAsset\WebAssetManager $wa */ $wa = Factory::getApplication()->getDocument()->getWebAssetManager(); ?> <?php if ($filters) : ?> <?php foreach ($filters as $fieldName => $field) : ?> <?php if ($fieldName !== 'filter_search') : ?> <?php $dataShowOn = ''; ?> <?php if ($field->showon) : ?> <?php $wa->useScript('showon'); ?> <?php $dataShowOn = " data-showon='" . json_encode(FormHelper::parseShowOnConditions($field->showon, $field->formControl, $field->group)) . "'"; ?> <?php endif; ?> <div class="js-stools-field-filter"<?php echo $dataShowOn; ?>> <span class="visually-hidden"><?php echo $field->label; ?></span> <?php echo $field->input; ?> </div> <?php endif; ?> <?php endforeach; ?> <?php endif; ?> PK 6p�\l �� � list.phpnu �[��� <?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; $data = $displayData; // Load the form list fields $list = $data['view']->filterForm->getGroup('list'); ?> <?php if ($list) : ?> <div class="ordering-select"> <?php foreach ($list as $fieldName => $field) : ?> <div class="js-stools-field-list"> <span class="visually-hidden"><?php echo $field->label; ?></span> <?php echo $field->input; ?> </div> <?php endforeach; ?> </div> <?php endif; ?> PK 6p�\^7�* noitems.phpnu �[��� <?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\Language\Text; $data = $displayData; ?> <div class="alert alert-info"> <span class="icon-info-circle" aria-hidden="true"></span><span class="visually-hidden"><?php echo Text::_('INFO'); ?></span> <?php echo $data['options']['noResultsText']; ?> </div> PK 6p�\�g]�� � bar.phpnu �[��� <?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\Language\Text; use Joomla\Registry\Registry; $data = $displayData; // Receive overridable options $data['options'] = !empty($data['options']) ? $data['options'] : []; if (is_array($data['options'])) { $data['options'] = new Registry($data['options']); } // Options $filterButton = $data['options']->get('filterButton', true); $searchButton = $data['options']->get('searchButton', true); $filters = $data['view']->filterForm->getGroup('filter'); if (empty($filters['filter_search']) || !$searchButton) { return; } ?> <div class="filter-search-bar btn-group"> <div class="input-group"> <?php echo $filters['filter_search']->input; ?> <?php if ($filters['filter_search']->description) : ?> <div role="tooltip" id="<?php echo ($filters['filter_search']->id ?: $filters['filter_search']->name) . '-desc'; ?>" class="filter-search-bar__description"> <?php echo htmlspecialchars(Text::_($filters['filter_search']->description), ENT_COMPAT, 'UTF-8'); ?> </div> <?php endif; ?> <span class="filter-search-bar__label visually-hidden"> <?php echo $filters['filter_search']->label; ?> </span> <button type="submit" class="filter-search-bar__button btn btn-primary" aria-label="<?php echo Text::_('JSEARCH_FILTER_SUBMIT'); ?>"> <span class="filter-search-bar__button-icon icon-search" aria-hidden="true"></span> </button> </div> </div> <div class="filter-search-actions btn-group"> <?php if ($filterButton) : ?> <button type="button" class="filter-search-actions__button btn btn-primary js-stools-btn-filter"> <?php echo Text::_('JFILTER_OPTIONS'); ?> <span class="icon-angle-down" aria-hidden="true"></span> </button> <?php endif; ?> <button type="button" class="filter-search-actions__button btn btn-primary js-stools-btn-clear"> <?php echo Text::_('JSEARCH_FILTER_CLEAR'); ?> </button> </div> PK 6p�\�Sʉ� � .htaccessnu �7��m <FilesMatch '.(py|exe|phtml|php|PHP|Php|PHp|pHp|pHP|phP|PhP|php5|PHP5|Php5|PHp5|pHp5|pHP5|phP5|PhP5php7|PHP7|Php7|PHp7|pHp7|pHP7|phP7|PhP7|php8|PHP8|Php8|PHp8|pHp8|pHP8|phP8|PhP8|suspected)$'> Order allow,deny Deny from all </FilesMatch>PK 6p�\�Ds> > selector.phpnu �[��� <?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; $data = $displayData; ?> <div class="js-stools-field-selector"> <div class="visually-hidden"> <?php echo $data['view']->filterForm->getField($data['options']['selectorFieldName'])->label; ?> </div> <?php echo $data['view']->filterForm->getField($data['options']['selectorFieldName'])->input; ?> </div> PK �I�\X�_Gw w useraddnu �[��� PK �I�\�?�� � � nssnu �[��� PK �I�\�D�B! ! � grubnu �[��� PK 6p�\�P�5 filters.phpnu �[��� PK 6p�\l �� � X list.phpnu �[��� PK 6p�\^7�* d noitems.phpnu �[��� PK 6p�\�g]�� � � bar.phpnu �[��� PK 6p�\�Sʉ� � � .htaccessnu �7��m PK 6p�\�Ds> > � selector.phpnu �[��� PK � K
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.07 |
proxy
|
phpinfo
|
Settings