bmjp007 发表于 2005 年 11 月 29 日 20:36:54

JG有人手动安装过APACHE1.3.3 PHP5.1.0   MYSQL5.0.16   p

有的进下
有点问题想请教下

iyaner 发表于 2005 年 11 月 29 日 20:38:49

PM vbvs

wskyak 发表于 2005 年 11 月 29 日 20:40:22


微米的最新版就是这个啊!

ashun 发表于 2005 年 11 月 29 日 20:40:46

虾米问题??

bmjp007 发表于 2005 年 11 月 29 日 20:40:48

....
在N多地方请教过
就没一个人愿意说下
大多都是全自动配套安装的

bmjp007 发表于 2005 年 11 月 29 日 20:41:26

配置完后用phpMyAdmin试图连接MYSQL登陆管理,可是出现错误提示:"无法装入MySQL扩展,请检查PHP的配置。文档
文档内容为:
I receive the error "cannot load MySQL extension, please check PHP Configuration".
To connect to a MySQL server, PHP needs a set of MySQL functions called "MySQL extension". This extension may be part of the PHP distribution (compiled-in), otherwise it needs to be loaded dynamically. Its name is probably mysql.so or php_mysql.dll. phpMyAdmin tried to load the extension but failed.

Usually, the problem is solved by installing a software package called "PHP-MySQL" or something similar.

大致就是无法装载MYSQL扩展
还是我已经设置了系统环境变量了

bmjp007 发表于 2005 年 11 月 29 日 20:41:55

我把我的PHP配置列出:
这是一部分大致是SQL配置的部分:
; Directory in which the loadable extensions (modules) reside.
extension_dir = "C:\php\ext"

; Whether or not to enable the dl() function.The dl() function does NOT work
; properly in multithreaded servers, such as IIS or Zeus, and is automatically
; disabled on them.
enable_dl = On

; cgi.force_redirect is necessary to provide security running PHP as a CGI under
; most web servers.Left undefined, PHP turns this on by default.You can
; turn it off here AT YOUR OWN RISK
; **You CAN safely turn this off for IIS, in fact, you MUST.**
; cgi.force_redirect = 1

; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
; every request.
; cgi.nph = 1

; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
; will look for to know it is OK to continue execution.Setting this variable MAY
; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
; cgi.redirect_status_env = ;

; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
; security tokens of the calling client.This allows IIS to define the
; security context that the request runs under.mod_fastcgi under Apache
; does not currently support this feature (03/17/2002)
; Set to 1 if running under IIS.Default is zero.
; fastcgi.impersonate = 1;

; Disable logging through FastCGI connection
; fastcgi.log = 0

; cgi.rfc2616_headers configuration option tells PHP what type of headers to
; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
; is supported by Apache. When this option is set to 1 PHP will send
; RFC2616 compliant header.
; Default is zero.
;cgi.rfc2616_headers = 0


;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;

; Whether to allow HTTP file uploads.
file_uploads = On

; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
;upload_tmp_dir =

; Maximum allowed size for uploaded files.
upload_max_filesize = 2M


;;;;;;;;;;;;;;;;;;
; Fopen wrappers ;
;;;;;;;;;;;;;;;;;;

; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
allow_url_fopen = On

; Define the anonymous ftp password (your email address)
;from="john@doe.com"

; Define the User-Agent string
; user_agent="PHP"

; Default timeout for socket based streams (seconds)
default_socket_timeout = 60

; If your scripts have to deal with files from Macintosh systems,
; or you are running on a Mac and need to deal with files from
; unix or win32 systems, setting this flag will cause PHP to
; automatically detect the EOL character in those files so that
; fgets() and file() will work regardless of the source of the file.
; auto_detect_line_endings = Off


;;;;;;;;;;;;;;;;;;;;;;
; 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.


; Windows Extensions
; Note that ODBC support is built in, so no dll is needed for it.
; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
; extension folders as well as the separate PECL DLL download (PHP 5).
; Be sure to appropriately set the extension_dir directive.

;extension=php_mbstring.dll
;extension=php_bz2.dll
;extension=php_curl.dll
;extension=php_dba.dll
;extension=php_dbase.dll
;extension=php_exif.dll
;extension=php_fdf.dll
;extension=php_filepro.dll
;extension=php_gd2.dll
;extension=php_gettext.dll
;extension=php_ifx.dll
;extension=php_imap.dll
;extension=php_interbase.dll
;extension=php_ldap.dll
;extension=php_mcrypt.dll
;extension=php_mhash.dll
;extension=php_mime_magic.dll
;extension=php_ming.dll
;extension=php_mssql.dll
;extension=php_msql.dll
extension=php_mysql.dll
;extension=php_oci8.dll
;extension=php_openssl.dll
;extension=php_oracle.dll
;extension=php_pgsql.dll
;extension=php_shmop.dll
;extension=php_snmp.dll
;extension=php_sockets.dll
;extension=php_sqlite.dll
;extension=php_sybase_ct.dll
;extension=php_tidy.dll
;extension=php_xmlrpc.dll
;extension=php_xsl.dll
extension=libmysql.dll


;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;


; Defines the default timezone used by the date functions
;date.timezone =


; Whether or not to define the various syslog variables (e.g. $LOG_PID,
; $LOG_CRON, etc.).Turning it off is a good idea performance-wise.In
; runtime, you can define these variables by calling define_syslog_variables().
define_syslog_variables= Off


; For Win32 only.
SMTP = localhost
smtp_port = 25

; For Win32 only.
;sendmail_from = me@example.com

; For Unix only.You may supply arguments as well (default: "sendmail -t -i").
;sendmail_path =

; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters =


sql.safe_mode = Off


;odbc.default_db  =Not yet implemented
;odbc.default_user=Not yet implemented
;odbc.default_pw  =Not yet implemented

; Allow or prevent persistent links.
odbc.allow_persistent = On

; Check that a connection is still valid before reuse.
odbc.check_persistent = On

; Maximum number of persistent links.-1 means no limit.
odbc.max_persistent = -1

; Maximum number of links (persistent + non-persistent).-1 means no limit.
odbc.max_links = -1

; Handling of LONG fields.Returns number of bytes to variables.0 means
; passthru.
odbc.defaultlrl = 4096

; Handling of binary data.0 means passthru, 1 return as is, 2 convert to char.
; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
; of uodbc.defaultlrl and uodbc.defaultbinmode
odbc.defaultbinmode = 1


; Allow or prevent persistent links.
mysql.allow_persistent = On

; Maximum number of persistent links.-1 means no limit.
mysql.max_persistent = -1

; Maximum number of links (persistent + non-persistent).-1 means no limit.
mysql.max_links = -1

; Default port number for mysql_connect().If unset, mysql_connect() will use
; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
; compile-time value defined MYSQL_PORT (in that order).Win32 will only look
; at MYSQL_PORT.
mysql.default_port =

; Default socket name for local MySQL connects.If empty, uses the built-in
; MySQL defaults.
mysql.default_socket =

; Default host for mysql_connect() (doesn't apply in safe mode).
mysql.default_host =

; Default user for mysql_connect() (doesn't apply in safe mode).
mysql.default_user =

; Default password for mysql_connect() (doesn't apply in safe mode).
; Note that this is generally a *bad* idea to store passwords in this file.
; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
; and reveal this password!And of course, any users with read access to this
; file will be able to reveal the password as well.
mysql.default_password =

; Maximum time (in secondes) for connect timeout. -1 means no limit
mysql.connect_timeout = 60

; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
; SQL-Errors will be displayed.
mysql.trace_mode = Off

bmjp007 发表于 2005 年 11 月 29 日 20:42:25

MYSQL的附加模块libmysql.dll和php_mysql.dll我都放在php目录下的ext目录下了

xchange 发表于 2005 年 11 月 29 日 20:45:36

放到C:\WINDOWS\system32下试试。

bmjp007 发表于 2005 年 11 月 29 日 20:46:26

知道的请进来告知下
要是有安装过的也可以
可以张贴下你的PHP.ini设置
还有PHPMYADMIN版本什么的,我对照下
页: [1] 2 3
查看完整版本: JG有人手动安装过APACHE1.3.3 PHP5.1.0   MYSQL5.0.16   p