The tag has no wiki summary.

learn more… | top users | synonyms (1)

0
votes
0answers
7 views

Highslide JS : problems autoload

I just suscribe in this forum because of some problems caused by the use of HighslideJS. First I really have to thank you because it works perfectly. It is a great big job ! Then I have to you inform ...
1
vote
1answer
26 views

PHP - Counting parameters of object constructor (external method)

I write a code that autoload classes, and I encountered a problem which I think is because of weakness implementation/design type. What I want to do is to count default parameters of an object ...
0
votes
2answers
35 views

PHP: autoloading multiple classes with namespaces

I'm trying to build my own framework for internal usage. I got structure like this: index.php boot / booter.php application / controllers / indexcontroller.php core / ...
0
votes
0answers
14 views

mediaelement.js autoload video when page is loaded

I am using mediaElement plugin which is great but for some silly reason it will not autoload the video! I have looked on this link: Autoplay MediaElementPlayer and nothing seems to work with what is ...
0
votes
1answer
15 views

Override Composer autoloader

Background I'm developing a series of websites which share a common engine. Something very similar to StackExchange's network of websites. Every webiste is a separate Symfony2 installation on a ...
0
votes
1answer
27 views

CodeIgniter - unable to load requested class

Yes, I imagine you are thinking to say that this question is a possible duplicate, however it isn't as the answers for the similar questions do not fix the issue I am currently having. I'm receiving ...
0
votes
2answers
43 views

__DIR__ and autoloading php

I don't know if this is exactly a problem in autoloading, but I am having this problem, here is my code: index.php require __DIR__ . '/app/autoload.php'; Folder structure: index.php app/ ...
0
votes
1answer
64 views

Autoloading in Laravel Tests

I'm trying to start writing tests within Laravel. I think it is good practice to write my own basic TestCase, that runs the test setup (for example migrations). <?php class TestCase extends ...
-2
votes
0answers
29 views

Zend Framework Won't Autoload Class

I am using Zend 1.12. I have a controller in one project folder that I am trying to update to call a class from one of my libraries. Prior to my (attempted) update, this controller loaded classes from ...
0
votes
0answers
17 views

autoload does not work for phpunittest

My __autoload method seems to work perfectly for my usual code but runs errors when I am testing the code with phpunittest. the code below will trigger a fatal error "class not found". any idea what ...
0
votes
1answer
52 views

Composer Not Generating Autoloads For Library

I've set up two projects, an 'init' and a library, which is required by the init. They both have PSR-0 autoloads set, but the autoload values from the library are not added to the ...
0
votes
1answer
49 views

codeigniter not loading application/core files

Got a problem with codeigniter with exteding the core. I build a website local and it workst perfect. Even when checking out on new machine or diferent php version ( tested on 5.3 and 5.2 ) it works ...
0
votes
1answer
35 views

rails autoload not picking monkey-patched class

I'm working on a Rails 3 application (specifically 3.2.13) on ruby 1.9.3-p392. In one of my controllers The "create" action can receive an image (as a ActionDispatch::Http::UploadedFile) I'm trying ...
0
votes
4answers
45 views

Autoloading as “mock” class in php

Lets suppose I want to auto load classes, so far thats normal. Now, lets suppose we are in "test" environment. I want to load other classes instead, this classes act just like others, but with some ...
1
vote
1answer
160 views

use PHPExcel with composer and Symfony2.2

I found this on SO: How to use PHPExcel correctly with Symfony 2 This works, but I want to use it with composer. The first part I already solved: to load PHPExcel for a special tag (the last stable ...
1
vote
2answers
68 views

Auto load classes by class name like Zend Framework

How can I auto load my framework controllers and models by their class name like the Zend Framework does? Zend Framework auto loads classes like so: new Application_Controller_Index(); meaning that ...
0
votes
1answer
33 views

Namespaces - __autoload() is requiring a wrong class

I am builded a new object in my file without namespaces: new My\Validator(); Above, in the same file I have got __autoload(): function __autoload($className) { var_dump($className); } The ...
0
votes
1answer
148 views

How to include third party lib in Zend Framework 2

I'm migrating application from ZF1 to ZF2. I have a controller depends on third party lib 'Solarium'. namespace Stock\Controller; class BaseController extends AbstractActionController { protected ...
2
votes
2answers
64 views

Yii Autoloading Custom Components

I'm trying to get Yii to autoload a component that doesn't follow Yii conventions. The library in question is Stripe which I moved into the Components folder. I was able to get it to autoload the main ...
0
votes
3answers
127 views

CodeIgniter: Fatal error: Call to a member function select() on a non-object

I am getting the above error while I'm trying to trying to access a function from my library as shown... <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class My_crud ...
0
votes
1answer
33 views

phpunit autoload clashes, phpunit autoload get's overriden

My FW uses an autoload function, which I add via spl_autoload_register('autoload'); I run phpunit on a directory. After it executes the first test, the system crashes with: PHP Fatal error: ...
0
votes
4answers
74 views

Dynamic class name in PHP

I'm trying to create a system that it has a GeneralObj. The GeneralObj allows user to initiate special objects for database's tables with a String of the table name. So far, it works perfect. class ...
0
votes
2answers
73 views

Cakephp App class code printing on the page and spl_autoload_register error

I have moved the CakePHP installation from my development server to production server (Config file and htaccess updated). The production server was using an older version of PHP and I have requested ...
-1
votes
2answers
175 views

Refresh page on scroll to top of page

I am creating a website in php, in which I want a division to reload by javascript when the user scroll to the top of the page. Can anyone guide me how to do this with example?
1
vote
3answers
42 views

how to manage includes and require_once in an effective way in php?

I have some defines in my index.php, with values pointing to some folders. I want to avoid the anoying requires: require_once("something/../../../file.php") The problem (because of the scope) is ...
0
votes
0answers
49 views

PHP — Class not found although autoload function?

I'm trying to include my classes using a pre-built __autoload function. It worked for one of the classes I have been handling, but as for the other one... Fatal error: Class 'M_Post' not found in ...
1
vote
2answers
483 views

Autoloading classes in PHPUnit using Composer and autoload.php

I have just installed PHPUnit version 3.7.19 by Sebastian Bergmann via Composer and have written a class I would like to unit test. I would like to have all my classes autoloaded into each unit test ...
2
votes
2answers
90 views

Does PHP namespace autoloading have to use folders?

I am quite confused in implementing namespace in php, especially when it comes to alias - importing classes. I have followed the tutorial from this tutorial: Leveraging PHP V5.3 namespaces for ...
0
votes
1answer
95 views

Silex, loading own classes

I play around with Silex, PHP micro-framework. At the moment I try to load my own classes but I have no luck doing it. Maybe somebody could explain me a little how does loading in Silex works? My ...
0
votes
2answers
111 views

How to include a library to a Zend Framework 2 application using namespace based autoloading?

I created a subfolder MyNamespace in /vendor/ (is it the correct place for own libraries?) and want to use classes like MyNamespace\Mvc\Router\MyCustomRouter in my application. How can I include this ...
0
votes
1answer
105 views

Understanding autoload and spl_autoload_register

I have a small framerwork and in my scripts I use autoload (I just now aware that I need to start getting rid of this function in my scripts) I am now trying to use the Twilio API, in their code, ...
0
votes
1answer
187 views

Using Rails 3 autoload paths isn't loading some folders but is loading others

I'm using the autoload path's in the application.rb to loads some extra modules and structs. This is the following bit of code doing it: config.autoload_paths += %W( ...
0
votes
0answers
51 views

PHP: spl_autoload_register() with namespace structure that matches folder structure below root

I know how to use autoload for folder structures above the root directory that match the namespaceing structure: folder: \name\space\test\ has file Hello.php that defines class ...
2
votes
3answers
104 views

Autoloaders in PHP - two running at a time

I understand how to register autoloaders and even how to create one, that's no issue at all. How ever the main issue is - how do you have two auto loaders running side by side for something like: ...
1
vote
1answer
50 views

cant access $db codeigniter

I have: $autoload['libraries'] = array('database'); and in a Model called teams, I have this inside of a function: $query = $this->db->query("Select * from Teams"); But I get this error: ...
0
votes
1answer
67 views

codeigniter autoload config file doesn't work in library

I created a customized config file called config2 and autoload it in autoload.php. In my model, i just use $this->config->item('item_in_config2'), it works well. However, in my paypal library, i ...
1
vote
1answer
97 views

Composer's autloader can't find app class. Why?

I have the following file structure: src/Models/Entity.php vendor/* index.php composer.* Entity.php contains <?php namespace Vendor\App\Models; class Entity {} index.php contains <?php ...
0
votes
1answer
144 views

composer does not autoload

I followed the composer instructions and installed composer successfully. I want to use tumblr's brand new php api client. My folder structure: vendor/ composer.json composer.lock myfile.php ...
0
votes
0answers
35 views

Custom php autoloader

Im trying to create a custom autoloader, which scan all directories, and save what classes are in each files. This is all I have: define ('PATH', 'C:\work\Symfony-1.4.20'); $files = array(); $map = ...
0
votes
0answers
301 views

Auto load on window scroll using jquery ajax?

I am trying to load the content automatically fetched from database using jquery on scroll event of window. I have implemented two ways for auto load. One way is data will get load on button click and ...
1
vote
0answers
65 views

Rails autoloading classes with the same name in class methods using singleton class syntax

Let's say I have two classes with the same name ("Bar") in different modules (the global namespace / no namespace and "Foo") in a Rails application. Both classes live in "app/models/bar.rb" or in ...
0
votes
1answer
285 views

Unable to AutoLoad Class using Composer

I have a project structure that looks like: app/ app/models/ app/controllers/ app/views/ public/ vendor/ composer.json Inside of app/controllers/IndexController.php, I have: require ...
0
votes
2answers
259 views

How to use one ZF2 module as a third part library?

Mainly the question is about ZF2 but the main task is how to integrate ZF2 to Yii. If it's ZF1 I just have to include files that I need. ZF2 has a little bit more complex stucture. Particularly I ...
0
votes
1answer
342 views

Doctrine2: ReflectionException' with message 'Class Comment does not exist in …' while trying use doctrine models in codeigniter controller

I got "Message: class_parents(): Class Comment does not exist and could not be loaded" while trying to use Doctrine models in CodeIgniter controller. Here is full stacktrace Fatal error: Uncaught ...
1
vote
1answer
173 views

Not open URL in Ext.TabPanel autoLoad?

Ext.onReady(function(){ var tabs = new Ext.TabPanel({ renderTo: Ext.getBody(), enableTabScroll: true, activeTab: 0, items: [ { title: 'Просмотр ...
0
votes
2answers
288 views

Codeigniter Call to a member function database() on a non-object in

Yes yes yes, I already searched over whole internet about this problem. Some results found, even from Stackoverflow. But most of them say "You should autoload database", or "parent::__construct();" ...
1
vote
3answers
43 views

PHP __autoload() with exception handling - waste of time?

I'm a bit new to OOP and I'm working on a 'framework' for my own application. I have my own autoload function which looks like below.. as well as an exception handling object. I won't be using any 3rd ...
0
votes
5answers
105 views

Instantiation classes in PHP OOP

I'm writing an application with about 10 classes to do different subjects. I have 2 options to instantiate them. 1- Having one file (or a base class) to instantiate all of them. In this way I'm sure ...
1
vote
2answers
44 views

PHP: How can I get spl_autoload to work within a class on the global scope?

I'm using spl_autoload for dependency injection. spl_autoload_register(function ($class) { $cFilePath = _CLASSLIB_ . "/class.$class.php"; if(file_exists($cFilePath)) { ...
0
votes
1answer
118 views

C++ Compiler or Linker optimization

I'm trying to create an autoload class system using class mapping as specified in best answere of this post: Is there a way to instantiate objects from a string holding their class name? so i've ...

1 2 3 4 5 10