Questions tagged [zend-loader]

32 questions
0
votes
1 answer

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 issue: Here's tree of my application (important…
Jezdimir Lončar
  • 433
  • 4
  • 14
0
votes
1 answer

Doctrine Get list of all Models

I want to get list of all my Doctrine Models. Someone know how to do ? Thank's
Siol
  • 311
  • 8
  • 21
0
votes
1 answer

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 php file is exist. And maybe a helper point about…
volkan
  • 209
  • 4
  • 12
0
votes
1 answer

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 great thanks to the docs). I have the Zend-like…
Nightwolf
  • 4,495
  • 2
  • 21
  • 29
0
votes
2 answers

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 on line 10 Which led me to believe it wasn't loading…
Levi
  • 12,214
  • 14
  • 43
  • 47
0
votes
3 answers

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 controllers in admin I understand they must be named…
inquam
  • 12,664
  • 15
  • 61
  • 101
0
votes
1 answer

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 call some zend components but aren't fully zend…
jblue
  • 4,390
  • 4
  • 46
  • 79
0
votes
0 answers

How to decode zend encoded file?

I am working on one project. its purchased from https://pintastic.com/products/Pinterest-Clone-Script-v3/open-source-license/module Its working on https://cryyo.com/ But when i am trying to setup code at localhost its throw the error Fatal error:…
Ankit vadariya
  • 1,253
  • 13
  • 14
0
votes
1 answer

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 unzipped zend framework into…
i need help
  • 2,386
  • 10
  • 54
  • 72
0
votes
1 answer

Setting up Zend Loader License path in .htaccess

I'm trying to set up Zend Loader but I need to set up zend_loader.license_path= in the php.ini. Sadly my server provider doesn't allow the editing of the php.ini, I'm trying to set it up in my .htaccess file. I tried : php_value…
wamp
  • 45
  • 1
  • 8
0
votes
1 answer

ZF2 and DOMPDF autoloading issue

I am using Zend Loader from here in my project and I am unable to configure Zend autoloader for the DOMPDF, working parallel to dompdf autoloader. Is there any way to set zend autoload to configure such that it fallback to dompdf auotloader. I see…
sakhunzai
  • 13,900
  • 23
  • 98
  • 159
0
votes
1 answer

creating a zf2 module without controllers with some autoloaded classes

I'm trying to create a Zend Framework 2 module that has some generic classes that I want to use in some of my controllers. I created a directory called 'tux-drink-zf2-module' in 'vendor' directory. I added that directory to…
ufk
  • 30,912
  • 70
  • 235
  • 386
0
votes
1 answer

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 Zend_Loader_Autoloader instead, but I can't seem to get it to…
lo_fye
  • 6,790
  • 4
  • 33
  • 49
0
votes
2 answers

Zend_Loader include doesn't throw exception

I am finding that when Zend tries to auto load a file which doesn't exist, it throws an error which I cannot catch in a try/catch block. This happens when I use class_exists too. I have fixed the problem by hacking zend: if ($once) { if…
xanld
  • 977
  • 1
  • 11
  • 22
0
votes
2 answers

Zend Fatal Error Uncaught exception 'Zend_Loader_PluginLoader_Exception' with message

am working with a Zend framework project fine in localhost, but when I put it in a public web server the folowing error comes: Fatal error: Uncaught exception 'Zend_Loader_PluginLoader_Exception' with message 'Plugin by name 'DocType' was not found…
Salem
  • 331
  • 1
  • 7
  • 21