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

  • 相关阅读:
    接口测试
    jmeter直连数据库
    登录功能的测试用例设计
    oracle 同义词synonym
    oracle常用函数
    python环境搭建--pycharm的安装及使用
    JavaScript数组函数
    JavaScript:var、let、作用域
    HTML入门到精通(带你全面避坑)
    使用VirtualBox安装CentOS7
  • 原文地址:https://www.cnblogs.com/fengju/p/6174112.html
Copyright © 2011-2022 走看看