zend-tool

Problems with zend-tool reporting that providers are not valid

孤人 提交于 2020-01-16 04:19:09
问题 I have recently setup XAMPP 1.7.3 and ZendFramework 1.10.4 on a new computer and many of the commands that I normally use now fail. Here are the steps I used to setup and test ZF. First I added the ZF library folder (C:\xampp\php\ZendFramework-1.10.4\library) to the include path in php.ini. Then I added the ZF bin folder (C:\xampp\php\ZendFramework-1.10.4\bin) to my Path system variable. To test that everything is configured correctly I ran the command "zf show version" from the command line.

Zend_Tool problem

老子叫甜甜 提交于 2019-12-25 01:49:26
问题 This is the third time I'm installing zend studio and zend server now these two are installed succesfully (after half a day). But when I'm trying to create a new project I always get this zf error... ` * ** * ** * ** * ** * ** ZF ERROR * ** * ** * ** * ** * ** * In order to run the zf command, you need to ensure that Zend Framework is inside your include_path. There are a variety of ways that you can ensure that this zf command line tool knows where the Zend Framework library is on your

How can I generate XML application configuration using Zend_Tool?

北慕城南 提交于 2019-12-23 21:56:27
问题 When creating a new project using zf create project myproject it will create a default project layout with an application.ini in the configs folder. Where can I change these default settings so that it generates (and uses) an XML file (application.xml)? I've looked at the documentation for Zend_Tool (http://framework.zend.com/manual/en/zend.tool.html), but there seems to be no information on how to do this. And suppose you'd like to use a different default folder layout (ie. use htdocs

zf create project path name-of-profile file-of-profile

浪子不回头ぞ 提交于 2019-12-23 10:40:52
问题 I was not able to find a good resource which is describing the following Zend_Tool command: zf create project path name-of-profile file-of-profile Not even here: http://framework.zend.com/manual/en/zend.tool.usage.cli.html Does somebody know a good resource regarding this command? Note: I'm interested in the name-of-profile and file-of-profile part. Usage, examples, etc. Maybe even a visual approach like in this references: http://marklodato.github.com/visual-git-guide/index-en.html http:/

Zend Framework 2 project example [closed]

こ雲淡風輕ζ 提交于 2019-12-17 22:14:25
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 7 years ago . Can someone give me an Zend Framework 2 project example, or any info how to use zend_tool for ZF2. Thanks 回答1: Zend Framework 2 is under heavy development right now so there are no real examples yet. You can

Zend_Tool: Fatal error: Cannot redeclare class Zend_Loader

余生长醉 提交于 2019-12-11 01:21:30
问题 I am able to create new projects with... zf create project ProjectName ...but this creates a project without copying the Zend Framework library. So I copy ZF into my project library and try to create a controller... zf create controller auth ...and I get this message: Fatal error: Cannot redeclare class Zend_Loader in /home/andrew/Projects/test/library/Zend/Loader.php on line 31 Call Stack: 0.0010 110164 1. {main}() /opt/ZendFramework/ZendFramework-1.9.3PL1-minimal/bin/zf.php:0 0.0010 110284

Zend_Tool remove controller/action

戏子无情 提交于 2019-12-06 03:29:10
问题 I made a controller with Zend_Tool, but now I want to delete the controller. I know i can just delete the file, but I was wondering if there was a way to do this with Zend_Tool, so i don't need to edit the .zfproject.xml myself. Thanks! 回答1: You have to manually delete it. This functionality is slated for 1.10. It was left out of the 1.8 and 1.9 release for a couple of good reasons. Since deleting is a pretty irreversible action, and sometimes is also a recursive action- we wanted to ensure

Zend Framework 2 “Zend Tool Missing” in bin folder

我的未来我决定 提交于 2019-12-01 01:13:29
im newbie in frameworks, but i had no difficulty installing etc the zend 1.x versions. But with ZF2 cant really figure out.... Any recource telling me creating a project using the zend tool i.e. zf.bat or zf.sh from bin directory, but there's none of them in the zf2 bin folder in contrast to zf1. The only files present are autloader_example.php autloader_examples.php classmap_generator.php createAuoloadTestClasses.php docbook_skeleton.php plugin_generator.php can anyone help me anyhow... neet it asap thanx. d Because Zend Framework 2 are under development, this time, we have not a tool to

Zend Framework 2 “Zend Tool Missing” in bin folder

ε祈祈猫儿з 提交于 2019-11-30 20:50:17
问题 im newbie in frameworks, but i had no difficulty installing etc the zend 1.x versions. But with ZF2 cant really figure out.... Any recource telling me creating a project using the zend tool i.e. zf.bat or zf.sh from bin directory, but there's none of them in the zf2 bin folder in contrast to zf1. The only files present are autloader_example.php autloader_examples.php classmap_generator.php createAuoloadTestClasses.php docbook_skeleton.php plugin_generator.php can anyone help me anyhow... neet

Zend Framework 2 project example [closed]

偶尔善良 提交于 2019-11-28 17:37:05
Can someone give me an Zend Framework 2 project example, or any info how to use zend_tool for ZF2. Thanks Zend Framework 2 is under heavy development right now so there are no real examples yet. You can follow the development of ZF2 on github . The only ready components we have now are Autoloader and Plugin Loader. You could also use them in your current ZF applications . Best resources which I found so far is : 1. manual http://packages.zendframework.com/docs/latest/manual/en/index.html 2. Matthew Weier O'phinney 3 articles so far http://mwop.net/blog/tag/zf2 3. Rob Allen ZF2 book http:/