Uguu is a simple lightweight temporary file host with support for drop, paste, click and API uploading.
https://uguu.se
phpuploaderupload-imagesupload-filesqlite-databasepomffile-sharingnginxhostingfilehostingfilehosterfilehostfile-uploadlightweighttemporary-filesuguuupload-files
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
344 B
12 lines
344 B
<?php |
|
require_once "rain/rain.tpl.class.php"; |
|
raintpl::configure( 'path_replace', false); |
|
raintpl::configure( 'tpl_dir', 'rain/template/'); |
|
raintpl::configure( 'cache_dir', 'rain/cache/' ); |
|
$tpl = new RainTPL; |
|
$title = "Temp File Hosting"; |
|
$tpl->assign("title", $title); |
|
$tpl->draw("header"); |
|
$tpl->draw("error_meow"); |
|
$tpl->draw("footer"); |
|
?>
|
|
|