Chinaunix首页 | 论坛 | 博客
  • 博客访问: 268775
  • 博文数量: 59
  • 博客积分: 1368
  • 博客等级: 中尉
  • 技术积分: 1071
  • 用 户 组: 普通用户
  • 注册时间: 2012-02-02 06:06
文章分类

全部博文(59)

文章存档

2012年(59)

我的朋友

分类: 系统运维

2012-03-13 16:54:28

httpd.conf
  1. Listen 80
  2. ServerAdmin admin@localhost.com
  3. ServerName localhost:80
  4. DocumentRoot "E:/htdocs"
  5. Options Indexes FollowSymLinks
  6. AllowOverride None
  7. Order allow,deny
  8. Allow from all
  9. ErrorLog "logs/error.log"
  10. LoadModule php5_module C:/php/php5apache2_2.dll
  11. PHPIniDir "C:/php"
  12. AddHandler application/x-httpd-php .php
  1. DirectoryIndex index.html index.htm index.php

httpd-vhosts.conf
  1. NameVirtualHost *:80
  2. DocumentRoot "E:/htdocs"
  3. ServerName localhost
  4. DocumentRoot "E:/htdocs/ci210"
  5. ServerName
  6. AllowOverride All
  7. Order allow,deny
  8. Allow from all
php.ini
  1. max_execution_time = 3000
  2. max_input_time = 60
  3. memory_limit = 128M
  4. error_reporting = E_ALL
  5. display_errors = On
  6. display_startup_errors = On
  7. magic_quotes_gpc = On
  8. extension_dir = "C:\php\ext"
  9. upload_max_filesize = 50M
  10. date.timezone = PRC
  11. [Xdebug]
  12. zend_extension_ts="C:\php\ext\php_xdebug.dll"
  13. xdebug.profiler_enable=on
  14. xdebug.trace_output_dir="C:\php\xdebug"
  15. xdebug.profiler_output_dir="C:\php\xdebug"
  16. xdebug.remote_enable=on
  17. xdebug.remote_handler=dbgp
  18. xdebug.remote_host=localhost
  19. xdebug.remote_post=9000
end











阅读(940) | 评论(0) | 转发(0) |
0

上一篇:Magento数据库自动备份

下一篇:iis+php

给主人留下些什么吧!~~