Blog Posts - Input Statement
How to Reset Joomla admin Password from MySQL command line

It is very common thing for clients having Joomla based websites to forget their password. It is possible to reset password from jos_users table using PhpMyadmin. But it is much # mysql -u root -p Enter password: Welcome to the MySQL monitor. C...
by Walking in Light with Christ - Computers Faith, Diary on Jun 19, 2013
How to change MySQL server root password

I had to change my mysql root password for one of the servers since during the install I mispasted the password in the MySQL password prompt I needed the pwd to be changed. Here is how I changed it to my desired one: linux:~# /usr/bin/mysqladmin -u r...
by Walking in Light with Christ - Computers Faith, Diary on Jul 29, 2011
How to change MySQL server root password

I had to change my mysql root password for one of the servers since during the install I mispasted the password in the MySQL password prompt I needed the pwd to be changed. Here is how I changed it to my desired one: linux:~# /usr/bin/mysqladmin -u r...
by Walking in Light with Christ - Computers Faith, Diary on Jul 29, 2011
How to reset a forgotten WORDPRESS blog admin password (via MySQL)

My sister has forgotten the administrator account for her wordpress blog as she did not blogged for a while.I decided to help her and reset the WORDPRESS blog password to another one.The easiest way of course in normal circumstances is to use wordpre...
by Walking in Light with Christ - Computers Faith, Diary on Jul 24, 2011
How to reset a forgotten WORDPRESS blog admin password (via MySQL)

My sister has forgotten the administrator account for her wordpress blog as she did not blogged for a while.I decided to help her and reset the WORDPRESS blog password to another one.The easiest way of course in normal circumstances is to use wordpre...
by Walking in Light with Christ - Computers Faith, Diary on Jul 24, 2011
Input Statement on C++

a. CIN( ) In C + +, cin command is used to input a value from a input device (keyboard) for further processed by the program.Syntax is: cin>> variable;example:court <<"Enter a number:"; cin>> bil; court <<"You entered nu...
by learning c++ and algorithm on May 18, 2011