Tagged Questions

8
votes
3answers
307 views

How to customize Zend_Tool output?

I'd like to use Zend_Tool (ZF 1.9) with my project, but I would like to be able to customize the default output of new files. For example, all Controllers should have a specific header pre-pended to ...
5
votes
1answer
596 views

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

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: ...
5
votes
3answers
750 views

How could I customize Zend_Tool to provide my own skeleton/template?

Zend_Tool is nice, it generates a project with a given name & a given path. But after a while, i started to develop my own tools, like helpers, plugins, validators, etc... I put them all in ...
4
votes
1answer
376 views

Zend_Tool remove controller/action

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 ...
4
votes
3answers
205 views

Working with Zend Tool in multiple dev environments

On any given Zend Framework project I can be working in 2 or 3 locations - my work PC, home PC or my MacBook. My source code is always in SVN and I usually work on a development server before pushing ...
3
votes
1answer
394 views

Is there a Zend Tool command for scaffolding?

Does Zend Tool have a zf command that does the same as this Ruby on Rails command: ruby script/generate scaffold ModelName [field:type field:type ...] In other words, can Zend Tool create resources ...
2
votes
1answer
289 views

Zend_Tool include_path problem

I'm trying to install Zend Framework on my computer. I have done following: I have placed Zend framework files on C drive, the path is like: C:\ZendFramework\library C:\ZendFramework\bin (The bin ...
2
votes
1answer
1k views

Zend Framework create project error

I am new to the Zend Framework. I read the Zend Framework document. Here I saw to work Zend Framework must include the path in my php.ini, I believe that this is done because in my php info I saw ...
1
vote
2answers
645 views

Zend Framework - Create db-table from database - Error

After I do: zf -p create dbtable.from-database I get: Cannot redeclare class Zend_Loader in /home/user/public_html/proj.dev/library/Zend/Loader.php on line 31 If we change the ...
1
vote
1answer
423 views

Zend: Create action in a specific controller in specific module with command line

I want to create a testAction in testController of testModule with command line. So I go to tesModule directory(cd application/modules/test) and run the following command. zf.sh create action test ...
1
vote
1answer
715 views

How can I generate XML application configuration using Zend_Tool?

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 ...
1
vote
1answer
190 views

PHP CLI version issue

I am trying to use Zend Tool on my media temple Grid Server account. The problem is that the installed CLI version of PHP is 4.4.8 and Zend Framework needs PHP5. On an account basis its possible to ...
1
vote
5answers
2k views

Zend command line tool action error

I just managed to create a project using Zend_Tool, but I am stuck on "second step" - enabling layout. zf enable layout leads to: An Error Has Occurred Action 'enable' is not a valid action. ...
1
vote
2answers
2k views

Zend tool include path

Is it possible to install and use ZF (+ its console tool) without access to include_path direcotory? I've tried adding the ...Zend/library direcotry into include_path but without success. I did it ...
1
vote
2answers
167 views

Segmentation fault in Zend_Tool

I'm using Ubuntu 9.04 and I applied this tutorial But I'm still getting this error: berkerpeksag@berkerpeksag:~$ zf show version Segmentation fault What do I miss? Thanks.
1
vote
1answer
2k views

Zend_Tool: Fatal error: Cannot redeclare class Zend_Loader

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 ...
0
votes
2answers
52 views

Create action in module's controller in Zend Framework

I have Group module and Moderator controller in my zend project on ubuntu. My Controller class is like this: class Group_ModeratorController extends Zend_Controller_Action { ------- ------- } ...
0
votes
0answers
47 views

PHP Zend Framework: How do I make ZF Tool work with extended Controller_Actions?

I'm working with a Zend Framework project and using the ZF tool from the command line. After setting up some initial structure, I extended the Zend_Controller_Action class with something like ...
0
votes
1answer
110 views

zf create project error (Zend Framework)

I got a error when I try create a project using the zend framework command line: [user ~] /home/user/public_html $ zf create project openstart PHP Catchable fatal error: Argument 1 passed to ...
0
votes
2answers
357 views

Class extending Zend_Controller_Action, not found by Zend Tool

I created an class extension of Zend_Controller_Action and added some user defined methods, which will be accessed from any controller so forth. Every thing is working fine, until I use Zend Tool to ...
0
votes
1answer
275 views

Problems using Zend Tools on Server environment: Missing Profile, Wrong default Paths

I have a complex error that may or may not be connected to the Zend installation provided by 1und1 Webhosting which I am using. Here are some of the Symptoms first: Creating a project using: ...
0
votes
2answers
111 views

getting zend tools to rename actions

so we can use zend tools to create actions, controllers, etc., and it will do the dirty work ... but then what if you want to rename said actions, controllers? is there a way to do this without ...
0
votes
1answer
191 views

Zend Tool & application.xml

I use NetBeans & Zend Tool (ZT). Then i create new project, ZT create a config file application.ini, but i need a xml version. I create a xml version of application.ini and update .zfproject.xml ...
0
votes
1answer
201 views

Zend Tool CLI always creates index action index view

I have the following problem with Zend tool (component of Zend Framework) When I give the command to create a controller without a index action the action is still created. I use the following ...
0
votes
0answers
107 views

zf tool behaves weird

On my ubuntu machine when i try to create a controller: zf create action edit events I get the error: Fatal error: Cannot redeclare class Zend_Tool_Project_Provider_Manifest in ...
0
votes
1answer
96 views

Changing the template code produced by Zend_Tool

This is a silly little thing, but I was just wondering whether there was a way to change the style of the code produced by the Zend_Tool? Specifically, the bracket style? // from this: class ...
-3
votes
2answers
713 views

Zend_Tool setup problems

I read that to create a project, execute the zf Windows windows command (zf.bat): C:\>zf.bat create project newproject I saw zf.bat in my C:\wamp\www\Zend\bin, I want to create a new project in ...