0

我已经搬到 ubuntu,以便尽可能地为我正在处理的项目复制实时服务器环境。我曾经手动创建我的 zend 文件夹布局。但是这次决定使用zend Tool。在设置 zf 工具后,我尝试了 zf show version 命令,一切顺利。

所以然后我将目录更改为共享文件夹(共享是指该文件夹是我在双启动时在 Windows 和 ubuntu 之间共享的 fat32 文件夹)。无论如何,我使用该命令zf create project .创建了一个新项目。但我得到了他的错误An Error Has Occurred A project already exists here。该文件夹中肯定没有项目。无论如何,我认为这可能是一个权限问题,尽管我可以出于所有订购目的从该文件夹中写入和读取。

然后我这次尝试在我的主文件夹中再次创建项目,但仍然遇到同样的问题。我用谷歌搜索,但发现只有 3 个关于这个问题的报告,并且没有一个得到回答。谢谢。

4

2 回答 2

0

I had this same issue -

ZF doesn't like it when you try and create a project when another one already exists somewhere higher in your directory structure (no-matter the name).

Try looking for old projects in parent directories (specifically .zfproject.xml files), or patch the ZF Project Provider if you want to have a directory structure like this.

More details here

Hope this helps

-Dan

于 2011-02-21T21:09:53.270 回答
0

如果要解决此问题,则必须删除 .zfproject.xml。您可以使用 find /path/to/project -name '.zfproject.xml' 找到此文件,然后使用 rm -rf /path/to/project/.zfproject.xml 将其删除。

希望这有帮助)

于 2013-08-28T05:21:14.877 回答