Tagged Questions
The zend-application tag has no wiki summary.
5
votes
3answers
5k views
Zend_Log in application.ini
is there any example how to setup an instance of zend log from application.ini? I have only found an example for logging to an file, but i want to log into an SQLITE database table?
Zend Log resource
...
4
votes
4answers
344 views
What's the best way to handle something like a login page on top of Zend Framework? (And why does my implementation explode?)
EDIT: Sorry for the large amount of code here; I'm not sure exactly what's going on so I included more to be safe.
I've currently got a login page which farms out to a central authentication service. ...
3
votes
1answer
155 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 ...
3
votes
3answers
2k views
Persisting Zend Framework ACL Lists
Does the Zend Framework (or applications built using Zend_Application) provide any mechanism for persisting ACL lists, or is that detail left to the individual system/application developer?
Most of ...
2
votes
2answers
171 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
4answers
369 views
Accessing the Zend Application Bootstrap _init Functions After Bootstrapping
I have written a Zend Framework based cron service for parallel tasks, and ran into issues with the child threads sharing resources with the parent. I solved the database connection issue, but I'm ...
2
votes
2answers
553 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 ...
2
votes
1answer
441 views
Zend framework. how to pass options to custom front controller plugin?
I have custom front controller plugin that takes some options.
At this time I load it (plugin) in application.ini file like this:
resources.frontController.plugins.DynamicLayout = ...
2
votes
6answers
2k views
How to setup a Zend_Application with an application.ini and a user.ini
I am using Zend_Application and it does not feel right that I am mixing in my application.ini both application and user configuration.
What I mean with this is the following. For example, my ...
2
votes
1answer
259 views
Running a Zend_Application from the command line?
Is there a blessed way to run a Zend_Application from the command line? That is, I want to run a shell script that invokes a Zend_Application, loads its configuration, and then calls a specific ...
1
vote
1answer
34 views
Redirecting requests form a catch-all controller in Zend Application without looping forever
There are plenty of related posts to what I'm asking, but after some lengthy searches couldn't quite find what I was looking for, my apologies if it exists somewhere.
My goal -- ALL requests to my ...
1
vote
2answers
121 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
2answers
149 views
Is it possible to use Zend modular structure without including “application.php” (which loads too many excess resourses)?
I'm looking for solution how to get rid of including "application.php" and at the same time i want to have possibility to use modular structure in Zend Framework.
APPLICATION loads too many ...
1
vote
2answers
3k views
Zend Framework: Autoloading module resources in config.ini?
Is it possible, to configure the following behaviour in application.ini?
<?php
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
protected function _initAdminModuleAutoloader()
...
1
vote
2answers
930 views
Configuring Zend_Session Through Zend_Application
So I built a site template using Zend_Tool and added these parameters to the application.ini
resources.session.saveHandler.class = "Zend_Session_SaveHandler_DbTable"
...
1
vote
1answer
2k views
Using application.ini for configuring Zend_Application Bootstrap
I have written custom resources for my Zend_Application bootstrap.
In the manual the following code is given for loading them:
$application = new Zend_Application(APPLICATION_ENV, array(
...
1
vote
2answers
438 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 ...
0
votes
1answer
320 views
Zend autoloading configurations in bootstrap vs application.ini
Given:
1.
bootstrap:
$autoloader = Zend_Loader_Autoloader::getInstance();// Zend_Loader_Autoloader
$autoloader->registerNamespace('Ntk_');
equals to
application.ini:
autoloaderNamespaces[] = ...
0
votes
2answers
73 views
Separate Zend Application for control panel?
Shall I create a seperate Zend Application for the user backend of a web application?
My main concern is that I have to have a seperate Zend_Auth on both the public website (for clients to login) and ...
0
votes
0answers
107 views
Zend_Application memcached bootstrap
I'm in the process of implementing memcache into a Zend_Application. Currently I cache the action, it's view and the gettext initialization. There are just 60ms runtime per cached page request left.
...
0
votes
2answers
385 views
script create Zend_Db_Adapter based on settings in application.ini for cli php
I use Zend Framework 1.10 for web application and I'd like to use Zend_Db_Adapter (and maybe some of my models) for script in cli php that will be used with cron.
Could you please tell how to create ...
0
votes
1answer
233 views
Module Bootstrap not working
I have a Person Module and here is my bootstrap:
application/modules/person/Bootstrap.php
class Person_Bootstrap extends Zend_Application_Bootstrap_Bootstrap {
protected function _initAutoload() ...
0
votes
1answer
464 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
1answer
560 views
Zend_Translate, set up the log via the application resource plugin?
I'm using application resource plugins in a .ini file to set up my Zend_Translate with this code:
resources.translate.data = APPLICATION_PATH "/../languages"
resources.translate.adapter = "gettext"
...
0
votes
1answer
139 views
Zend Framework Autoloading not working when deploying
My Zend based website works perfectly on my localhost (using Mac). But When I deploy it on a linux web hosting company, I get the following errors:
On the index page which try to list my ads by ...
0
votes
1answer
108 views
How to override native resources?
I'm trying to create custom resource to extend existing zf resources.
It works fine if I choose a different like 'Myrouter' as resource name but if I try to override Router it doesn't work.
Here is ...
0
votes
2answers
437 views
How to set default translator in configs.ini?
I'm using Zend Framework 1.10.7 and I'm looking for a way to set the default translator.
I know I could set it in Bootstrap.php but I would like to set it up in the configs.ini to gather most of my ...
0
votes
1answer
326 views
zend_application showing blank page
I'm using Zend_Application to bootstrap my app.
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
public static $frontController = null;
public static $registry = null;
...
0
votes
2answers
644 views
Zend Layout - A “Smart” layout selector
I currently have Zend setup to look for a layout script in each module's view/scripts/layout.phtml file (ie: /application/modules/moduleName/scripts/layout.phtml). This is by setting layout[] to ...