Posts

00webhost unzipper script php

Image
Features: Detect zip file automatically Extract zip to custom folder Detect zip file on subfolder Unzipper tools php script <?php /** * The Unzipper extracts .zip or .rar archives and .gz files on webservers. * It's handy if you do not have shell access. E.g. if you want to upload a lot * of files (php framework or image collection) as an archive to save time. * As of version 0.1.0 it also supports creating archives. * * @author Andreas Tasch, at[tec], attec.at * @license GNU GPL v3 * @package attec.toolbox * @version 0.1.1 */ define('VERSION', '0.1.1'); $timestart = microtime(TRUE); $GLOBALS['status'] = array(); $unzipper = new Unzipper; if (isset($_POST['dounzip'])) { // Check if an archive was selected for unzipping. $archive = isset($_POST['zipfile']) ? strip_tags($_POST['zipfile']) : ''; $destination = isset($_POST['extpath']) ? strip_tags($_POST['extpath']) : ''; $

00webhost file manager alternative

Image
Feature: Support unzip file Support edit file/script on different encodings Support upload,edit,open,delete,rename,and other. Support add username and password. And any other. H3K | Tiny File Manager Modified By Dimas Lanjaka <?php /** * H3K | Tiny File Manager * CCP Programmers * http://fb.com/ccpprogrammers * https://github.com/prasathmani/tinyfilemanager */ // Default language $lang = 'en'; // Auth with login/password (set true/false to enable/disable it) $use_auth = true; // Users: array('user' => 'user', 'user' => 'user2', etc); $auth_users = array( 'your_username' => md5('your_password'), 'user2' => md5('pass2'), ); // Readonly users (usernames array) $readonly_users = array( 'user2' ); // Show or hide files and folders that starts with a dot $show_hidden_files = true; // Enable highlight.js (https://highlightjs.org/) on view's page $use_h