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 ...
6
votes
3answers
4k views
Zend Tool creation of a controller inside a module
I'm trying to create a controller inside a module using the Zend_Tool doing this:
$ zf create module admin
$ zf create controller login admin
With the first command it creates de module hierarchy, ...
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
3answers
1k views
Zend Framework 2 project example
Can someone give me an Zend Framework 2 project example, or any info how to use zend_tool for ZF2.
Thanks
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
288 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
3answers
145 views
Custom path for view scripts
I use customized paths for my application based on Zend Framework (a.k.a. themes).
The view scripts are saved in public/themes/themename/modulename/..., so switching the application theme is just ...
2
votes
3answers
735 views
Zend_Tool CLI issues, throwing fatal errors
Before installing PHPUnit on my Ubuntu machine, I thought I had zf.sh all set up correctly. I was able to create a new project without any issues. Now, since installing PHPUnit, everything is not ...
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
1answer
87 views
Zend_Tool - Can we use it to create a model inside a specific directory?
Inside 'models' directory I've created another called 'mappers'.
I wish to add a mapper there, however I can't find anywhere how to accomplish this with the zend_tool cli.
Does anyone know how to do ...
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
167 views
Zend_Tool and project autoloading
I'm using Zend_Tool in a ZF app, which was originally generated by Zend_Tool.
I can create controllers fine, but when I try to create an action I get a Fatal Error: Class ... not found in ....
I'm ...
1
vote
1answer
422 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
2answers
406 views
Installing Zend Framework
I have been going through this page to install zend framework on my machine locally.
http://framework.zend.com/manual/en/zend.tool.framework.clitool.html
I can't get it recognize the command in my ...
1
vote
4answers
2k views
Problems with zend-tool reporting that providers are not valid
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 ...
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
1answer
1k views
Zend Framework 1.1 Modules setup
i used zend_tool to setup a project then to create module blog with index controller etc but i guess the default config setup by zend_tool does not work with modules so i edited it
...
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 ...
1
vote
1answer
146 views
How do you migrate an old project to Zend Tool?
I've got a project developed circa Zend Framework 1.7 that I'd like to migrate to Zend Tool and ZF 1.9.4pl1. The main benefit I hope to gain is to be able to use automatic loading of Models, Forms, ...
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
1answer
170 views
'zf create action' won't create corresponding view script
I'm working on my first Zend Framework site and am having a problem with Zend_Tool not properly creating actions and their corresponding views.
At the CLI, I type 'zf create action (action) ...
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
2answers
208 views
Zend OSX, and a “.” added to context path
I downloaded and unpacked the latest version of Zend Framework, onto OSX (10.6) (am also running webserver with XAMPP, but I added the include_path change to both XAMPP and OSX path, but this is all ...
0
votes
1answer
191 views
Zend CLI Tool issue - php: permission denied?
today i have recompiled PHP with PDO msql driver and now i cant use Zend CLI tool anymore.
Before Zend CLI tool was working fine, but now i get:
./zf.sh: 44: php: Permission denied
I am really out ...
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
102 views
In your opinion, when using the Zend Framework is it bad practice to have a view script with out an associated action?
I ask because in my Zend Framework app I use some view scrips that do not have an action associated with them. (Similar to the example on page 102 in the Zend Pro Framework Techniques book ...
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
97 views
Zend_Tool & Zend_Forms inside a module
Here's my problem. I'm developping an application using ZF 1.10.0, and I have a module called Backend. I need to create a Form for that module. But the damn Zend_Tool won't let me make it inside the ...
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
2answers
681 views
Zend Framework - Zend Tool - Module error: I have error after I create module with Zend Tool
I new in zend framework.
I create zend project with zend tool and its works , but i create module and when i try access him with browser I get Error.
I write my steps, please help me.
Thanks,
...
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 ...
0
votes
2answers
1k views
Problem with Zend Framework Quickstart Tutorial and version 1.8.2
I'm trying to work through the quick start tutorial of the Zend Framework version 1.8.2, but I'm getting an error when running this code:
zf.sh create project quickstart
error: expecting `'{'' in ...
-1
votes
1answer
146 views
Running zend tool in windows system
I am trying to learn zend framework. I am using the quick start tutorial provided at the site for this. While, I am going on, I noticed that the zend tool commands provided at that site, is not ...
-3
votes
2answers
712 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 ...