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

  • 相关阅读:
    web.xml文件详解
    SQLSERVER dbo解释
    sqlserver BULK INSERT
    google 基站定位api
    Sqlserver中Select和Set区别
    SQL Server优化50法
    ibatis常用16条SQL
    面向对象 -- 三大特性之继承 补充 抽象类 接口类
    面向对象 -- 三大特性之继承
    面向对象 -- 类的组合
  • 原文地址:https://www.cnblogs.com/fengju/p/6174112.html
Copyright © 2020-2023  润新知