|
发表于 2007-5-14 05:07:20
|
显示全部楼层
检查你的php.ini, 看看是否有下面的自动加载mysql.so的行:
我的是在这里:
$ locate php.ini
/etc/php4/apache2/php.ini
;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
;;;;;;;;;;;;;;;;;;;;;;
;
; If you wish to have an extension loaded automatically, use the following
; syntax:
;
; extension=modulename.extension
;
; For example, on Windows:
;
; extension=msql.dll
;
; ... or under UNIX:
;
; extension=msql.so
;
; Note that it should be the name of the module only; no directory information
; needs to go here. Specify the location of the extension with the
; extension_dir directive above.
; Example lines:
extension=mysql.so
;extension=gd.so |
|