Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
638 views

Zend Config Ini Caching

My Zend app uses 3 ini config files, with a total of over 200 lines to parse, containing over 100 instructions. Are these files parsed every request? Some people say they are (like here and here). If ...
3
votes
1answer
175 views

how to set zend form details in application.ini

Is there a way to set zend form details in the application config file (application.ini) in Zend Framework. I am looking for a way to move following details to config A way to disable form ...
3
votes
1answer
183 views

Why would loading a Zend_Application with a Zend_Config object produce different results from sending the file name?

I seem to be having an issue where loading my Zend_Application object with a Zend_Config object produces different results than loading the Zend_Application object with a filename instead. To ...
2
votes
2answers
41 views

accessing the getOptions() of Zend_Application_Bootstrap_Bootstrap

I'm using the default Zend_Application design pattern which loads a zend config ini file automatically in the application bootstrap and I need to ini file's variables across many models and ...
2
votes
2answers
176 views

How does one specify a file path relative to the location of the config file when Zend_Config_Ini is in use?

I've got a common set of functionality I'd like to embed into a Zend_Application instance using the configs parameter inside of that app's Zend_Config instance. However, the slaved configuration file ...
2
votes
1answer
256 views

Zend Framework: Error Reporting is shut down regardless of ini File

i often run into a problem when variables/attributes have the wrong type. The Problem is that it is hard to trace since my PHP (5.3) just crashes, does not put out an error or even write to the error ...
2
votes
3answers
190 views

How to preserve application.ini paths using Zend_Config_Writer_Ini

I'm currently working on a build system in Phing that takes a Zend Framework project template and configures it according to Phing parameters. One problem that I've come across is when using ...
2
votes
2answers
290 views

How to read an array in application.ini in Zend framework

How to read an array declared in the application.ini file using zend_config object. eg 1 : supported.prop[]="abc" supported.prop[]="def" when I say $config->supported->prop, it returns zend_config ...
2
votes
2answers
584 views

ZF: Disable Resource Plugin in application.ini

How can I disable cache in the cli enviroment? Reason being, the system user that executes the script is not allowed to write to the cache directory, thus the script is unable to execute. In my ...
1
vote
1answer
133 views

Setting datepicker element in Zend_config_Ini

I am trying to create form element using Zend_Config_Ini. Among other elements, I have a datepicker element (zendx_jquery_form_element_datepicker) which fails to work. I have tried setting the ...
1
vote
2answers
126 views

zend_form config problem

I have a structure like follows: /application ..... --/modules ----/structure ------/controllers --------/indexController.php ------/forms --------/Department.php //here class ...
1
vote
1answer
129 views

Storing data in Zend_Registry vs Zend_Cache

So far i have been using Bootstrap.php to load my application.ini config into Zend_Registry as well as an instance of logger. I was wondering if storing these inside Zend_Cache would be a better ...
1
vote
2answers
136 views

Module specific resource configuration in application.ini

Can I config a resource to be different when a specific module is used? From what I have read in the documentation (example #12) this should be possible. But I have had no luck with it yet. In ...
1
vote
1answer
100 views

How can I write url /:lang/display-cv-:cvid using zend_config?

I got a zend_config file called routes.ini. Currently my url looks like this /:LanguageCode/display-cv/:CVID as defined by this route: routes.display-cv.route = /:LanguageCode/display-cv/:CVID ...
1
vote
2answers
67 views

Determine which section a Zend_Config uses in a controller?

I have my config defined via Zend_Config_Ini adapter, with production, development and testing sections. In my controller I would like to take certain actions depending on what environment/section I ...
0
votes
1answer
16 views

Zend_Config_Ini_Writer not working: Error 500

I have this code to create a config.ini file with Zend Framework but I always get a Internal Server Error (Error 500) from the webpage... <?php session_start(); $config = new ...
0
votes
1answer
51 views

Zend Form Element Row needs either an id or class set through Zend_Config_Ini

I have the following default decorators in a Zend_Config_Ini to set up my form: elementDecorators.viewHelper.decorator = "ViewHelper" elementDecorators.label.decorator = "Label" ...
0
votes
1answer
48 views

Zend Framework: Setting Default Decorators for form elements through Zend_Config_Ini

I have the following code in my forms.ini file, that is not working (form rendered is still using the default DtDd decorator). incident.elements.ticket_number.type = "text" ...
0
votes
1answer
99 views

Invalid controller specified (adminlogin)

Code for indexAction() in AdminLoginController is: $form_object = new Application_Form_NewProfile(); $form_object->setAction('/adminlogin/index'); $form_object->setMethod('post'); ...
0
votes
0answers
72 views

Zend_Navigation add dynamically parameter after question mark

I'm using Zend_Navigation' reading fron xml. I want to add to the menu created from it an additional parameter (got it from the request for the first page). e.g if the first page is ...
0
votes
1answer
97 views

Zend Config Performance Optimization

I am optimizing a Zend Framework based application, and I am sure using ini based config slows down overall performance as the sites need to read and parse ini on each and every page request. Now I ...
0
votes
1answer
39 views

Zend config inheritence

I have these values in my application.ini [production] ; Database; resources.db.adapter = "pdo_mysql" resources.db.params.host = "localhost" resources.db.params.username = "user1" ...
0
votes
1answer
125 views

Zend_Config_ini add a section and(or) key on fly?

I have an ini file for each client on my system, and add a new section and key to be created on the fly. I need some think like this: Current ini file: [section_a] key_a=1 key_b-2 And need to ...
0
votes
1answer
113 views

Zend Framework / Form Element is rendering as a text box rather than a dropdown box

I have the following in a config.ini file: (Zend_Form_Element) site_status.name = "site_status" site_status.type = "select" site_status.label = "Status" site_status.options.multiOptions.active.key = ...
0
votes
1answer
330 views

ini-config for Zend_Cache_Frontend_Page

How to configure Zend_Cache_Frontend_Page in application.ini? I cannot define regexps (see example http://framework.zend.com/manual/en/zend.cache.frontends.html#zend.cache.frontends.page.examples. It ...
0
votes
1answer
139 views

How do i access the url variable defined in the Zend Framework config.ini

[dev] great.url="www.google.com" [test : dev] great.url="www.yahoo.com" [prod : test] great.url="www.aol.com" I have my own functions which return the Config of the environment that is ...
-1
votes
1answer
86 views

How to read protected config values in zend framework

Hii... I would like to read protected database values from config file in datagrid file, plz help how can I do that...thanx in advance.