我安装了Apache并添加了PHP,而不是安装了MySql,但PHPMYADMIN不能正常工作?

时间:2010-02-19 20:43:12

标签: php mysql phpmyadmin

我正在使用XAMP用于Windows,但MySql出现了很多问题,因此将其卸载并安装Apache Web Server。我将Apache连接到PHP,它工作正常。我再次安装了MySql,工作正常。

现在我无法让MySqlPHPMyAdmin合作。我没有测试PHP以查看它是否适用于MySql而没有PHPMyAdmin

我的PHPMYADMIN config.inc文件:

<?php
/* vim: set 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 setup/
 *
 * All directives are explained in Documentation.html and on phpMyAdmin
 * wiki <http://wiki.phpmyadmin.net>.
 *
 * @version $Id: config.sample.inc.php 13111 2009-11-09 15:02:21Z lem9 $
 * @package phpMyAdmin
 */

/*
 * 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;

/*
 * First server
 */
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysqli if your server has it */
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = true;

/* 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';

/* User for advanced features */
// $cfg['Servers'][$i]['controluser'] = 'pma';
// $cfg['Servers'][$i]['controlpass'] = 'pmapass';
/* Advanced phpMyAdmin features */
// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
// $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
// $cfg['Servers'][$i]['relation'] = 'pma_relation';
// $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
// $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
// $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
// $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
// $cfg['Servers'][$i]['history'] = 'pma_history';
// $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
/* Contrib / Swekey authentication */
// $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';

/*
 * End of servers configuration
 */

 /*
  * Directories for saving/loading files from server
  */
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';

?>

$cfg['blowfish_secret'] = '***********'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */的行并没有真正说出来,我只是不想分享它。它只包含字母。

PHP PHP.INI文件:

我太大了,无法穿上这里。要查看链接: http://ericlounge.host22.com/000/stack/php.ini

顺便说一句:我使用的是Windows 7

编辑:抱歉信息不足。我匆匆忙忙。我不再了:

错误说: 无法加载mysql扩展。请检查您的PHP配置。 - 文件

我的PHPINFO PAGE没有说明MySql,但我可能错过了它。我把源放到一个页面。请点击以下链接: http://ericlounge.host22.com/000/stack/phpinfo.html

我做了pdjota所说的但是我得到了错误:

致命错误:在第2行的C:\ Program Files \ Apache Software Foundation \ Apache2.2 \ htdocs \ mysqltest.php中调用未定义的函数mysql_connect()

2 个答案:

答案 0 :(得分:0)

创建仅包含

的.php文件
<?php
phpinfo();
?>

从浏览器访问它,看看php是否配置了mysql支持。

phpinfo的输出应该有一个MySQL部分, 这是一个例子,你应该有类似的mysql信息 http://74.125.47.132/search?q=cache:Pto_DJIncV8J:www.entropy.ch/software/MacOSX/php/test.php+phpinfo&cd=6&hl=en&ct=clnk&gl=us&client=firefox-a

答案 1 :(得分:0)

在Windows中,这意味着PHP无法加载正确的DLL。

  

致命错误:调用未定义   函数mysql_connect()在C:\ Program中   Files \ Apache软件   基金会\ APACHE2.2 \ htdocs中\ mysqltest.php   在第2行

在PHPInfo中,extension_dir设置为C:\ php5 似乎该目录中缺少php_mysql.dll。在您的安装中查找并复制到c:\ php5或更改您的扩展目录。

For more info you ought to check the manual

嗨,没有实际错误很难分辨。 在你的php.ini中 延长=激活php_mysql.dll 已设置,所以可能没问题。 检查运行为MindStalker说

   phpinfo();

查看扩展名是否实际加载,然后检查mysql连接

  $link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
  if (!$link) {
       die('Could not connect: ' . mysql_error());
   }else
        echo 'Connected successfully';
   mysql_close($link);