How to reset the mysql root password from mysql safe?

Steps to reset mysql root password from mysql safe: # service mysqld stop # mysqld_safe –skip-grant-tables & That should start up mysql without the need for a root password. Once in, type >use mysql >UPDATE user SET password=PASSWORD(‘newpass’) WHERE user=’root’; >FLUSH PRIVILEGES; >quit That will reset the root password for you. Kill all old processes […]

See More

WordPress .htaccess basic code!

The following permalink rewrite code should be included in your .htaccess file: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress

See More

Email configuration steps for Samsung Gallaxy!

Users can easily configure their email accounts with the Samsung Galaxy with the help of below steps: STEP 1 : Main Screen >> email STEP 2 : Setup Email (Manual) ENTER : “Your login username”. (Usually it is your email address) Enter :- “Your account password.”. STEP 3 : Account type >> “POP3 account”. STEP […]

See More