- 论坛徽章:
- 0
|
我机子上软件环境为:apache 2.2.4-2,mysql 5.0.37-1,php 5.2.1-2,phpmyadmin 2.10.0.2-1
phpmyadmin能正常连接,但浏览zoneminder的php页面时提示
- Fatal error: Call to undefined function mysql_pconnect()
复制代码
在网上查了资料,有人说php5默认不支持mysql,需要安装dll插件
我的phpinfo信息,里面确实可以看到mysql支持
- ./configure' '--with-apxs2' '--prefix=/usr' '--sysconfdir=/etc' '--with-layout=PHP' '--with-ttf' '--enable-mailparse' '--with-config-file-scan-dir=/etc' '--enable-bcmath=shared' '--enable-calendar=shared' '--enable-ftp=shared' '--enable-gd-native-ttf' '--enable-magic-quotes' '--enable-posix=shared' '--enable-session' '--enable-shared' '--enable-shmop=shared' '--enable-pdo=shared' '--enable-sqlite-utf8' '--enable-sockets=shared' '--enable-xml' '--enable-sysvsem=shared' '--enable-sysvshm=shared' '--enable-sysvmsg=shared' '--enable-track-vars' '--enable-trans-sid' '--enable-safe-mode' '--with-imap' '--with-imap-ssl' '--with-ncurses' '--with-readline' '--with-bz2=shared' '--with-curl' '--with-mime-magic' '--with-freetype-dir=/usr' '--with-gd=shared' '--enable-exif' '--with-jpeg-dir=/usr' '--enable-dba' '--without-db2' '--without-db3' '--with-inifile' '--with-flatfile' '--with-gdbm' '--with-openssl' '--with-gettext' '--with-ldap=shared' '--with-mcrypt=shared,/usr' '--with-unixODBC=shared,/usr' '--with-pdo-odbc=shared,unixODBC,/usr' '--with-mysqli=shared' '--with-mysql-sock=/tmp/mysql.sock' '--with-pdo-mysql=shared,/usr' '--with-mysql=shared,/usr' '--with-pgsql=shared' '--with-pgsql-sock=/tmp/pgsql.sock' '--with-pdo-pgsql=shared,/usr' '--with-sqlite=shared' '--with-pdo-sqlite=shared,/usr' '--with-pear=/usr/share/pear' '--with-dom' '--with-dom-xslt' '--with-xsl' '--with-png-dir=/usr' '--with-regex=php' '--with-zlib' '--enable-soap=shared' '--enable-mbstring=all' '--enable-mbregex' '--with-snmp=shared,/usr'
复制代码
我也修改了php.ini文件,加入extension=mysql.so支持,但php -m | grep mysql显示无法加载动态链接库,是否需要安装dll插件,在哪能找到它及如何安装
- [root@lgl html]# php -m | grep mysql
- PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php/extensions/php/php_mysql.dll' - /usr/lib/php/extensions/php/php_mysql.dll: cannot open shared object file: No such file or directory in Unknown on line 0
- mysql
复制代码
我不会php/mysql这些,如果问题中有什么低级错误请各位见谅 |
|