zoukankan      html  css  js  c++  java
  • 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 文件啦。

  • 相关阅读:
    第零次作业
    第一本书的学习笔记
    第一次作业
    第零次作业
    第一周作业
    第零次作业回复
    第零次作业
    第一周作业
    第0次作业
    第一次作业
  • 原文地址:https://www.cnblogs.com/fengju/p/6174112.html
Copyright © 2011-2022 走看看