How to configure wamp's phpmyadmin,sqlbuddy....

After installing wamp sometimes the phpmyadmin doesnt loads and tends to give many errors like port error,socket error etc

To configure wamp all you want to do is to go to the wamp directory in
C:\wamp\apps\phpmyadmin3.3.9 could be slightly different depending on your version.

open config.inc.php or conf.inc whatever you might have that depends on your version

The file looks somewhat like this
Servers configuration */
$i = 0;

/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '????????';/*Write your sql Db password if you have any*/
$cfg['Servers'][$i]['AllowNoPassword'] = true;Make sure this is tru if you have a password

/* End of servers configuration */

$cfg['DefaultLang'] = 'en-utf-8';
$cfg['ServerDefault'] = 1;
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';


/* rajk - for blobstreaming */
$cfg['Servers'][$i]['bs_garbage_threshold'] = 50;
$cfg['Servers'][$i]['bs_repository_threshold'] = '32M';
$cfg['Servers'][$i]['bs_temp_blob_timeout'] = 600;
$cfg['Servers'][$i]['bs_temp_log_threshold'] = '32M';


=================================================================================
If it still doesnt work open C:\wamp\apps\phpmyadmin3.3.9\libraries
and then open config.defautl.php, find the text that looks like this


/**
* Whether to try to connect without password
*
* @global boolean $cfg['Servers'][$i]['nopassword']
*/
$cfg['Servers'][$i]['nopassword'] = true;//make sure this is true

/**
===============================================================================

If you have installed mysql and have a password then to configure sqlbuddy for wamp
open C:\wamp\apps\sqlbuddy1.3.2 might be somewhat different depending on your version

open config.php


find this text

// MySQL
// $sbconfig['DefaultPass'] = "????? ";//provide your password here ????

// SQLite
// $sbconfig['DefaultDatabase'] = "";



if it still doesnt work open task manager point to the processes tab and check if there is any process named mysqld.exe. if it is there then select it and click on end process. and try to connect.
If it connects successfully then open the control bar , click on administrative tools ,then click on services right click on mysql open properties

Start up tab make it manual and apply thats all.

Browsers Secrets :- How to view the cache of your browser

Every thing you browse is stored in the computer memory and can be retrieved from the memory rather than downloading it again both to reduce the amount of time and the internet traffic....

Almost every browser saves documents like images,videos and other multimedia content on the system for future reference.

One can find the stuff stored by the browser just by typing about:cache in the browser address bar to view the list of files stored in the cache memory of the computer.

Command :- "about:cache" in browser address bar and hit enter...thats all