Tagged Questions
The zend-loader tag has no wiki summary.
4
votes
2answers
2k views
What's the difference between Zend_Application_Module_Autoloader and Zend_Loader_Autoloader_Resource?
I've noticed that the sames happens with:
$moduleLoader = new Zend_Application_Module_Autoloader(array(
'namespace' => '',
'basePath' => APPLICATION_PATH));
...
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 ...
1
vote
1answer
128 views
Is registering the autoloader needed zend_loader::registerAutoload()
I'm guessing this line registers the autoload function, which in turn loads needed Zend classes.
Zend_Loader::registerAutoload();
My question: is this line meant to be used in applications that ...
1
vote
3answers
1k views
Flex/Zend channel connect failed error
I am using Flex and php to develop my project. Everything works great in my local machine. However, when I upload my files to my server (godaddy.com). I got the error when loading my flex application.
...
0
votes
1answer
187 views
PHP Namesace Standards / Naming Conventions Zend vs PSR-0
Neither PSR-0 or Zend seem to be very specific on what one should do for the directory structure below for example:
/vendor
/core
router.php
request.php
/config
...
0
votes
1answer
108 views
Error Loading Zend Gdata framework into Wordpress
I am trying to use the Zend Gdata framework with wordpress but I am having some issues.
Now everything works perfectly fine when I test on localhost with XAMPP. However on my web server my code breaks ...
0
votes
1answer
145 views
Zend Framework - Override module
I'm working on multi-website CMS in Zend Framework.
I've came to a point where I need to override module from application/ folder in my website/application folder.
A bit better explanation of my ...
0
votes
1answer
475 views
Warning: require_once(Zend/Loader.php) [function.require-once]: failed to open stream
We have a gym display screen working on our server, and now the client is asking me to add another screen to it. I'm new to php and Zend, so any help is appreciated.
I'm trying to set up a sub ...
0
votes
1answer
85 views
Doctrine Get list of all Models
I want to get list of all my Doctrine Models. Someone know how to do ?
Thank's
0
votes
1answer
122 views
A redirection or file access problem about Zend Framework
I'm beginner at Zend Framework.
I have a php project with Zend 2.2.0 and PHP 5.2.4 but it cannot work truely.For ex at the staring point;
Failed opening required 'Zend_Loader_Autoloader.php'
but this ...
0
votes
1answer
278 views
Loading custom classes from the library directory in Zend
I'm trying to load a whole set of classes from a namespace. These are just utility classes, and I don't want to treat them as action helpers, view helpers, or any sort of plugin (I have those working ...
0
votes
3answers
286 views
Calling Models in Module in Zend Framework
I have a structure that is
application
application/modules
application/modules/default
application/modules/default/models
application/modules/admin
application/modules/admin/models
When calling ...
0
votes
1answer
66 views
problem starting with zend framework
I downloaded the zend framework 1.10 full. Unzipped, rename this folder to zf.
I am going to use zend framework as independent, will only call loader and include libraries when needed.
I put the ...
0
votes
2answers
5k views
Cant get the zend loader to load classes only under wamp
I'm trying out the zend framework classes for the first time. I am interested in using some of the individual classes for now.
Reading the documentation and some other q's here and in blogs I've tried ...
0
votes
1answer
189 views
how to add a second path to the same namespace in the zend autoloader
We are working on a new zend framework project and most things are going fine with the bootstrap:
<?php
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
protected function ...
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 ...
0
votes
2answers
774 views
Zend_Loader can't find my file?
I am following this tutorial on Zend Forms. I copied it verbatim and I got this error
Fatal error: Class 'forms_ContactForm' not found in /Quickstart/application/controllers/IndexController.php ...