gpt4 book ai didi

mysql - mantis 新用户注册无需邮箱

转载 作者:IT老高 更新时间:2023-10-28 23:48:11 29 4
gpt4 key购买 nike

Mantis 需要新用户点击邮件中收到的链接。根据公司政策,sendmail(或任何其他)应用程序不能在服务器上处于事件状态。如何允许用户在没有有效电子邮件的情况下注册?

无论如何我可以运行更新查询并直接在数据库中更改密码并将其交给用户吗?

最佳答案

  1. 通过http://path/to/mantis/manage_user_create_page.php(使用现有的管理员帐户)正常创建用户

  2. 打开命令提示符并登录 MySQL (mysql -u root -p)

  3. 使用 bugtracker;(其中 bugtracker 是螳螂 bd 的名称;默认 = bugtracker)

  4. update mantis_user_table set password=md5('password') where username='username';

整个 cmd 交换如下所示:

C:\Program Files\MySQL\MySQL Server 4.1\bin>mysql -u root -p
Enter password: *********
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 7 to server version: 4.1.21-community-nt

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> use bugtracker;
Database changed

mysql> update mantis_user_table set password=md5('password') where username='username';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0

关于mysql - mantis 新用户注册无需邮箱,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2145023/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com