MD5 is a secure hash algorithm

MD5 is a secure hash algorithm. It takes a string as input, and produces a 128-bit number, the hash. The same string always produces the same hash, but given a hash, it is not generally possible to determine the original string. Secure hash algorithms are useful for protecting passwords and ensuring data integrity. This site […]

How to Backup MySQL Database automatically (for Linux users) 15 2 * * * root mysqldump -u root -pPASSWORD –all-databases | gzip > /mnt/disk2/database_`data ‘ %m-%d-%Y’`.sql.gz This post will show you how to backup MySQL Database automatically if you are a linux user. You can use cron to backup your MySQL database automatically.”cron” is a time-based scheduling utility in Unix/Linux operating system.

Install & Setup LAN & Worldwide Access Guide for WAMP

STEP 1: Enable Associate Port in all Firewalls In order to communicate between your computer and other computers, either within your LAN or worldwide, you need to enable HTTP port in all firewalls. Different people use different firewalls and each firewall has its own way to enable port, so here I show the most basic […]

Reset root password on MySQL Server

[root@host root]# mysql Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 1 to server version: 3.23.41 Type ‘help;’ or ‘h’ for help. Type ‘c’ to clear the buffer. mysql> USE mysql Reading table information for completion of table and c olumn names You can turn off this […]

MySQL – Query Browser Connecting

To be able to remotely access your MySQL databases, you have to allow access to the databases from your computer. To do so, visit whatismyip.com, and copy your IP address. Then, log in to cPanel, go to MySQL Databases and add your IP to the list of allowed hosts. The details to use for connecting […]