__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?php

/**
 * @package     Joomla.Administrator
 * @subpackage  com_templates
 *
 * @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\Factory;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Utility\Utility;

$input = Factory::getApplication()->input;
?>
<div id="#template-manager-file" class="container-fluid">
    <div class="mt-2 p-2">
        <div class="row">
            <div class="col-md-4">
                <div class="tree-holder">
                    <ul class="directory-tree treeselect root">
                        <li class="folder-select">
                            <a class="folder-url" data-id="" href="" data-base="template">
                                <span class="icon-folder icon-fw" aria-hidden="true"></span>
                                <?php echo ($this->template->client_id === 0 ? '/' : '/administrator/') . 'templates/' . $this->template->element; ?>
                            </a>
                            <?php echo $this->loadTemplate('folders'); ?>
                        </li>
                    </ul>
                    <?php if (count($this->mediaFiles)) : ?>
                        <ul class="directory-tree treeselect">
                            <li class="folder-select">
                                <a class="folder-url" data-id="" href="" data-base="media">
                                    <span class="icon-folder icon-fw" aria-hidden="true"></span>
                                    <?php echo '/media/templates/' . ($this->template->client_id === 0 ? 'site/' : 'administrator/') . $this->template->element; ?>
                                </a>
                                <?php echo $this->loadTemplate('media_folders'); ?>
                            </li>
                        </ul>
                    <?php endif; ?>
                </div>
            </div>
            <div class="col-md-8">
                <form method="post" action="<?php echo Route::_('index.php?option=com_templates&task=template.createFile&id=' . $input->getInt('id') . '&file=' . $this->file); ?>" class="mb-4">
                    <div class="form-group">
                        <label for="file_name"><?php echo Text::_('COM_TEMPLATES_FILE_NAME'); ?></label>
                        <input type="text" name="name" id="file_name" class="form-control" required>
                    </div>
                    <div class="form-group">
                        <label for="type"><?php echo Text::_('COM_TEMPLATES_NEW_FILE_TYPE'); ?></label>
                        <select class="form-select" data-chosen="true" name="type" id="type" required>
                            <option value="">- <?php echo Text::_('COM_TEMPLATES_NEW_FILE_SELECT'); ?> -</option>
                            <option value="css">.css</option>
                            <option value="php">.php</option>
                            <option value="js">.js</option>
                            <option value="xml">.xml</option>
                            <option value="ini">.ini</option>
                            <option value="less">.less</option>
                            <option value="sass">.sass</option>
                            <option value="scss">.scss</option>
                            <option value="txt">.txt</option>
                        </select>
                    </div>
                    <input type="hidden" class="address" name="address">
                    <input type="hidden" name="isMedia" value="0">
                    <?php echo HTMLHelper::_('form.token'); ?>
                    <button type="submit" class="btn btn-primary"><?php echo Text::_('COM_TEMPLATES_BUTTON_CREATE'); ?></button>
                </form>
                <hr class="mb-4">
                <form method="post" action="<?php echo Route::_('index.php?option=com_templates&task=template.uploadFile&id=' . $input->getInt('id') . '&file=' . $this->file); ?>" enctype="multipart/form-data" class="mb-4">
                    <input type="hidden" class="address" name="address">
                    <input type="hidden" name="isMedia" value="0">
                    <div class="input-group">
                        <input type="file" name="files" aria-labelledby="upload" class="form-control" required>
                        <?php echo HTMLHelper::_('form.token'); ?>
                        <button type="submit" class="btn btn-primary" id="upload"><?php echo Text::_('COM_TEMPLATES_BUTTON_UPLOAD'); ?></button>
                    </div>
                    <?php $cMax    = $this->state->get('params')->get('upload_limit'); ?>
                    <?php $maxSize = HTMLHelper::_('number.bytes', Utility::getMaxUploadSize($cMax . 'MB')); ?>
                    <span class="mt-2"><?php echo Text::sprintf('JGLOBAL_MAXIMUM_UPLOAD_SIZE_LIMIT', '&#x200E;' . $maxSize); ?></span>
                </form>
                <?php if ($this->type != 'home') : ?>
                    <hr class="mb-4">
                    <form method="post" action="<?php echo Route::_('index.php?option=com_templates&task=template.copyFile&id=' . $input->getInt('id') . '&file=' . $this->file); ?>" enctype="multipart/form-data" class="mb-4">
                        <div class="form-group">
                            <input type="hidden" class="address" name="address">
                            <input type="hidden" name="isMedia" value="0">
                            <label for="new_name">
                                <?php echo Text::_('COM_TEMPLATES_FILE_NEW_NAME_LABEL') ?>
                            </label>
                            <input class="form-control" type="text" id="new_name" name="new_name" required>
                            <?php echo HTMLHelper::_('form.token'); ?>
                        </div>
                        <button type="submit" class="btn btn-primary"><?php echo Text::_('COM_TEMPLATES_BUTTON_COPY_FILE'); ?></button>
                    </form>
                <?php endif; ?>
            </div>
        </div>
    </div>
</div>

Filemanager

Name Type Size Permission Actions
default.php File 25.95 KB 0664
default_description.php File 1.02 KB 0664
default_folders.php File 964 B 0664
default_media_folders.php File 1.02 KB 0664
default_modal_child_body.php File 2.84 KB 0664
default_modal_child_footer.php File 555 B 0664
default_modal_copy_body.php File 1.03 KB 0664
default_modal_copy_footer.php File 547 B 0664
default_modal_delete_body.php File 573 B 0664
default_modal_delete_footer.php File 1016 B 0664
default_modal_file_body.php File 6.08 KB 0664
default_modal_file_footer.php File 438 B 0664
default_modal_folder_body.php File 2.88 KB 0664
default_modal_folder_footer.php File 1.06 KB 0664
default_modal_rename_body.php File 1.08 KB 0664
default_modal_rename_footer.php File 547 B 0664
default_modal_resize_body.php File 1.38 KB 0664
default_modal_resize_footer.php File 547 B 0664
default_tree.php File 1.99 KB 0664
default_tree_media.php File 2.07 KB 0664
default_updated_files.php File 4.8 KB 0664
readonly.php File 1.21 KB 0664
Filemanager