php开发环境配置记录_第1页
php开发环境配置记录_第2页
php开发环境配置记录_第3页
php开发环境配置记录_第4页
php开发环境配置记录_第5页
已阅读5页,还剩10页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

本文格式为Word版,下载可任意编辑——php开发环境配置记录php开发环境配置记录

一般都是自己配置环境,为了便当在异地快速配置,总结一下,备忘.假设大家感觉麻烦可以一些php运行环境软件。例如phpnow等。就跟随我一起去了解下吧,想了解更多相关信息请持续关注我们

复制代码代码如下:

httpd.exe-kinstall-napache2.2.15

httpd.exe-kstart-napache2.2.15

复制代码代码如下:

httpd.exe-kstop-napache2.2.15

httpd.exe-kuninstall-napache2.2.15

复制代码代码如下:

ServerRootD:/APM/Apache2.2.15

Listen80

#压缩发送给客户端的内容gzip支持

#LoadModuledeflate_modulemodules/mod_deflate.so

#LoadModulecgi_modulemodules/mod_cgi.so

#fastcgi

LoadModulefcgid_modulemodules/mod_fcgid.so

LoadModulerewrite_modulemodules/mod_rewrite.so

DocumentRootD:/APM/Apache2.2.15/htdocs

#支持php脚本

#fastcgi模式将此行解释

#直接在虚拟主机中可配置每个站点使用不同版本的'php或者不同的cgi

#Includeconf/extra/httpd-php.conf

#Fancydirectorylistings绮丽的目次清单

Includeconf/extra/httpd-autoindex.conf

#Virtualhosts虚拟主机

#Includeconf/extra/httpd-vhosts.conf

#fastcgi模式虚拟主机

Includeconf/extra/httpd-vhosts-fcgid.conf

#Variousdefaultsettings页脚显示版本信息AccessFileName.htaccess

Includeconf/extra/httpd-default.conf

复制代码代码如下:

#

#查找/APM/php-5.2.12-Win32替换

#

SetEnvPHPRC/APM/php-5.2.12-Win32

SetEnvTMP/tmp

#UnsetEnvPERL5LIB

#加载dll省去在PATH中添加php路径

#LoadFile/APM/php-5.2.12-Win32/libpq.dll

LoadFile/APM/php-5.2.12-Win32/libmysql.dll

LoadFile/APM/php-5.2.12-Win32/libmcrypt.dll

LoadFile/APM/php-5.2.12-Win32/libmhash.dll

LoadFile/APM/php-5.2.12-Win32/libeay32.dll

LoadFile/APM/php-5.2.12-Win32/ssleay32.dll

#

#PHP-Modulesetup

#

LoadFile/APM/php-5.2.12-Win32/php5ts.dll

LoadModulephp5_module/APM/php-5.2.12-Win32/php5apache2_2.dll

SetHandlerapplication/x-httpd-php

SetHandlerapplication/x-httpd-php-source

#Loadphp.iniFileDir

PHPIniDir/APM/php-5.2.12-Win32

AddTypetext/html.php.phps

复制代码代码如下:

NameVirtualHost*:80

#文档目次

DocumentRoot/vhosts/localhost

#名字如.

ServerNamelocalhost

#别名如

ServerAlias

#错误日志文件

ErrorLoglogs/dummy-host.localhost-error_log

#目次访问规矩

OptionsIndexesFollowSymLinks

AllowOverrideAll

Orderallow,deny

Allowfromall

#目次索引文件

DirectoryIndexindex.htmlindex.htmindex.php

[html]

[code]

#FcgidInitialEnvPHPRC/APM/php5210

#FcgidInitialEnvPATH/APM/php5210;C:/WINDOWS/system32;C:/WINDOWS;C:/WINDOWS/System32/Wbem;

#FcgidInitialEnvSystemRootC:/Windows

php开发环境配置记录

#FcgidInitialEnvSystemDriveC:

#FcgidInitialEnvTEMPC:/WINDOWS/Temp

#FcgidInitialEnvTMPC:/WINDOWS/Temp

#FcgidInitialEnvwindirC:/WINDOWS

FcgidIOTimeout64

FcgidConnectTimeout16

FcgidMaxRequestsPerProcess500

NameVirtualHost*:80

DocumentRoot/vhosts/localhost

ServerNamelocalhost

ServerAlias

ErrorLoglogs/dummy-host.localhost-error_log

OptionsIndexesFollowSymLinksExecCGI

#Options+ExecCGI

AllowOverrideAll

#AddHandlerfcgid-script.php

#FCGIWrapper/APM/php5210/php-cgi.exe.php

#

AddHandlerfcgid-script.php

FcgidWrapper/APM/php-5.2.13-nts-Win32/php-cgi.exe.php

#FcgidWrapper/APM/php-5.3.2-nts-Win32-VC6-x86/php-cgi.exe.php

#

Orderallow,deny

Allowfromall

DirectoryIndexindex.htmlindex.htmindex.php

复制代码代码如下:

mysqld-nt.exe--installMySQL5.0.45-community-nt--defaults-file=D:\APM\mysql5.0.45\my.ini

netstartMySQL5.0.45-community-nt

复制代码代码如下:

netstopMySQL5.0.45-community-nt

mysqld-nt.exe--removeMySQL5.0.45-community-nt

复制代码代码如下:

[mysqld]

basedir=D:\APM\mysql5.0.45\

datadir=D:\APM\mysql5.0.45\Data\

tmpdir=D:\APM\mysql5.0.45\tmp\

#log=D:\APM\mysql5.0.45\tmp\mysql.log

default-character-set=utf8

port=3306

interactive_timeout=5

wait_timeout=5

skip-locking

skip-innodb

skip-bdb

ft_min_word_len=1

[mysqld]

port=3306

basedir=D:/mysql/

datadir=D:/mysql/Data/

tmpdir=d:/mysql/tmp/

default-character-set=utf8

default-storage-engine=MYISAM

skip-bdb

skip-innodb

skip-locking

key_buffer=16M

max_allowed_packet=1M

table_cache=128

thread_cache=8

join_buffer_size=512K

sort_buffer=512K

record_buffer=512K

php开发环境配置记录

max_connections=500

wait_timeout=120

interactive_timeout=120

max_connect_errors=3000

long_query_time=1

max_heap_table_size=16M

tmp_table_size=8M

thread_concurrency=8

myisam_sort_buffer_size=8M

myisam_sort_buffer_size=4M

low_priority_updates=1

ft_min_word_len=1

复制代码代码如下:

output_buffering=On

disable_functions=system,passthru,shell_exec,exec,popen,proc_open

enable_dl=Off

upload_tmp_dir=D:/tmp/uploadtemp/

session.save_path=d:/tmp/sessiondata/

date.timezone=Etc/GMT-8;表示的是GMT+8

mbstring.language=Neutral;SetdefaultlanguagetoNeutralUTF-8default

ernal_encoding=UTF-8;SetinternalencodingtoUTF-8

cgi.force_redirect=0

cgi.fix_pathinfo=1

fastcgi.impersonate=1

[eaccelerator]

;zend_extension=/APM/ext/eAccelerator_v0_9_6_for_v5_2_13-VC6/eAccelerator.dll

;zend_extension=/APM/ext/eAccelerator_v1_0_svn412_for_v5_2_13-VC6/eAccelerator.dll

eaccelerator.shm_size=16

eaccelerator.cache_dir=/tmp/eaccelerator

eaccelerator.enable=1

eaccelerator.optimizer=1

eaccelerator.check_mtime=1

eaccelerator.debug=0

;eaccelerator.log_file=/var/log/httpd/eaccelerator_log

eaccelerator.filter=

eaccelerator.shm_max=0

eaccelerator.shm_ttl=300

eaccelerator.shm_prune_period=0

eaccelerator.shm_only=0

press=1

press_level=9

[Zend]

zend_optimizer.optimization_level=15

zend_optimizer.encoder_loader=0

;zend_extension_ts=/APM/ext/ZendOptimizer-3.3.0/lib/Optimizer-3.3.0/php-5.2.x/ZendOptimizer.dll

;zend_extension=/APM/ext/ZendOptimizer_nts.dll

;zend_extension=/APM/ext/ZendOptimizerPlus.dll

;下面是使用ZendExtensionManager.dll的参考配置

;zend_extension_manager.optimizer_ts=/APM/Zend/ZendOptimizer-3.3.0/lib/Optimizer-3.3.0

;zend_extension_ts=/APM/Zend/ZendOptimizer-3.3.0/lib/ZendExtensionManager.dll

;zend_extension_manager.debug_server_ts=/APM/Zend/ZendOptimizer-3.3.0/lib/ZendDebugger-5.2.13-cygwin_nt-i386

;zend_debugger.expose_remotely=always

;zend_debugger.allow_hosts=/32

;zend_debugger.allow_tunnel=/32

[ZendDebugger]

;放到后边可以和zend_optimizer同时加载

;zend_extension_ts=/APM/ext/ZendDebugger-5.2.15RC1-cygwin_nt-i386/php-5.2.x/ZendDebugger.dll

[xcache-common]

;zend_extension=D:/APM/ext/XCache-1.3.0-php-5.2.10-nts-Win32-VC6-x86/php_xcache.dll

;extension=php_xcache.dll

[xcache.admin]

xcache.admin.enable_auth=Off

xcache.admin.user=mOo

;xcache.admin.pass=md5$您的密码

xcache.admin.pass=

[xcache]

;这里的多数选项仅在ini里可以修改,这里列出的都是默认值,除非另外说明

;selectlowlevelshm/allocatorschemeimplemenation

xcache.shm_scheme=mmap

php开发环境配置记录

;禁用:xcache.size=0

;启用:xcache.size=64M之类任意0的值同时请留神您的系统mmap上限

xcache.size=0

;建议设置为cpu数cat/proc/cpuinfo|grep-cprocessor

xcache.count=1

;只是个参考值,您可以放心地存储多于此数量的工程php脚本/变量

xcache.slots=8K

;缓存工程的ttl,0=永久

xcache.ttl=0

;扫描过期工程的时间间隔,0=不扫描,其他值以秒为单位

xcache.gc_interval=60

;同上,只是针对变量缓存设置

xcache.var_size=1M

xcache.var_count=1

xcache.var_slots=8K

;默认,允许ini_set

xcache.var_ttl=0

;最大ttl值

xcache.var_maxttl=0

xcache.var_gc_interval=300

;仅测试用

xcache.test=Off

;/dev/zero时无效

xcache.readonly_protection=Off

;对于*nix系统,xcache.mmap_path是文件路径而不是目次,可以不存在但是务必能创造.

;假设您期望启用ReadonlyProtection,可以使用类似/tmp/xcache

;2个php组不会共享同一个/tmp/xcache

;对于Win32系统,xcache.mmap_path=匿名MAP名字,不是文件路径.建议使用XCache字眼制止跟其他软件冲突

xcache.mmap_path=XCache

;仅用于*nix系统

;设置为空禁用或者类似/tmp/phpcore/

;留神该目次理应能被php写入文件跟open_basedir无关

xcache.coredump_directory=

xcache.cacher=On

xcache.stat=On

xcache.optimi

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论