When Trying to add new user I got the following:
Fatal error: Uncaught ArgumentCountError: crypt() expects exactly 2 arguments, 1 given in /var/www/w5dro.com/se/add_user.php:53 Stack trace: #0 /var/www/w5dro.com/se/add_user.php(53): crypt() #1 {main} thrown in /var/www/w5dro.com/se/add_user.php on line 53
This fixed it
"User added!",
"url" => $_SERVER["PHP_SELF"],
"link_message" => "Add another user"
));
}
}
else
{
render("add_user_form.php", array("title" => "Add user - " . $_SESSION["call"]));
}
?>
When Trying to add new user I got the following:
Fatal error: Uncaught ArgumentCountError: crypt() expects exactly 2 arguments, 1 given in /var/www/w5dro.com/se/add_user.php:53 Stack trace: #0 /var/www/w5dro.com/se/add_user.php(53): crypt() #1 {main} thrown in /var/www/w5dro.com/se/add_user.php on line 53
This fixed it
"User added!", "url" => $_SERVER["PHP_SELF"], "link_message" => "Add another user" )); } } else { render("add_user_form.php", array("title" => "Add user - " . $_SESSION["call"])); } ?>