lordcracker@alien.topOPBtoSelf-Hosted Main@selfhosted.forum•Wallos: Open-Source Personal Subscription TrackerEnglish
1·
1 year agoHi. It should do TLS by default. You should set the TLS port.
Hi. It should do TLS by default. You should set the TLS port.
Thank you. Happy you liked it.
It now works on ARM and ARM64. Regards.
Thank you. Not exactly sure what you mean, but in the settings you can add categories and maybe with that you can have more or less what you want?
Create a file resetpw.php in endpoints/cronjobs/
Paste the following code:
prepare($sql);
$hashedPassword = password_hash($password, PASSWORD_DEFAULT);
$stmt->bindParam(':password', $hashedPassword, SQLITE3_TEXT);
$result = $stmt->execute();
if ($result) {
echo "Password updated successfully.";
} else {
echo "Error updating password.";
}
Change mynewpassword to your desired password. If your environment is different, please set $webPath manually.
Then run on your browser: domain:port/endpoints/cronjobs/resetpw.php
Finally, delete the resetpw.php file so it can’t be unintentionally triggered again.I haven’t tested the code, but it should work.