ZendFramework环境搭建
1、下载:ZendFramework-1.5.1.rar
2、APACHE 的 配置文件
LoadModule rewrite_module modules/mod_rewrite.so 前面的#去掉
3、<Directory "d:/AppServ/www/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory> 改成这个
小5 12:07:12
<Directory "d:/AppServ/www">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks MultiViews ExecCGI
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
3、php.ini加截
extension=php_pdo.dll
;extension=php_pdo_sqlite.dll
extension=php_pdo_mysql.dll
这样一个ZendFramework环境就搭建好了``````
接下来就要了解zend 文件啦。