\r
define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');\r
\r
-require (JIRAFEAU_ROOT . 'lib/config.php');\r
+require (JIRAFEAU_ROOT . 'lib/config.original.php');\r
require (JIRAFEAU_ROOT . 'lib/settings.php');\r
require (JIRAFEAU_ROOT . 'lib/functions.php');\r
require (JIRAFEAU_ROOT . 'lib/lang.php');\r
/* Operations may take a long time.\r
* Be sure PHP's safe mode is off.\r
*/\r
- set_time_limit(0);\r
+@set_time_limit(0);\r
+/* Remove errors. */\r
+@error_reporting(0);\r
\r
if ($_SERVER['REQUEST_METHOD'] == "GET" && count ($_GET) == 0)\r
{\r
require (JIRAFEAU_ROOT . 'lib/template/header.php');\r
- check_errors ();\r
+ check_errors ($cfg);\r
if (has_error ())\r
{\r
show_errors ();\r
/* Lets use interface now. */\r
header('Content-Type: text; charset=utf-8');\r
\r
-check_errors ();\r
+check_errors ($cfg);\r
if (has_error ())\r
{\r
echo "Error";\r
if (isset ($_FILES['file']) && is_writable (VAR_FILES)\r
&& is_writable (VAR_LINKS))\r
{\r
+ if (jirafeau_has_upload_password ($cfg) &&\r
+ (!isset ($_POST['upload_password']) ||\r
+ !jirafeau_challenge_upload_password ($cfg, $_POST['upload_password'])))\r
+ {\r
+ echo "Error";\r
+ exit;\r
+ }\r
+\r
$key = '';\r
if (isset ($_POST['key']))\r
$key = $_POST['key'];\r
/* Initialize an asynchronous upload. */\r
elseif (isset ($_GET['init_async']))\r
{\r
+ if (jirafeau_has_upload_password ($cfg) &&\r
+ (!isset ($_POST['upload_password']) ||\r
+ !jirafeau_challenge_upload_password ($cfg, $_POST['upload_password'])))\r
+ {\r
+ echo "Error";\r
+ exit;\r
+ }\r
+\r
if (!isset ($_POST['filename']))\r
{\r
echo "Error";\r
$type = $_POST['type'];\r
\r
$key = '';\r
- if (isset ($_POST['password']))\r
- $key = $_POST['password'];\r
+ if (isset ($_POST['key']))\r
+ $key = $_POST['key'];\r
\r
$time = time ();\r
if (!isset ($_POST['time']))\r
/* Initialize block. */\r
elseif (isset ($_GET['init_block']) && $cfg['enable_blocks'])\r
{\r
+ if (jirafeau_has_upload_password ($cfg) &&\r
+ (!isset ($_POST['upload_password']) ||\r
+ !jirafeau_challenge_upload_password ($cfg, $_POST['upload_password'])))\r
+ {\r
+ echo "Error";\r
+ exit;\r
+ }\r
+\r
if (!isset ($_POST['size']))\r
echo "Error";\r
else\r