X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/bfbbf72959faa385b97d250484be1d25e4fd22aa..3630d4651dd41f7d948339a0fb8da0efc856b79d:/index.php diff --git a/index.php b/index.php index f7aeb04..24565bd 100644 --- a/index.php +++ b/index.php @@ -25,6 +25,10 @@ require(JIRAFEAU_ROOT . 'lib/settings.php'); require(JIRAFEAU_ROOT . 'lib/functions.php'); require(JIRAFEAU_ROOT . 'lib/lang.php'); +if ($cfg['download_password_requirement'] === "generated"){ + $download_pass = jirafeau_gen_download_pass($cfg['download_password_gen_len'], $cfg['download_password_gen_chars']); +} + check_errors($cfg); if (has_error()) { require(JIRAFEAU_ROOT . 'lib/template/header.php'); @@ -41,7 +45,8 @@ if (isset($_POST['action']) && (strcmp($_POST['action'], 'logout') == 0)) { /* Check if user is allowed to upload. */ // First check: Is user already logged -if (jirafeau_user_session_logged()) {} +if (jirafeau_user_session_logged()) { +} // Second check: Challenge by IP NO PASSWORD elseif (true === jirafeau_challenge_upload_ip_without_password($cfg, get_ip_address($cfg))) { jirafeau_user_session_start(); @@ -107,8 +112,23 @@ elseif (true === jirafeau_challenge_upload_ip($cfg, get_ip_address($cfg))) {
- ++ '?> + +
+@@ -157,19 +177,24 @@ elseif (true === jirafeau_challenge_upload_ip($cfg, get_ip_address($cfg))) {