问题标签 [zend-tool]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
970 浏览

php - Zend 框架工具 - zf.php:找不到命令

我正在尝试安装 Zend 框架工具。

我遵循文档,当我运行时zf.php modules(如文档中所述)我得到zf.php: command not found

我发现有人在这里遇到类似问题 -无法打开输入文件:zf.php

..所以从那篇文章中我尝试了替代方法(从我的项目目录 - /var/www/zf-tutorial)vendor/bin/zf.php modules,它成功列出了我的模块。

为什么这与文档不一致?我每次都必须写出整个路径吗?

==

所以接下来,当尝试使用 Zend Tool 创建一个项目时,我自然觉得我需要从项目目录导航到我的所有项目目录(/var/www)

所以我zf2-tutorial/vendor/bin/zf.php create project zendtest从那里尝试......我得到了错误(无论如何我可能会运行另一个项目的脚本来创建一个新项目似乎很奇怪,但我现在只是想弄清楚事情):

好的,似乎我需要在我安装它的项目目录中?所以,我不情愿地回到我的项目目录(/var/www/zf2-tutorial)并从那里运行它——这似乎更奇怪我应该从另一个项目中创建一个项目......但它似乎工作,. . 但不,因为它把它放在我的 zf2-tutorial 目录中,因为那是我所在的地方(认为它可能)

我如何使用这个工具?理想情况下,我想安装一次,并将其用于当前和未来的所有项目。是不是zf create projects太可能了?zf.php ...只是看起来很乱

0 投票
1 回答
621 浏览

zend-framework2 - 在 ZF2 中使用 ZFTool 创建新模块

我通过 composer 安装了 ZF2 框架应用程序,并且正在通过 Slavey Karadzhov 的 Learn ZF2 一书学习 ZF2。安装骨架后,我通过 composer 添加了 zftool 依赖项。我在 Windows 8 上。

我已经通过https://stackoverflow.com/questions/26387615/how-do-you-add-zftool-to-an-existing-zf2-project-one-not-created-with-zftool这意味着要求对于我拥有的顶级配置中的 application.config.php 。

我试图通过以下方式创建一个新模块:

p>

返回:

p>

以上是vendor/bin/zf.php的内容

我在其他论坛上看到过同样的问题,但没有答案。任何帮助将非常感激。

0 投票
1 回答
1897 浏览

php - Enabling Zend Developer Tools toolbar causes database connection errors

I want to built Doctrine 2 into an Apigility Zend Framework 2 application.

Following Marco Pivetta's Doctrine ORM ZF2 Tutorial, I installed not only Doctrine, but also the Zend Developer Tools, like in the tutorial shown:

Now when I open the Apigility admin page, I get errors:

The errors occur, when the zenddevelopertools.toolbar.enabled is set to true.

Here is the configuration in the /config/autoload/global.php:

and the /config/autoload/local.php looks like follows:

I guess, the Zend Developer Tools cannot find an appropriate DB adapter.

Why are these errors occuring and how to ix them?


Additional info:

The db.service_manager.factories.Zend\\Db\\Adapter\\Adapter configuration in my global.php is actually needless, since I use custom DB adapters instead of the default one created by Zend\Db\Adapter\AdapterServiceFactory. Anyway the Zend Developer Tools seem to try to use it. So, when I copy the DB settings directly to db

I get different errors:

0 投票
1 回答
188 浏览

zend-framework2 - Zend Framework 2 ZF 工具创建控制器

当我尝试在 Zend Framework 2.4 应用程序中创建新控制器时,使用以下 ZF Tool 命令:

我收到以下错误:

但是当我删除时index-action-included=1,ZF Tool 会创建一个没有任何问题的控制器。

我错过了什么?

0 投票
1 回答
5801 浏览

zend-framework - 不推荐使用 PHP:您正在从 ZFTool\Controller\ModuleController 类中检索服务定位器

我已经使用 composer 安装了 zend 工具

zftool 已经安装,当我运行 php /vender/bin/zf.php modules list 它抛出警告

不推荐使用 PHP:您正在从 ZFTool\Controller\ModuleController 类中检索服务定位器。请注意,ServiceLocatorAwareInterface 已弃用,将在 3.0 版中与 ServiceLocatorAwareInitializer 一起删除。...

我正在使用 Ubuntu