Tagged Questions
-1
votes
1answer
144 views
Uncaught exception 'Zend_Config_Exception' [closed]
I am getting the following error in my ZendFrameWork application , I checked application.ini and config.ini but still not able to understand what the error is pointing to
Fatal error: Uncaught ...
0
votes
0answers
64 views
Traverse Zend_Form into Zend_Config ini file / Custom View Script
i have to use forms using Zend_Form (v1) without MVC environment.
Every form shoul have an custom view script /template.
My example using php-generation of forms:
index.php
$view = new Zend_View();
...
0
votes
1answer
25 views
Getting a zend application on dev
There's a web application developped with zend+propel and hosted on a production server (a debian squeeze). I need to replicate this application on my local pc (wich is a windows 7 + wamp).
I added a ...
1
vote
1answer
286 views
Adding action helper path in Zend Framework 1.11 for namespaced (5.3) classes
Does anyone know how to tell Zend Framework 1.11 how to find my namespaced action helper classes? I'm using proper PHP5.3 Namespaces so not the normal My_Helper etc.
I would love to do this without ...
1
vote
2answers
480 views
How to handle Zend Framework End User INI/Config settings
I have searched and searched for this but I think my terminology isn't correct as it keeps giving me the application settings for the zend site rather than an application settings for the End User.
...
1
vote
2answers
100 views
What is the real purpose of application.ini
I am a Zend developer. I just want to know the real purpose of the application.ini file. As far as I understood, it is used to specify the locations of controllers, views, models, modules, session and ...
0
votes
1answer
430 views
Overwrite Zend_Config and access parents nodes
I want to overwrite Zend_Config method __set($name, $value), but I have same problem.
$name - return current key of overwrite config value, eg:
$this->config->something->other->more = ...
0
votes
1answer
407 views
How to set base url in config.xml zend framework
How can I set base url in config.xml?. I'm using Zend Framework.
My index file has this following call:
$config = new Zend_Config_Xml($strDirectoryNameConfig . '/default/config.xml', 'config', ...
0
votes
1answer
330 views
Zend application.ini vs config.ini (or xml) - where should db credentials go?
I have seen a lot of code snippets on the web and examples showing different variations of Zend_Config and application.ini. Additionally, I have seen some debates about ini config files vs xml config ...
0
votes
2answers
418 views
Zend setting includePaths from config file
I have a zend 1.11 app.In the index.php file I have the following:
set_include_path(APPLICATION_PATH.'/library'.PATH_SEPARATOR.get_include_path());
And everything works.Now I want to set the ...
0
votes
1answer
934 views
Zend_Application_Bootstrap_Bootstrap doesn't load models
I am using Zend_Application_Bootstrap_Bootstrap, but framework can't load modeles.
Index.php
define('ROOT_PATH', realpath(dirname(dirname(__FILE__))));
define('APP_PATH', realpath( ROOT_PATH . ...
2
votes
3answers
873 views
Write config in Zend Framework with APPLICATION_PATH
For an application I'd like to create some kind of setup-steps. In one of the steps the database configuration is written to the application.ini file. This all works, but something very strange ...
2
votes
2answers
465 views
Zend config.ini parameters referred from a script
Zend framework talk.I knew that:
"When referring to configuration parameters within a script,
you'll prefix it with $this->config and converting the periods
to right-facing arrows"
ISSUE: ...
4
votes
3answers
724 views
zend module specific ini with phpSettings.display_errors
Been trying to override the phpSettings.display_errors from my application/modules/module5/config/module.ini.
My module5/Bootstrap.php has
protected function _initModuleConfig()
{
$iniOptions ...
2
votes
1answer
478 views
Zend_Config_Xml strange behaviour
I have a strange problem with Zend_Config_Xml.
Here is an example.
With this xml file https://gist.github.com/883465
this code:
$config = new Zend_Config_Xml('config.xml');
...
0
votes
0answers
28 views
Call validations from ini file
Hii...
How do I call validations from ini file added in configs for a particular zend module. Thanx in advance.
2
votes
1answer
1k views
How do I change the views scriptPath in the Zend Framework config?
Since there is absolutely NO DOCUMENTATION on the general config of the Zend Framework - which pisses me off sincerely! - I have to ask this here =(
I want to change the directory structure of my ...
1
vote
2answers
202 views
How to store numeric values in Zend_Config without loosing its type?
I decided to move some application settings from database to file system to be accessible via Zend_Config.
However I run in to one annoying thing, Zend_Config recognise all values as string ignoring ...
0
votes
2answers
3k views
XMLRPC Zend_Http_Client_Adapter_Exception' with message 'Read timed out after 10 seconds
I've Googled everywhere but no one has posted a solution, they all say to set the timeout in the config but how do you do this?
How do I reset/override this setting from my XMLRPC client or server?
...
1
vote
1answer
1k views
How to set up ErrorHadler via application.ini?
I set up default errorHandler in Bootstrap.php this way:
public function _initErrorHandler()
{
$frontController = Zend_Controller_Front::getInstance();
$plugin = new ...
0
votes
2answers
420 views
Zend_Framework config problem
I'am starting to learn Zend Framework , i set up my first project right and created my database and wrote the action indexAction in IndexController but when i try to see
the url ...
3
votes
1answer
1k views
Including variables inside curly braces in a Zend config ini file on Linux
I am trying to include a variable in a .ini file setting by surrounding it with curly braces, and Zend is complaining that it cannot parse it properly on Linux. It works properly on Windows, though:
...
1
vote
2answers
784 views
Getting a Reference to a Zend_Application's Config Object
Is there a helper method/object/methodology for getting a reference to a Zend_Application's config resource?
I know I can do something like
$config = new Zend_Config_Ini($file, $environment);
but ...
3
votes
3answers
1k views
PHP Zend Framework - Zend_Config and global state
I'm in the process of evaluating the benefits of Zend_Config_Ini versus using a simple constant file.
e.g. -
define('DB_HOST',localhost);
//versus
$config = new ...
2
votes
6answers
3k views
Zend Framework: How to unset a key in Zend_Registry?
I am testing my Zend Framework application and would like to test that something happens when a particular key is not set in the registry. This is the function that I am testing:
protected function ...