Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
341 views

Autoloading Symfony classes in Zend_Framework

How to autoload Symfony classes in the app based on Zend Framework? Can I push some kind of Symfony autoloader to the Zend's Autoloader? I need to use some of the components like output escaper or ...
4
votes
2answers
3k views

Zend Framework 1.9: How to use Autoloading without MVC

how do i auto load zend framework classes when i am not using the MVC framework?
3
votes
1answer
260 views

Using PHP namespaces in a Zend Framework (v1) application

Is it possible in the current stable version of the Zend Framework (1.11), to work with application classes using PHP namespaces? Application\Form\Abc instead of Application_Form_Abc ...
3
votes
2answers
305 views

Module autoloader in Zend framework

I developing a project using Zend framework and I came across the following problem. I'm using Zend framework MVC folder structure generated using their zf.sh script. My library folder has the Zend ...
3
votes
2answers
173 views

Extend a controller from controller in another module?

I have this module called 'olo' which handles all our online ordering stuff. Now I have made a new module called 'olosec' because I wish make a different version with a slight changed flow, and some ...
3
votes
1answer
134 views

zend_loader_autoloader does not seem to load abstract class

I am getting a grip on Zend_Autoload but a non-zend class I have is not loading when extended. The autoloader is initialized like so: // Initialise Autoloader $autoloader = ...
3
votes
3answers
6k views

Zend Framework: Autoloading a Class Library

I've got a class library in defined here .../projectname/library/Me/Myclass.php defined as follows: <?php class Me_Myclass{ } ?> I've got the following bootstrap: <?php /** * ...
3
votes
3answers
921 views

new Zend_Loader_Autoloader not finding files

I just upgraded from ZF 1.7 to ZF 1.9, and almost everything works fine... except for Autoloader. Old: require_once('Zend/Loader.php'); Zend_Loader::registerAutoload(); New: require_once ...
2
votes
4answers
193 views

Why these 2 lines in Zend Bootstrap autoloading function

I've seen examples that has this block of code and other examples that didn't have the 2 lines commented MAYBE NOT. What exactly is the purpose of these 2 lines? $moduleLoader = new ...
2
votes
3answers
688 views

Zend autoloader not working on live site

I've just copied my dev site to the live server, updated configs with new DB connection details etc, but get the following error message: Fatal error: Uncaught exception ...
2
votes
1answer
1k views

Can Doctrine generated models have a prefix?

Is there an option in Doctrine that would specify a prefix for any classes generated by doctrine? I'm having trouble with the new Zend autoloader and autoloading models, the doctrine autoloader ...
1
vote
3answers
54 views

How to autoload a singleton class (private constructor) in zend controller?

I have a singleton class in my models directory and I have to use its function in Controller class. Doing it by require_once('file path'); and calling function as ClassName::FunctionName() works fine, ...
1
vote
1answer
322 views

how to add a 3rd party library to magento?

The library doesn't need to integrate with magento, it's mostly a wrapper that communicates with an API. I would like to be able to use this library and make these API calls from within a controller ...
1
vote
2answers
273 views

Is setting include path and autoloading two different things?

I'm noticing that adding the include path of a folder I need is not enough to access the classes. I have a folder application/tests/ which contains application/tests/Test.php class Test.php is ...
1
vote
2answers
519 views

Zend framework question about rest and modules

Guys I have the following structure in my project. application/ Bootstrap.php configs/ application.ini modules/ default/ controllers/ models/ views/ ...
1
vote
2answers
93 views

Choosing different versions of Zend Framework to load using Zend_Loader and it's issues

Okay, so, I wanna be able to choose different versions of Zend Framework (and other frameworks) using Zend_Loader. Well, the code isn't tricky at all, but the problem is, there are so many ...
1
vote
2answers
1k views

Zend Framework - Extend Module Controller

I have the following directory structure: modules/ api/ controllers/ ApiController.php InventoryController.php OtherController.php The init() method is common amongst ...
1
vote
2answers
267 views

Proper error handling in a custom Zend_Autoloader?

I'm building a custom autoloader based on Zend Framework's autoloading (related question here). The basic approach, taken from that question, is class My_Autoloader implements ...
0
votes
1answer
30 views

PHP class not found in autoloaded implementation file

I really hope this isn't a duplicate, but here I go: I use Zend's autoloader to load classes. It seems to work, at least it loads the correct file when instantiating my class (Common_TestTest) which ...
0
votes
0answers
35 views

Zend Framework on shared hosting with PHP as CGI

I have been reading a lot before coming to this situation of asking for help. I have been speaking with the hosting company too about getting some help, but their technical support were as ...
0
votes
2answers
39 views

How to replace Zend_Loader_Autoloader efficiently?

Due to performance issues (benchmarked) I'm trying to use another autoloader than the default Zend_Loader_Autoloader. I tried to different method, using : ...
0
votes
2answers
95 views

Doctrine 2 Autloading

How do set up autoloading with Doctrine 2 and Zend to load entities in the following directory structure: Application -Modules --Core ---Models ----Entities ----Repositories --CMS ---Models ...
0
votes
2answers
44 views

Zend_Loader_Autoload_Module does not load module classes

My mistake - I didn't read the error messages properly - I was still var_dumping Zend_Loader_Autoload in the bootstrap which was causing a "headers already sent" exception. Remember to try without ...
0
votes
1answer
46 views

zend autoloader error messages

I am using this autoloader to load multiple external libraries in my zend app. The classes are loaded correctly and works fine. But i seem to have an issue while loading classes using multiple such ...
0
votes
2answers
113 views

why does an error result from zend autoloader testing if a non-existant class exists?

Say I've registered the extra namespace "Tracker_" in the config file for some classes I've written, using autoloadernamespaces[]="Tracker_" Things with this namespace and autoloader work as ...
0
votes
1answer
91 views

Zend Autoloader - Load files from directory

I was wondering if there's any way to use Zend Autoloader to load all files from specific directory and subdirectories? I'm trying to include other libraries beside Zend such as JSTree. Thanks in ...
0
votes
3answers
285 views

Forms not found by autoloader in Zend module?

I'm getting pretty fed up with Zend's autoloader. I'm trying to load EditPassword from within PasswordController in the module structure as shown below. application.ini includePaths.library = ...
0
votes
3answers
268 views

addResourceType - how can I add Models_Mapper as a resource?

I'm writing a PHP application using PHP 5.3 and Zend Framework 1.11.7. I created model resource using the following command: protected function _initLoader() { $loader = new ...
0
votes
2answers
201 views

how can I configure default namespace and Model location for the AutoLoader in application.ini?

Using PHP 5.3 and Zend Framework 1.11.7 I've been trying to configure the AutoLoader to auto load my Model classes (for Zend_Db) that resides in the default directory application/models. I found the ...
0
votes
2answers
134 views

Autoloading in zend framework

how to autoload a class in custom directory on module path. My application's structure is like below application |_ modules |_admin |_api | |_Core.php |_elements |_Dialog.php ...
0
votes
2answers
466 views

Zend Autoloading models issue

Zend framework. I want to autoload my models classes inside models folder, from within bootstrap class. These models doesnt actually use any namespace (so I have Ex. User.php file's class named User ...
0
votes
2answers
71 views

Will a directory with a period break autoload resolution based on a namespace in Zend Framework?

I have a folder in my library folder which is named after my website. The folder path is like: ~\www\library\myWebsite.com If I'm using Zend autoloader to load the namespace of everything in the ...
0
votes
2answers
427 views

Zend Framework 1.11 really slow.. Why?

I Use Zend Framework 1.11 and this is really slow for me. I Have a button and then, when I click on it, that perform an ajax request. The response is Small. I Return a Hello World The ...
0
votes
3answers
156 views

Getting around a “problem” with the naming conventions used by the Zend Framework autoloader

Lets say that I have a table containing users. Each row in that table is thus a user. The important part here is the plural vs singular form. Now, let's look at the we set up models for these in ...
0
votes
3answers
410 views

Working on localhost but server returns “Failed to open stream: No such file or directory”

On my local machine the script works fine, but when I put it on the server I get: application/hooks/zend.php [9]: require_once(Loader/Autoloader.php) [function.require-once]: failed to ...
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
424 views

How to configure the Zend autoloader to load a custom path for resources before the default path

Separate but related to http://stackoverflow.com/questions/3363764/how-to-dynamically-override-forms-and-or-views-using-zend. I want Zend to try to load custom forms/views before loading a set of ...
0
votes
1answer
161 views

Use of any class / namespace with ZendFramwork

EDIT: Additional questions: do I have to add the '.php' at the end of new NAMSPACE_CLASSNAME Can I access any Zend package inside my controller / model, for example: /* ...
0
votes
1answer
92 views

How to upgrade Zend_Loader from 1.7 to 1.8?

I have been using this, and it works fine in 1.7, but not in 1.8. require_once('Zend/Loader.php'); Zend_Loader::registerAutoload(); It says it's deprecated, and that I should use ...