Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    •  
      CommentAuthorkent
    • CommentTimeDec 3rd 2007 edited
     
    think password need to be encrypted with md5()

    create a blank page. Exampel: md5crypt.php

    <?php
    if (isset($_POST['pass']))
    {
    echo "<p>Encrypted password: " . md5($_POST['pass']) . "</p>";
    }
    ?>
    <form method="post">
    <label for="pass">Choose a password:</label><br />
    <input type="text" size="25" id="pass" name="pass" /> <input type="submit" name="submit" id="submit" value="Crypt my password" />
    </form>

    Copy the password to your admin_password field.