Zend Framework is an open source, object-oriented web application framework implemented in PHP 5 and licensed under the New BSD License.

learn more… | top users | synonyms (2) | zend framework jobs

0
votes
0answers
8 views

BjyAuthorize Deny All, Super User, User Spoofing

I'm building a web system with no public views (except for login fo course). So far, I got Bjyauthorize running with zfcUser, what I would like to do is: 1) Guard all routes but the login, so I don't ...
0
votes
0answers
10 views

Fatal error: Interface 'Zend\Config\Reader\ReaderInterface'

<?php require_once BLOCKS_ROOT_ENGINE . "Zend/Loader/StandardAutoloader.php"; //require_once BLOCKS_ROOT_ENGINE."library/Zend/Config/Reader/Xml.php"; class Engine { static public function ...
0
votes
0answers
10 views

zend db returns junk when called from controller but when result dumped in the model it is fine

Weird problem I have the following model in which if I call getSystemgoals() from a controller all is well and array of results are returned. Whenever I call getSystemactivities() what appears to be ...
0
votes
1answer
11 views

issues trying to use Zend_Config_Xml where the heck is it?

I am using ZF2 and I want to use Zend_Config_Xml. looking at the library, the directory structure looks like so... Zend/Config/Config.php Then there is Zend/Config/Reader/Xml.php But that does ...
0
votes
0answers
6 views

calling Doctrine model in zend framwork

Im using Doctrine 1 and zend framework and I have memory leak. I have Article.php (extends BaseArticle ) and ArticleTable.php (extends Doctrine_Table) that generated from database using Doctrine ...
0
votes
0answers
6 views

Zend Youtube Api keeps returning exception

Whenever I try to fetch some data from youtube, it keeps returning the "Error writing request to server" as an exception message. I'm using zend 1.12.3 and I tried some of the following, which by the ...
0
votes
1answer
8 views

Zend routes two routes need same count of params

I don“t know what I do wrong. I got two named Zend route: $route = new Zend_Controller_Router_Route( 'catalog/:categoryIdent/:productIdent/', array( ...
0
votes
1answer
14 views

How to control zoom level of product images in Magento?

Some product images on my Magento based ecommerce website are not of high quality. So when using default zoom functionality of Magento product images become blur which is not a good experience for ...
0
votes
0answers
17 views

Define validators from XML

I'm trying to load filter and validation rules dynamically from an XML file in order to validate a Zend_Db_Table_Row object. I'm using Zend_Config_Xml to read the rules from the XML file which reads ...
0
votes
1answer
25 views

php - Zend_Controller_Router_Route_Regex not working

I wanna match an url like this http://localhost/sunnetwap/1-hot and rewrite into this http://localhost/sunnetwap/?c=1&s=hot. In my Bootstrap and and _initRoutes function i wrote: ...
0
votes
0answers
10 views

google contacts: correct way to get multiple images

We have application that gets the list of user's Google Contacts. We use Zend Framework and build-in GData to achieve this. We wanted to add support also for images in contacts, but faced the ...
0
votes
0answers
9 views

Zend Job Queue - Job Queue demon is not waiting to complete script execution

I am adding job using script in zend job queue. Executing script is executing for around 3 hours but job queue immediately marks the status as completed and also stops script execution. Can any one ...
-1
votes
1answer
28 views

Cron code with wamp & zend

I want to use cron in my zend framework. Please just guide me through a simple example how to implement this. I want to use it with the following s/w : Zend Framework with windows 7 with wamp server ...
0
votes
1answer
25 views

Zend page cache storing empty string

We use zend page cache on our website to improve performance. We use memcached as the cache backend. THE PROBLEM: The cache works, ie you load a page for the first time and it will store it in the ...
0
votes
4answers
53 views

Convert object to integer [closed]

Convert object to integer in PHP I want to round figure the value of $row->getValue(); . I used following two functions for that - - round(x,prec); intval(x); But both function give error ...
0
votes
1answer
10 views

gettin error when implementing zend memcache

Please help me for the issue of getting a error, while trying to implement a memcache with my application to speed up as below: "The memcache extension must be loaded for using this backend" I am ...
0
votes
1answer
25 views

Checkbox checked using Zend Form

IN this way checkbox is created $is_conveyance_required = new Zend_Form_Element_Checkbox(FORM_CHECKBOX_PREFIX . 'is_conveyance_required', array()); ...
1
vote
0answers
37 views

Inject Row into Zend_Db_Table_Rowset_Abstract

I want to inject rows into a rowset object to avoid multiple inline selects. So normally you do $table = new Model_DbTable_Bug(); $select = $table->select(false); ...
0
votes
0answers
28 views

can't call parent function in child of zend_action_controller

I have the following class hierarchy and functions abstract class Client_Controller_Abstract extends Zend_Controller_Action abstract class Client_Tool_Controller_Abstract extends ...
1
vote
2answers
33 views

How to send an Zend Form with Dojo and XHR by pressing Enter

First, the things I use: I am using Dojo 1.6 and Zend Framework 1.11.5 - and no, I will not update now. Second, my situation: I have a Zend_Form with enabled Zend_Dojo support. I am creating the ...
0
votes
0answers
12 views

Zend Lucene - Partial Match on Keyword

I have created a Zend Lucene search index using the following analyser: Zend_Search_Lucene_Analysis_Analyzer_Common_TextNum_CaseInsensitive() I have indexed part numbers using 'keyword': ...
0
votes
1answer
20 views

Zend url router setting

How can I use Index Action in CommentController when url is http://site.com/api/location/{location_id}/comment/ i have code $r = new Zend_Controller_Router_Route_Regex('api/location/(.*)/comment', ...
0
votes
1answer
33 views

zend file not included

im following some example for doing login in Zend using Zend_Form but i get an error when trying to load a view Fatal error: Class 'Application_Form_Login' not found in ...
0
votes
0answers
12 views

Doctrine Mapping Two Tables and Columns

I want to map tow column from different table in DOCTRINE in my ZEND APPLICATION. Table:1: Country Table:2: Search Search will have 'IND' in my 'country_list' colunm and in 'Country' Table ...
0
votes
1answer
26 views

Zend skeleton application Class 'Album\Model\AlbumTable' not found

I'm trying to figure out what's wrong with my first tutorial using Zend Skeleton App. I'm using Zend Studio 10 + ZendServer and Zf2.2; managed to get the skeleton app working and now got stuck on a ...
-2
votes
0answers
16 views

Zend framework, change user session value using jQuery, Ajax [closed]

In my ZF multilingual project, I need to write a simple code in jquery or ajax in footer.phtml, which will do the following: By clicking on one of the flags (en or de), in the server-side session the ...
0
votes
0answers
14 views

Does the Google calendars API allow you to add an event as an iCalendar/vcard (string)?

I want to be able to add calendar events to different calendar providers as easily as possible. So that i don't have to write specific api code each time, i was hoping that i could perhaps use an ...
-1
votes
2answers
24 views

zend where are the controller and view associated

Im learning Zend I have a project basic hello world that is working, I have 2 files, and when pressing a button on my first view, it goes to a second view. On inspection of the files, I have: ...
1
vote
0answers
22 views

Zend Framework 2: 'ORA-00911: invalid character' when passing string parameter

I'm trying to execute a query with Zend Framework 2 Db Adapter in this way: $db = new Adapter(array( 'driver' => 'oci8', 'username' => 'myusername', 'password' ...
1
vote
1answer
20 views

Zend - How to include file in view like masterpae asp.net?

I have structure folder like this: http://nx9.upanh.com/b4.s37.d4/3fd103509d1ac25ece02096b5e25a5f0_55810779.capture.png (I really sorry, I'm not enough reputation) I want to include 2 files are ...
0
votes
0answers
8 views

access asp.net webservice from zend soap client with complex type

I am trying to access a webservice that has the following request / response specification: Request: POST /webservices.asmx HTTP/1.1 Host: tempuri.org Content-Type: application/soap+xml; ...
0
votes
1answer
23 views

Zend from a view to another view

Im a Zend Noob, I have it working showing the default index page [local] http://myzftest.test/zend_template/public/ I have created another view for my controller called about; I can see this ...
0
votes
0answers
7 views

accessing bounce back smtp status code

i have configured the mail using Zend_Mail_Transport_Smtp able to send the mail but unable to access the status when i try to access the bounce back status code even after giving invalid or non ...
0
votes
0answers
7 views

How to debug a request from ZendQueue?

i am using the ZendQueue for some jobs in my PHP application. I want to debug when the queue is executed by then ZendServer. Is that technically possible?
1
vote
1answer
41 views

Combining SQL query Array in PHP based on element

I have made a favorites function on my site that someone can choose different items that go together and save it as a favorite package in their account. All items are saved in a favorite table with a ...
0
votes
1answer
38 views

Get all data from sql php

I want to get all locations in table travel_location in mysql. This is my code $select = $this->_db_table->select()->from(travel_location, array('*')); $result = ...
0
votes
1answer
25 views

How to use the cascade option in doctrine2 to have associatied entities automatically persisted?

can someone explain me this: $user = new User(); /* why do I have to call Entity Comment while trying to insert into db? */ $myFirstComment = new Comment(); $user->addComment($myFirstComment); ...
0
votes
1answer
24 views

User scope with Zend Framework

I'm switching a Zend Framework application from mono-user to multi-user. What is the best approach to include the user scope in the controllers ? One way would be to add the user id in each methods ...
0
votes
0answers
15 views

How to launch zend application project on pagodabox.com

> I have created one zend application . > I have also created its repository on github. > I havr gone through **pagodabox.com** and read articles. > but still i don't no how ...
-1
votes
0answers
22 views

How configure Zend Framework 2.2.0 on WAMP windowXP [closed]

Try to configure Zend Framework 2.2.0 on WAMP in Window XP. I download the Zend Framework 2.2.0 and set Path for Enviorment varibale "Path= C:\wamp\bin\php\zend_framework\bin" and PHP.ini ...
1
vote
1answer
36 views

Why can't I echo a simple Zend form?

I've set up a simple form in my controller: $form = new Zend_Form; $form->addElement(new Zend_Form_Element_Text('name')); $this->view->form = $form; However when I go to echo it in my ...
0
votes
1answer
19 views

Zend - Couldnt load Zend/Application.php (failed to open stream)?

I have a structure as below (I'm using Zend 1.9.6): http://farm3.static.flickr.com/2605/4112306785_fc80d39833_o.gif (I'm really sorry. I'm not enough reputation.) When I run program, I get an ...
0
votes
0answers
17 views

ZF 1: How to set up Zend_Mail Transport into code

I was wondering if there anyway to move this configuration from the INI into de bootstrap.php in a way it would be the default globally. If so, how should I do it? I'm with zend 1.11. thanks in ...
0
votes
1answer
27 views

Zend start basic web site

im newbe to Zend Framework, i wanted to make 1 website using ZF tutorial but can't make it to work, i got error T_STRING in /library/Zend/Mvc/Application.php on line 10. code in 10 is as follow: ...
1
vote
1answer
28 views

How to implement default selected value from database while search in Zend Form Select

I have a list box in which all the name of the companies are displayed. When I click on search button it displays the result. But my selected search values are not displayed in the list box. It ...
0
votes
0answers
8 views

Zend debugger php5.4 - remote debugging

I cannot seem to make a connection to remote debug server I keep seeing this in the log but no joy. I see it is permission denied but do not understand for what? failed to connect to ZDD on ...
0
votes
1answer
50 views

Automatic convention-based routing within a module in Zend Framework 2--possible?

I'm trying to understand all the configuration necessary to get my routing working in Zend Framework 2, and I can't help but wonder if I am making this more complicated than necessary. I am working ...
0
votes
1answer
25 views

Zend php can not use rowCount for affected row [duplicate]

I update row in DB and check for affected row but its not working with rowCount() and also mysql_affected_rows. This is my code $result = $this->_db_table->update(array('password' => ...
0
votes
0answers
11 views

Zend Framework2 using Zfcuser & Bjyauthorize routing

I'm a beginer zend framework programmer. I did use ZfcUser for authentification and Bjyauthorize for authorization. I have to type of users : normal users and administrator . So what i want to do is ...
1
vote
0answers
21 views

Smarty not changing until Apache server restart

I have Smarty integrated into Zend and it's using Zend Cache with Smarty saving cache into separate folder. When I make changes to the smarty or PHP codes with Zend, it seems the only way to see ...

1 2 3 4 5 301