Tagged Questions
The autoloader tag has no wiki summary.
5
votes
3answers
142 views
Optimize my performance
I'm working on a project with Zend Framework 1.11, Doctrine 2, some Symfony 2 componenents and others tools & libraries.
I'm trying to optimize performance using Xdebug & Webgrind.
I've ...
5
votes
9answers
411 views
JavaScript Autoloader?
Is there a solution out there where I can have JavaScript/jQuery autoload dependent files when needed? For example, consider this scenario:
I have an autoloader script listening for when a ...
4
votes
3answers
240 views
Autoloader for functions
Last week i learned that classes could be not included in your project by writing an autoload function __autoload(). The same day i learned that using the autoloader wasn't only a technique but also a ...
4
votes
2answers
161 views
Is it possible to exclude '.' (ie. current dir) from PHP's include path?
From perusing the comments at
http://php.net/manual/en/function.set-include-path.php , it seems to me that '.', or rather basename(__FILE__), is always implicitly added to PHP's include path. Is it ...
4
votes
2answers
187 views
Reduce number of included files
My application based on Zend Framework and Doctrine includes > 300 files on each request. They are mostly the same files.
This is a quite huge overhead. Partially solved by Zend_Cache (and Memcache), ...
3
votes
1answer
101 views
Doctrine2 - Single Table Inheritance
I'm trying to apply this tutorial to my project, but I don't get it working. Everytime I try to update my schema i get an error:
Fatal error: Cannot redeclare class Rueckgrat\App\Models\ProjectSetting ...
3
votes
3answers
443 views
How to integrate ezComponents with magento
in a 'native' Zend Framework application I would enable the use of ezComponents by adding the autoloader of ezComponents to Zends autoloader:
$autoLoader = Zend_Loader_Autoloader::getInstance();
...
2
votes
3answers
82 views
Auto-load/include for JavaScript
I have file called common.js and it's included in each page of my site using <script />.
It will grow fast as my sites functionality will grow (I hope; I imagine). :)
Lets example I have a ...
2
votes
2answers
55 views
symfony: How to change a sfCoreAutoloader class path?
I want symfony to use my own sfConfigCache.class.php, but I don't know how to modify the default path in the autoloader array. Or is there another way to tell symfony to use my class?
2
votes
2answers
2k views
Use Zend_Autoloader for Models
does someone knows how to use the "new" Zend Autoloader to Load Models ? In the Moment my Configuration looks like this :
application.ini
# Autoloader Namespace
autoloadernamespaces.0 = "Sl_"
...
1
vote
3answers
84 views
How to use `spl_autoload` to load all class files in a directory? [closed]
I read in the manual about http://php.net/autoload and found about this spl_autoload function, But how does it work? I don't understand the manual...
If I want to load all classes in libs/ folder ...
1
vote
1answer
119 views
Autloading classes from Symfony Task
I'm working with a Symfony 1.1 code-base and attempting to write a plugin containing a task that will automate some processes.
Currently I'm finding that inside the Task, Symfony does not completely ...
1
vote
2answers
175 views
form_validation class does not load (codeigniter)
My script fails to load form_validation class.
I called it from autoload.php, controller's _construct method and the method i was intend to use (ie. login() method)
autoload.php
...
1
vote
1answer
290 views
Using PEAR libraries in custom Magento modules produces “Failed opening required…” error
I have written a Magento module to listen for the "OrderSave" event and perform some API calls to a third party application. Most of the functionality is working great, but I needed to handle an XML ...
1
vote
2answers
64 views
Is there a way to dynamically change the name of the class being autoloaded?
For instance, say I have the following code.
$foo = new bar();
And an autoloader like this.
function autoload($class_name) {
$class_file_name = str_replace('_', '/', $class_name) . '.php';
...
1
vote
2answers
229 views
Zend Autoloader does not work on actual site
having a problem!
I'm using Zend Quickstart application as basement for (just started lol) development.
I have PHP/MySQL server on my local machine (WinXP)
So everything works fine there.
But then I ...
1
vote
1answer
329 views
How use custom libraries in Kohana 3
I am trying to include a user library that includes some user related functions such as checking if the user is authenticated and such. Now I am trying to make usage of the Kohana autoloader, but ...
0
votes
4answers
48 views
PHP like Autoloader in Java
Does the Java Interpreter support an Autoloader-Function or a possibility to extend his "Looking for a class"-function?
In PHP there is a function called spl_autoload_register (see ...
0
votes
0answers
22 views
how can I include a file inside an autoloaded file
(reworded my question)
I have a simple PHP class autoloader using spl_autoload_register
One of the classes I have needs a mediawiki framework included with it to function. Id like these to be ...
0
votes
1answer
227 views
What is wrong with this use of Silex' autoloader?
My application file:
<?php // /src/app.php
require_once __DIR__ . '/../lib/vendor/Sensio/silex.phar';
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
...
0
votes
1answer
37 views
zend autoloader doesn't work in doctrine2 models
i'm try to use Zend_Paginator class in my Doctrine2 repository, but php doesn't see this class, it try to find it in Doctrine autoloader paths, why standart zend autoloading doesn't use?
0
votes
1answer
50 views
Zend Framework: Need Auto Loading on IIS7 help
ZF is wearing me thin. I cannot get one instance of the AutoLoader to work without first using this to add it as a resource
require_once ('Zend\Loader\Autoloader.php');
...
0
votes
1answer
114 views
Zend Framework Autoloader - converting camel caps to lowercase dashed
I am having a problem (I think) with the autoloader in Zend Framework. I believe that this is not necessarily incorrect behavior on the part of the autoloader, but maybe something I am missing.
...
0
votes
2answers
89 views
Is autoloader different for framework vs. normal library
According to the PCR-0 proposal, all the autoloader needs is autoload() function. Zend has a few autoloading classes
Zend_Loader()
Zend_Loader_Autoloader()
Zend_Loader_Autoloader_Resource()
...
0
votes
1answer
417 views
PHP spl_autoload_register() doesn't find function
This code:
<?php
namespace designblob;
function autoloader($class){
include "wrappers/databaseWrapper.php";
}
spl_autoload_register('autoloader');
?>
throws this error:
...
0
votes
3answers
460 views
PHP Autoloader problem 5.3
I have index.php
<?php
include('_controller/Autoloader.php');
Gold_Autoloader::init();
$mysql = new Gold_MySQL();
_controller/Autoloader.php
<?php
class Gold_Autoloader
{
...
0
votes
4answers
1k views
Zend not autoloading models
Ok, this is driving me nuts!
I have a directory structure as follows:
application
- modules
-- default
--- controllers
--- models
---- DbTable
---- Cachmapper.php
--- views
My config file looks ...
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 ...
-1
votes
3answers
54 views
autoload['helper'] = array('url'); how can i load url helper by this a way like codeigniter
At this time I want to build a MVC framework. Everything is going fine but now i want to add another function (autoload classes like codeigniter). For exemple in my autoload.php I have:
...