I don't know if there is a solution on the official website. I just forgot one of my mobile website passwords a few days ago. Because of the large database, the original database has more than 14 Mb, not to mention the size of the database that has been filled in with data. It is time to download the database and upload it again. Therefore, according to the data structure, I simply wrote a small Password Reset Program .
Send the program to a friend, which is convenient after use. I think there should be other people who need it. Upload the file :)
CopyCode The Code is as follows: <% @ Language = VBScript codePage = 936%>
<%
'Purpose: reset the Administrator admin password to 123456, applicable to systems with ease of operation 5 or above, including siteweaver 6.5
'Method: Upload the file to the directory of the server's mobile system and run the file.
'Note: Please delete it immediately after resetting!
'Author: itlearner
'Website: www.itlearner.com
Option explicit
%>
<! -- # Include file = "conn. asp" -->
<%
Openconn
Dim RS, SQL
Set rs = server. Createobject ("ADODB. recordset ")
SQL = "select * From pe_admin"
Rs. Open SQL, Conn, 2, 3
Do while not Rs. EOF
'Response. Write RS ("adminname") & "-" & RS ("password") & "<br>"
RS ("password") = "49ba59abbe56e057"
Rs. Update
Rs. movenext
Loop
Set rs = nothing
Response. Write "Password Reset successful! The new password is 123456. "
%>
decompress the package and place it in the root directory. After running the package, the password is reset to 123456. After resetting, immediately delete the file and log on to the background to change the password! Be sure to delete this file to prevent another user from re-resetting the password.