Error in publication
Posted: Fri Jul 16, 2021 8:52 pm
When I publish my site, I'm just testing it, I bought the software this week.
There's a code that shouldn't appear.
It appears at the top of the page, I don't know if it's a problem only when using the login form.
0) { $items = file($database, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); foreach ($items as $line) { list($username, $password, $email, $name, $active) = explode('|', trim($line)); if ($username == $_POST['username'] && $active != "0" && $password == $crypt_pass) { $found = true; $fullname = $name; break; } } } if ($found == false) { header('Location: '.$error_page); exit; } else { $_SESSION['username'] = $_POST['username']; $_SESSION['fullname'] = $fullname; $_SESSION['expires_by'] = time() + $session_timeout; $_SESSION['expires_timeout'] = $session_timeout; $rememberme = isset($_POST['rememberme']) ? true : false; if ($rememberme) { setcookie('username', $_POST['username'], time() + 3600*24*30); setcookie('password', $_POST['password'], time() + 3600*24*30); } header('Location: '.$success_page); exit; } } $username = isset($_COOKIE['username']) ? $_COOKIE['username'] : ''; $password = isset($_COOKIE['password']) ? $_COOKIE['password'] : ''; if (!isset($_SESSION['username'])) { $_SESSION['referrer'] = $_SERVER['REQUEST_URI']; header('Location: '); exit; } if (isset($_SESSION['expires_by'])) { $expires_by = intval($_SESSION['expires_by']); if (time() < $expires_by) { $_SESSION['expires_by'] = time() + intval($_SESSION['expires_timeout']); } else { unset($_SESSION['username']); unset($_SESSION['expires_by']); unset($_SESSION['expires_timeout']); $_SESSION['referrer'] = $_SERVER['REQUEST_URI']; header('Location: '); exit; } } if (!isset($_SESSION['username'])) { header('Location: '); exit; } ?>
There's a code that shouldn't appear.
It appears at the top of the page, I don't know if it's a problem only when using the login form.
0) { $items = file($database, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); foreach ($items as $line) { list($username, $password, $email, $name, $active) = explode('|', trim($line)); if ($username == $_POST['username'] && $active != "0" && $password == $crypt_pass) { $found = true; $fullname = $name; break; } } } if ($found == false) { header('Location: '.$error_page); exit; } else { $_SESSION['username'] = $_POST['username']; $_SESSION['fullname'] = $fullname; $_SESSION['expires_by'] = time() + $session_timeout; $_SESSION['expires_timeout'] = $session_timeout; $rememberme = isset($_POST['rememberme']) ? true : false; if ($rememberme) { setcookie('username', $_POST['username'], time() + 3600*24*30); setcookie('password', $_POST['password'], time() + 3600*24*30); } header('Location: '.$success_page); exit; } } $username = isset($_COOKIE['username']) ? $_COOKIE['username'] : ''; $password = isset($_COOKIE['password']) ? $_COOKIE['password'] : ''; if (!isset($_SESSION['username'])) { $_SESSION['referrer'] = $_SERVER['REQUEST_URI']; header('Location: '); exit; } if (isset($_SESSION['expires_by'])) { $expires_by = intval($_SESSION['expires_by']); if (time() < $expires_by) { $_SESSION['expires_by'] = time() + intval($_SESSION['expires_timeout']); } else { unset($_SESSION['username']); unset($_SESSION['expires_by']); unset($_SESSION['expires_timeout']); $_SESSION['referrer'] = $_SERVER['REQUEST_URI']; header('Location: '); exit; } } if (!isset($_SESSION['username'])) { header('Location: '); exit; } ?>