-
Posts
28 -
Joined
-
Last visited
-
Days Won
2 -
Donations
40.00 GBP
Dallas last won the day on October 8 2025
Dallas had the most liked content!
About Dallas

- Birthday March 1
Core Infomation
-
Core
Two
Recent Profile Visitors
2297 profile views
Dallas's Achievements
Member (2/3)
3
Reputation
-
RealMD Crashing MaNGOS Zero pre-built
Dallas replied to Brandon Caston's topic in Peer to Peer Technical Support
You have it configured wrong. Check your realmd database tables and adjust as needed. -
The main complaint that no one shares... I'll share. WORDPRESS INSTALL. Now you can run a CMS that isn't homemade and you get the benefits of automatic updates, security, etc. Okay. Gravity Forms with GravityWP addon works and semi-secures your registration. (I wish the devs would bring the SHA1 to a better standard. This is the main reason for exposed Mangos servers) Expensive, but viable. Plugin: https://gravitywp.com/add-on/entry-to-database/ Use FREE codesnippets WordPress plugin (NO NEED FOR PRO VERSION) to have easy PHP entry OR put in your WordPress functions.php: // Target a specific form (e.g., Form ID 5) Edit gform_pre_submission_* with your form number add_action( 'gform_pre_submission_1', 'encrypt_password_on_submit' ); /** * Encrypts the password field with SHA1 before submission. * * @param array $form The form object. */ function encrypt_password_on_submit( $form ) { // Replace '1' with your username field ID and '2' with your password field ID. // Replace '3' with the ID of the hidden field where you want to store the SHA1 hash. $username_field_id = 11; $password_field_id = 13; $sha1_output_field_id = 8; // Check if the required fields exist and have values. if ( isset( $_POST['input_' . $username_field_id] ) && isset( $_POST['input_' . $password_field_id] ) ) { $username = $_POST['input_' . $username_field_id]; $password = $_POST['input_' . $password_field_id]; // Perform the SHA1 encryption as specified. $sha1_value = sha1( strtoupper( $username ) . ':' . strtoupper( $password ) ); // Update the value of the hidden field with the new SHA1 hash. $_POST['input_' . $sha1_output_field_id] = $sha1_value; } } The comments tell you what to edit. Build a form and follow the GravityWP instructions to map. (Ideally local machine to local machine) Create a local machine log in in MariaDB or MySQL to let the internal processes authorize. Harden all your installs with SSL etc.. fail2ban..UFW..etc.. follow best practices. Create a form in Gravity and add a hidden field (admin only) to store the SHA1 after conversion. Turn on Gravity Forms ReCaptcha or Honeypot. Password field point mappimng to hidden field with SHA1 Style your form Done. Any questions I will try to answer. This is not the end all solution, but it is more secure than exposed MySQL php config files.
-
- 1
-
-
The main complaint that no one shares... I'll share. WORDPRESS INSTALL. Now you can run a CMS that isn't homemade and you get the benefits of automatic updates, security, etc. Okay. Gravity Forms with GravityWP addon works and semi-secures your registration. (I wish the devs would bring the SHA1 to a better standard. This is the main reason for exposed Mangos servers) Expensive, but viable. Plugin: https://gravitywp.com/add-on/entry-to-database/ Use FREE codesnippets WordPress plugin (NO NEED FOR PRO VERSION) to have easy PHP entry OR put in your WordPress functions.php: // Target a specific form (e.g., Form ID 5) Edit gform_pre_submission_* with your form number add_action( 'gform_pre_submission_1', 'encrypt_password_on_submit' ); /** * Encrypts the password field with SHA1 before submission. * * @param array $form The form object. */ function encrypt_password_on_submit( $form ) { // Replace '1' with your username field ID and '2' with your password field ID. // Replace '3' with the ID of the hidden field where you want to store the SHA1 hash. $username_field_id = 11; $password_field_id = 13; $sha1_output_field_id = 8; // Check if the required fields exist and have values. if ( isset( $_POST['input_' . $username_field_id] ) && isset( $_POST['input_' . $password_field_id] ) ) { $username = $_POST['input_' . $username_field_id]; $password = $_POST['input_' . $password_field_id]; // Perform the SHA1 encryption as specified. $sha1_value = sha1( strtoupper( $username ) . ':' . strtoupper( $password ) ); // Update the value of the hidden field with the new SHA1 hash. $_POST['input_' . $sha1_output_field_id] = $sha1_value; } } The comments tell you what to edit. Build a form and follow the GravityWP instructions to map. (Ideally local machine to local machine) Create a local machine log in in MariaDB or MySQL to let the internal processes authorize. Harden all your installs with SSL etc.. fail2ban..UFW..etc.. follow best practices. Create a form in Gravity and add a hidden field (admin only) to store the SHA1 after conversion. Turn on Gravity Forms ReCaptcha or Honeypot. Password field point mappimng to hidden field with SHA1 Style your form Done. Any questions I will try to answer. This is not the end all solution, but it is more secure than exposed MySQL php config files.
-
Dallas changed their profile photo
-
Wanna be real hardcore? Destroy all characters on the account after death. That way they can't backtrack through map changes to stay alive. Just write a small script.
-
How is the vanilla 1.12 client binary so small?
Dallas replied to bradosia's topic in Community Projects
The executable is just a frame. The resources do all the work. The server feeds the quests and such along with scripting and positions and routes of its world occupants. -
other Can mangos (or really any core) work on a armhf cpu?
Dallas replied to onixiya's topic in Peer to Peer Technical Support
Oh, I was just commenting on the Raspberry Pi stuff. I've been thinking of giving Mangos another shot on my Raspberry Pi 4 8 Gig since I no longer have my Edge server. -
other Can mangos (or really any core) work on a armhf cpu?
Dallas replied to onixiya's topic in Peer to Peer Technical Support
Now that Raspberry Pi 4 is out. I wonder how this is going? -
I had to stop using bots because it would spawn them endlessly. No one fixes this since it's third party and they dropped support. VERY SAD.
-
mangos zero DB TO RUN ON LATEST MARIA/MYSQL VERSION
Dallas commented on Dallas's bug in Enhancement Requests (Zero)
This is AWESOME thanks!
Contact Us
To contact us
click here
You can also email us at [email protected]
Privacy Policy | Terms & Conditions

You can also email us at [email protected]
Privacy Policy | Terms & Conditions
Copyright © getMaNGOS. All rights Reserved.
This website is in no way associated with or endorsed by Blizzard Entertainment®
This website is in no way associated with or endorsed by Blizzard Entertainment®