2012-04-22 03:59:45 +08:00
|
|
|
<?php
|
2012-04-30 01:15:06 +08:00
|
|
|
/**
|
|
|
|
* ZeroBin
|
|
|
|
*
|
|
|
|
* a zero-knowledge paste bin
|
|
|
|
*
|
|
|
|
* @link http://sebsauvage.net/wiki/doku.php?id=php:zerobin
|
|
|
|
* @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
|
|
|
|
* @license http://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
|
2015-09-04 04:22:59 +08:00
|
|
|
* @version 0.20
|
2012-04-30 01:15:06 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
// change this, if your php files and data is outside of your webservers document root
|
|
|
|
define('PATH', '');
|
2012-05-01 04:58:08 +08:00
|
|
|
|
2015-09-05 08:24:56 +08:00
|
|
|
define('PUBLIC_PATH', dirname(__FILE__));
|
2012-05-01 04:58:08 +08:00
|
|
|
require PATH . 'lib/auto.php';
|
2012-04-30 01:15:06 +08:00
|
|
|
new zerobin;
|