


WINDOWS下php5.2.4+mysql6.0+apache2.2.4+ZendOptimizer-3.3.0配置_php基础
第一: 装http服务器apache












apache安装完成,如果出现apache端口被占用的情况,请关闭你的迅雷,或者某些杀毒软件!
第二步:安装PHP:
1)、将php-5.2.4-Win32.zip压缩包解压,然后复制到C:\并更名为C:\PHP5
2)、拷贝C:\PHP5\php.ini-dist文件到X:\WINNT下,并更名为php.ini
3)、(方法1)打开php.ini进行参数修改,把extension_dir设置为
extension_dir = "C:/php5/ext"
(方法2)把php5下面的*.dll和ext下的*.dll文件复制到windows下的system32下面!(本人用的是这种)
第三步:加载php模块:
设置网站根目录:


在apache的httpd.conf文件里,设置ServerRoot(服务器根,也就是apache的安装目录)
ServerRoot "F:\php"
设置DocumentRoot(网站目录,也就是你机器上那些让人浏览的网页所在目录)比如:
DocumentRoot "F:\php"
修改:(选择性)设置默然首页


DirectoryIndex phpinfo.php index.html
用模块方式安装!
在文件最后加入


LoadModule php5_module c:/php/php5apache2_2.dll
AddType application/x-httpd-php .php
用CGI方式安装:
同上面的
在ScriptAlias段,增加以下行
ScriptAlias /PHP5/ “C:/php/”
在AddType段,增加以下行
AddType application/x-httpd-php .php
Action application/x-httpd-php "/php5/php-cgi.exe“
第四步:
拷贝C:\PHP5\php.ini-dist文件到X:\WINNT下,并更名为php.ini
在php.ini配置文件中选择运行PHP时需要加载的模块。
[DATE] 下修改;date.timezone =为date.timezone =PRC
将php.ini文件中下面格式的行前的;去掉以加载相应的模块,注:加载模块不正确将会出错
extension=php_bz2.dll
extension=php_cpdf.dll
extension=php_crack.dll
…这些自己加!


测试php程序: phpinfo() ?>保存在f盘为phpinfo.php在浏览器输入http://localhost:加你的端口号/就OK了!
第五步:
安装mysql数据库!


一直往下安装直到


如果用uft8则选择utf8用gb2312则选择gb2312!‘
由于空间有限某些图片没有上传上来!
最后完成!
第6步:
安装ZendOptimizer


按照提示继续安装直到完成为止!
最后配置phpmyadim:
解压文件放置到网站根目录下面:
修改libraries下的config.default.php并且重命名为config.inc.php保存在根目录下面修改如下:
$cfg['Servers'][$i]['auth_type'] = 'config'; 修改为
$cfg['Servers'][$i]['auth_type'] = 'cookies';
$cfg['DefaultConnectionCollation'] = 'utf8_unicode_ci';
$cfg['DefaultCharset'] = 'utf8';
配置基本完成!这是本人粗略写的,有错误的地方还希望大家提出来,我会第一时间修改订正!
可以用QQ或者在论坛留言!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.
