Recent blog posts
- Create a job portal website using Drupal (Part - I)
- Is Multitasking Important?
- For all Gujjus !!! આપણે ગુજરાતીઓ..... Part - II
- Chance to meet Sachin Tendulkar – Participate in "Meet The Master" contest
- Get your photo in Google search result!
- Find who is invisible on yahoo messenger!
- Get free website for a year (with free .in domain)
- SMSTorta – Birthday Reminder on SMS
- How to get old facebook chat
- Dream comes true for billion+ Indians
Recent comments
- Proud to be a Gujju4 weeks 4 days ago
- Yes, you can do that using20 weeks 11 hours ago
- Is it also possible to create20 weeks 1 day ago
- 2 years later and you are24 weeks 19 hours ago
- I am a SPIDIGO customer and I31 weeks 2 days ago
Sponsors
Browse Keywords
drupal
Drupal development
e-mail collection
funny
Google
gujarati
How To
indian premier league
inspirational
Invisible yahoo detector
iphone
iphone 3gs
iphone app store
IPL
ipl3
ipl3 poll
ipl3 winner
IPL 2012
Jago Grahak Jago
job portal development
job portal in drupal
job post
joke
Joomla
Joomla development
mad cricket fans
Meet Sachin Tendulkar
Meet the master
men in blue
Microsoft
Microsoft oPhone
mittal
Mother Teresa
Motivational
multiple database server access
multitasking
mysql
new facebook chat bar
office 2007
old facebook chat
POLL
Review
sachin
sachin tendulkar
solar house
spidigo review
Stupid problems
success keys
team india
Theodore Roosevelt
Thomas Jefferson
tips
tips for iphone
we gujarati
work habit
world champion
world cup final celebration
Yahoo
Yahoo detect invisible
Yahoo messenger

Hi
Hi Mittal,
I'm somehow unable to make it work, will you be able to help me with it.
I have 2 servers App Server on which I have PHPMyadmin & DB on which I have My sql. I also Have MySql installed on my machine. Somehow even after adding the information for both MuSql i'm unable to connect. It always asks for credentials and accepts my local machine details.
It'll be great if you can help.
here is the code...
<?php
/* $Id: config.sample.inc.php 9675 2006-11-03 09:06:06Z nijel $ */
// vim: expandtab sw=4 ts=4 sts=4:
/**
* phpMyAdmin sample configuration, you can use it as base for
* manual configuration. For easier setup you can use scripts/setup.php
*
* All directives are explained in Documentation.html and on phpMyAdmin
* wiki <http://wiki.cihar.com>.
*/
/*
* This is needed for cookie based authentication to encrypt password in
* cookie
*/
$cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
/*
* Servers configuration
*/
$i = 0;
$cfg['ServerDefault'] = 0;
/*
* First server
*/
$i++;
$cfg['Servers'][$i]['host'] = 'IP here';
$cfg['Servers'][$i]['port'] = ''; // MySQL port - leave blank for default port
$cfg['Servers'][$i]['socket'] = ''; // Path to the socket - leave blank for default socket
$cfg['Servers'][$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfg['Servers'][$i]['extension'] = 'mysql'; // The php MySQL extension to use ('mysql' or 'mysqli')
$cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection (requires PHP >= 4.3.0)
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'password1';
/*
* Second server
*/
$i++;
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = ''; // MySQL port - leave blank for default port
$cfg['Servers'][$i]['socket'] = ''; // Path to the socket - leave blank for default socket
$cfg['Servers'][$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfg['Servers'][$i]['extension'] = 'mysql'; // The php MySQL extension to use ('mysql' or 'mysqli')
$cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection (requires PHP >= 4.3.0)
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'password2';
/*
* End of servers configuration
*/
/*
* Directories for saving/loading files from server
*/
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
?>