小说网 找小说 无限小说 烟雨红尘 幻想小说 酷文学 深夜书屋

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 文件啦。

posted on 2008-05-27 15:23  王峰炬  阅读(75)  评论(0编辑  收藏  举报

导航