Chinaunix首页 | 论坛 | 博客
  • 博客访问: 5523484
  • 博文数量: 763
  • 博客积分: 12108
  • 博客等级: 上将
  • 技术积分: 15717
  • 用 户 组: 普通用户
  • 注册时间: 2007-09-28 21:21
个人简介

业精于勤,荒于嬉

文章分类

全部博文(763)

文章存档

2018年(6)

2017年(15)

2016年(2)

2015年(31)

2014年(14)

2013年(87)

2012年(75)

2011年(94)

2010年(190)

2009年(38)

2008年(183)

2007年(28)

分类: 系统运维

2008-05-20 20:36:03

安装apache到c:/webSite/apache/

解压php到c:/webSite/php/

安装mysql到c:/webSite/mysql/

解压phpMyAdmin 到 /webSite/apache/htdocs/phpmyadmin/




修改文件/apache/conf/httpd.conf:

找到 DirectoryIndex index.html  在后面加入 index.htm index.php

文件最后加入:
LoadModule php5_module "c:/webSite/php/php5apache2_2.dll"
AddType application/x-httpd-php .php
PHPIniDir "c:/webSite/php"



php目录里
 将php5ts.dll、libmysql.dll拷到系统目录c:\windows\system32

 
将php.ini-recommended 改为php.ini
修改php.ini
extension_dir   =   "c:/webSite/php/ext"  
extension=php_mysql.dll
extension=php_mssql.dll
extension=php_mysqli.dll
short_open_tag=on

include_path=".;c:\webSite\php\includes;c:\webSite\apache\htdocs
在php目录下建立sessions目录,用于存放session信息
session.save_path="c:/webSite/php/sessions"



解压phpMyAdmin到/apache/htdocs下
/phpmyadmin/config.inc.php:
$cfg['Servers'][$i]['host']          = 'localhost';
$['Servers'][$i]['port']             = '3306';  
$cfg['Servers'][$i]['auth_type']     = 'config';   
$cfg['Servers'][$i]['user']          = 'root';      
$cfg['Servers'][$i]['password']      = 'your mysql password';
$cfg['PmaAbsoluteUri'] = '';

restart your apache server ------ok
阅读(1785) | 评论(0) | 转发(1) |
0

上一篇:java 基本感念

下一篇:php 数据库访问类

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