zend-framework

Order the result of findDependentRowset does not work

Hi, I'm using the findDependentRowset() of the Zend-Framework. Here, I want to define some selection settings like ORDER or LIMIT. The examplecode I've found doesn't work at all for me :-( $table = new MyTable(); // extends Zend_Db_Table $row = $table->fetchAll()->current(); $rowset = $row->findDependentRowset( 'table', $table-...

Help me correct my php include path on windows 7, i've hit a block

Hello!! i've been suggested to use the ZFDotrine from a post here but right now it turns out to be kind of headache where i don't know why zf can't see the zfdoctrine provider. I have a kind of shady environment on my windows 7.i have xampp 1.7.3 and zend server5.0.2 on my machine each with a different version of zf.so i downloaded z...

ZEND plugin running twice. Why or how to simulate it?

Hello guys, Im hours and hours finding why one of my ZEND plugin sometimes running twice (depends on URL) Note that my plugin has preDispatch and postDispatch methods and when I debugging the code it works like this: MY_Plugin:preDispatch (echo $_SESSION['DBG'] has value) MY_Plugin:postDispatch (unset($_SESSION['DBG'])) and then aga...

How can I get my photos from TWITTER using Zend Framework

$twitter = new Zend_Service_Twitter('myusername', 'mypassword'); $response = $twitter-> ?????????; Naybosy cna elp ...

Zend_Dojo and ValidationTextBox - invalid message does not always appear

Hello, I am using Dojo ValidationTextBox through Zend Framework in the following way: $form->addElement('ValidationTextBox', 'procedureName', array( 'label' => _('Procedure Name'), 'value' => $alarm->procedureName, 'attribs' => array( 'required' => true, 'invalidMessage' => 'Required!' ) )); Likewise, ...

Send SMTP Email through Exchange Server Using Zend_Mail - How to Diagnose these Errors

I have the following code: $config = array( 'auth' => 'login', 'username' => 'domain\user', 'password' => 'password', 'ssl' => 'tls', 'port' => 25, ); $tr = new Zend_Mail_Transport_Smtp('192.168.101.11',$config); Zend_Mail::setDefaultTransport($tr); $mail = new Zend_Mail(); $mail->setBodyText($text); $mail->setFrom('nor...

ZendX Jquery Decorator

How use partial decorator in Jquery Element I use this code for Form Element: $title = new Zend_Form_Element_Text('title'); $title->setRequired(true) ->setAttrib('class', 'inputbox') ->setLabel('Title'); $title->viewScript = 'RegElement.phtml'; $title->setDecorators( array( ...

Zend Db Table Double JOIN

Hello. I have two tables: 1. plan_payment_type: id plan_id 2. plan id payment_period It is Foreign key between plan_payment_type.plan_id and plan.id. In my code I know a $plan_payment_type_id. My task is to select payment_period. Steps: Select plan_id from plan_payment_type Select payment_period from plan with selected...

chat functionality on php application

SO has lot many questions of this type but not able to find correct solution. May be I am missing anything. I am struggling from last few days for finding better option for Chat service. Following thing I have to keep in mind before using any option.. It should be OS independent Installation should be easy Opensource so that can be mo...

How to delete a google calendar list feed with zend framework?

I've seen plenty of tutorials on how to delete calendar events with zend framework but none on actually deleting calendars themselves? (ie calendar lists). Is it possible? How would I do it? ...

Zend Date Weekday.

Hello. In Zend Framework I want to find a number of week day. echo Zend_Date::WEEKDAY_DIGIT; But this returns e. Today is Wednesday. And I want to return 3 (or 2 if Monday is 0). How can I do it? I know how do it with DateTime class. But I need Zend_Date. Thank you very much. ...

Zend_Db, how to work with related tables?

I want to learn to work with related tables in the ZF to the end. (1) Can anyone help with this? there are 2 users table and *users_openid* with a link to many. I would like to implement a relationship between the tables at Zend_Db so that such users from taking it openid on Drugs findDependentRowset, add openid, openid to take the user...

How to pass variables to Bootstrap.php

Is there a way how I could pass variables to Bootstrap.php? This is how I bootstrap in the index.php: // let's go! $application = new Zend_Application(APPLICATION_ENVIRONMENT, APPLICATION_PATH.'/configs/application.ini'); try { $application->bootstrap(); $application->run(); } catch (Exceptio...

Zend_Form cross validation

Hi I'm working on a system and i have a form where i need to do cross validations. By cross validation i mean : if someone is from the united states the system must be able to check if the state that have been selected is a valid united states state and not a canadian province. Ideally, the error output message should be beside the faut...

Why does Magento use 2 cookies per session?

For data security and privacy reasons I want to know why Magento uses two cookies for one frontend session. All I know is that one of them is being set in Mage_Core_Model_Cookie::set(..) and the other one in Zend_Session::expireSessionCookie(), but still I can't seem to figure out what they are used for. I just can't think of any reaso...

Zend Framework :: How should title html element get from view?(set view->headTitle())

Hi, Zend Framework :: How should title html element get from view?(set view->headTitle()). Example of view title output source: (I need to get: some browser title) <title> some browser title </title> My Code that print huge array: $this->view->headTitle('some browser title');//set working echo var_export($this->headTitle()); //get...

Zend_Db query and row count without pulling back everything up front

I've created my select: $select = $zdb->select() ->from(array("b" => "blogs"), array("id", "active", "updated_by", "title", "synopsis", "create_date", "body")) ->join(array("u" => "users"), 'b.updated_by = u.id', array("first_name", "last_name")) ...

Zend_Session: Session must be started before any output has been sent to the browser

I've run into this issue before, but I can't remember how to solve it. I have created a bare bones (can't get any simpler) controller, and am just trying to echo something to the browser, and I am getting this message: Fatal error: Uncaught exception 'Zend_Session_Exception' with message 'Session must be started before any output has be...

Zend - Do I need to use quote() when inserting/updating?

I'm developing an application that allows users to input into VARCHAR(255) fields in mySQL, so security is a major concern. I am having trouble understanding quote(). If I use quote('test'), the data returns as '\'test\'' on SELECT, which is undesirable. How do I unquote this data? If I bypass quote(), I can peek into phpmyadmin and...

How to clear PHP APC from a Selenium test?

In my PHP Zend Framework application, I am using APC to cache certain repeat requests to the database. Within the application, I can clear the cache with this command:apc_clear_cache('user') I am also running PHPUnit Selenium tests against this application. Before adding APC, I had no problems. I have a test that adds a test user to the...