The Express Server Browse is a simple code tool that helps you and your clients to easily browse the server with your specific options.
Features
- Browse all the files in the server.
- Browse specific files and directoris (ex: .php;.js).
- Hide particular files (ex: .htaccess;.htpassword).
- Deny access to special directories.
- Limit browsing through a specific direcotry.
- Liberty to create new directories.
- 2 way for browse view (Grid / List).
- Themes property so you can easily create your custom theme (comes with 2 free themes).
- Easy code and multiple convenient options.
- 4 complete examples codes attached with the script.
Demo: http://demos.codesgit.com/esb/
Read more: http://docs.codesgit.com/esb/
How does it work ?
It’s really simple, The default call format as the following:
1- Load the library.
<?PHP include_once "lib/codesgit/browse.php"; ?>
2- Call the class.
<?PHP $browse = new codesGit_browse(); ?>
3- Load headers between head tags on your page:
<head>
<?PHP
$browse->loadHeader();
?>
</head>
4- Create the browse button.
<?PHP
$browse->create("target_with_CSS_selector_format", 'path_to_listener_file.php', 'value="Choose file..."');
?>
5-Load the listener code.
<?PHP $browse->listen(); ?>