zend

Installing Zend Debugger on Wamp/Windows Vista

I'm trying to make Zend Debugger run on my Wamp server on Windows Vista. Here are steps, which I folowed: Download ZendDebugger-5.2.15-cygwin_nt-i386.zip from http://downloads.zend.com/pdt/server-debugger/ Copy \ZendDebugger-5.2.15RC1-cygwin_nt-i386\5_2_x_nts_comp\ZendDebugger.dll to c:\wamp\bin\php\php5.3.0\ext\ZendDebugger.dll Edit ...

How to Use Zend Library without installation of Zend Framework

How to use zend library without using zend framework installation? I am trying to use zend library(Mail and Mime) without zend framework installation, its not returning any error messages... but for my project i'm using Mail and Mime library only, How to use Zend Library without installing zend framework .. Thanks, Vinoth S ...

Does zend framework have html parser like simple html dom?

Hi, Does zend framework have html parser like simple html dom? Thanks ...

Google Buzz API OAuth Problem - Using Zend_OAuth (PHP)

I have successfully gotten an access_token, so it's not a problem with the 3-legged process. The problem starts when I try to add a new post/activity using the Buzz API... Here is my request: POST /buzz/v1/activities/@me/@self?alt=json HTTP/1.1 Host: www.googleapis.com Connection: close Accept-encoding: gzip, deflate User-Agent: Z...

Zend Route in a route

In my bootstrap file, I have a heck of a lot of routes. Is there a way to use a previous route as part of a new route? For example, if I want to change the url structure of route 'admin', instead of changing it 30 times for all the other routes, can I just include the route 'admin' in front of everything else? Something like: $router-...

Do i need to cram these weird things in Zend framework?

Hello, For the past 2 days i am struggling with Zend. It has such a strange application structure and so many global functions. Do i need to cram all these global functions? even for setting a simple doctype, i have to go to some bootstrap file and set things there. If i keep doing this sort of silly things when will i complete my appli...

Why do I receive different HTTP response codes when accessing Facebook XML feeds from different servers?

Hi all I'm using the Zend Framework, specifically the Zend_Feed class, to grab the Facebook XML feed at http://www.facebook.com/feeds/page.php?format=rss20&id=120635284755 and merge it with a similar Twitter feed for display on a website. The problem is that while I can grab the feed absolutely fine from both my local and remote te...

Zend Framework Action Helper Problem

Hi, I'm a relative noob when it comes to Zend Framework, however I've got a form that I need to use if a couple of views so I thought I might use a Action Helper to instantiate the form set a few attributes and pass it to the relevant view. I've created the Action Helper and can call it from within the relevant controller's action, howe...

Possible to download a file through the Zend HTTP Client?

I am trying to build a script where it downloads a file using the Zend http client: http://framework.zend.com/manual/en/zend.http.html but I can't find anywhere where it says how to do this so I'm wondering if its possible... The file is dependent on being logged in so I need to have it done through the zend http client so it can make us...

Zend_Form empty values problem -html result: <form action="" method="">

Hi, I have Zend_Form empty values problem: My View: I print only part of form elements, because that I not doing echo $this->form <form method="<?php $this->escape($this->form->getMethod()); ?>" > <label> Title</label> <?php echo $this->form->title; ?> <label>Body: </label> <?php echo $this->form->bo...

Zend_Form:: how remove all label from zend form?$title->removeDecorator('Label'); for one but for all elements?

Hi, Zend_Form:: how remove all label from zend form?$title->removeDecorator('Label'); for one but for all elements? Thanks ...

Zend Framework: count() returns 1 on empty result with findManyToManyRowset(...)

Hi :) While working on a small shop application i fetch all colors of an article using Zend Framework's "findManyToManyRowset" functionality. Example: $colors = $article->findManyToManyRowset('Shop_Colors', 'Shop_ArticlesToColors'); Some of the articles don't have and colors assigned. I test it using count($colors) on the ...

Zend_Form:: How can be code dublication prevented?When only choosen elements of the form used.

Hi, Zend_Form:: How can be code dublication prevented?When only choosen elements of the form used. (My restriction: Cant create label with zend_form because i have integrate cushycms- soo i have to write label by hand each time like i show in my code) The case: need to use in a lot of views same form elements not all of them. The sol...

FTP Upload and Download via PHP

What's the best way to implement FTP upload and download in PHP? I'm using CodeIgniter and have Zend libraries. ...

How we should use zend view helper form with validators + filters?

Hi, How we should use zend view helper form with validators + filters? Example that miss validators + filters from: http://framework.zend.com/manual/en/zend.view.helpers.html <form action="action.php" method="post"> <p> <label>Your Email: <?php echo $this->formText('email', '[email protected]', array('size' => 32)) ?> </label> ...

Flex/Zend channel connect failed error...

Hi guys. 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. The pop-up error message is send failed channel.connect.failed.error Netconnection.call.Badversion: url: http://mydomail/...

Get MIME Type via PHP

I have local access to files, which I need to get their MIME types. Working in WAMP/LAMP, CodeIgniter, and Zend libraries. What's the best way to get MIME type information? ...

Zend Framwork: Problem with links (like a href)

Hi, I've got a problem with Zend Framework, when calling an action. This action is called "uploadvideo" inside a controller called "UploadInterfaceController". Therefor the view is called "uploadvideo.phtml". Now all this is wrapped in a module called "Upload". The problem is, that I cannot call a link inside the uploadvideo.phtml. I ...

Zend Form Text value stays null

Hi, I've created a simple upload-form and got a little problem when submitting the data. The file is uploaded correctly, but my little description field stays null. Here's my form: class Upload_Form_Uploadvideo extends Zend_Form{ public function init() { $this->setName('video') ->setAction('interface/videoupload') ->setMet...

Zend framework router problem - strange routing behavior

I've set the following routes for in Zf: $router->addRoute( 'page', new Zend_Controller_Router_Route('stranka/:niceuri/:id', array('controller' => 'page', 'action' => 'index')) ); $router->addRoute( 'cat', new Zend_Controller_Router_Route('kategoria/:niceuri/:id', array('controller' => 'category', 'action' => 'index')) )...