Steve Buehler wrote:
At 08:15 AM 3/13/2005, you wrote:
Hi All,
have installed into /var/www/html the dir phpMyAdmin-2.6.1-pl3 and changed the url path like below, but, when typing localhost/phpMyAdmin-2.6.1-pl3/index.php, I get the following,
cannot load mysql extension,
please check PHP Configuration
Documentation <http://localhost/phpMyAdmin-2.6.1-pl3/Documentation.html#faqmysql>
/** * Your phpMyAdmin url * * Complete the variable below with the full url ie http://localhost/phpMyAdmin-2.6.1-pl3/ * What am I mising.? Cheers.
This probably isn't the problem in itself, but I thought I might share this with you. But here is how mine is setup:
$cfg['PmaAbsoluteUri'] = 'http://'.$_SERVER["HTTP_HOST"].'/phpmyadmin/';
That just assures me that I can use the IP address or domain name without it giving me a problem and I can also move the directory to another server without having to change this line each time. Where mine has "/phpmyadmin/", you will of course need to change that to the directory it is in.
Steve
Hi All,
Steve, below is how It looks after your suggestions, but, still with the same errors. Cheers.
Mark Sargent.
/**
* Your phpMyAdmin url
*
* Complete the variable below with the full url ie
* http://localhost/phpMyAdmin-2.6.1-pl3/
*
* It must contain characters that are valid for a URL, and the path is
* case sensitive on some Web servers, for example Unix-based servers.
*
* In most cases you can leave this variable empty, as the correct value
* will be detected automatically. However, we recommend that you do
* test to see that the auto-detection code works in your system. A good
* test is to browse a table, then edit a row and save it. There will be
* an error message if phpMyAdmin cannot auto-detect the correct value.
*
* If the auto-detection code does work properly, you can set to TRUE the
* $cfg['PmaAbsoluteUri_DisableWarning'] variable below.
*/
$cfg['PmaAbsoluteUri'] = 'http://'.$_SERVER["HTTP_HOST"].'/phpMyAdmin-2.6.1-pl3/';
/**
* Disable the default warning about $cfg['PmaAbsoluteUri'] not being set
* You should use this if and ONLY if the PmaAbsoluteUri auto-detection
* works perfectly.
*/
$cfg['PmaAbsoluteUri_DisableWarning'] = FALSE;
-- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]