2

我对 ZEND FRAMEWORK 完全陌生。我尝试安装但遇到了一些错误。

当我安装 zf@1 版本时。

  1. 我将我的文件夹提取到路径中。C:\xampp\php将其命名为 zendframework。
  2. 我将 php.ini 文件的 include_path 编辑为include_path = ".;C:\xampp\php\PEAR;C:\xampp\php\zendframework\library"
  3. 重新启动的服务器。
  4. 使用路径 C:\xampp\php\(我的确切 zf.bat 文件所在的位置)运行 cmd
  5. 运行命令zf show version以 zf 错误结束,我的 zend 框架应该在包含路径中。

    • 如何解决此错误?
    • 问题是否已解决我的下一个命令zf create project zend_blog是否正确?
    • 如何使用 zf1 和 zf 2 创建项目?
4

3 回答 3

5
 Follow the given Instruction Below.


  • Go to ‘My Computer’ > Properties > Advanced Tab > Environment Variables. 
   Environment Variables box will open, View SYSTEM VARIABLES, 
    scroll the list to ’ PATH ‘ > double click ’ PATH ‘ .
      Add the following line to the end of the PATH  C:\xampp\php
    Zend Framework
  • Extract the Zend Framework files to C:\xampp\php\zf.
   •    Edit the php.ini file. You will find it at C:\xampp\php\php.ini. 
    Find the line that says ’ include_path ’ and edit the line: 
 Windows: “\path1;\path2″
  include_path = “C:\xampp\php\zf\library”
  • Open a shell and cd to C:\xampp\htdocs folder and type this:
    C:\xampp\htdocs>C:\xampp\php\ZendFramework\bin\zf.bat create project    testproject(project name)


  • Now Copy the Zend Folder from your ZendFramework folder ( C:\xampp\php\zf/library /Zend) into the library folder of your new test project ( C:\xampp\htdocs\testproject\library\Zend
于 2014-12-09T10:04:36.373 回答
0

它与 XAMPP 无关。某些东西未配置正确或不正确的权限。

见这些:

于 2012-12-21T02:04:57.417 回答
0

您需要将 zend 框架路径和 php.exe 路径放入您的windows 路径变量中,以便从命令行运行命令。这在 ZF1 中很重要,因此 Zend_Tool 将在命令行或 Netbeans 或其他 Ide 中工作。

于 2012-12-22T10:18:15.290 回答