i have live site developed in symfony framework,doing some modification,i created new module planbook,
the above error was comming.

class planbookActions extends sfActions
{

public function executeIndex(sfWebRequest $request)

 {

 $personalId = $request->getParameter('personal_id', $this->getUser()->getAttribute('detail')->getId());
        $this->personal = Doctrine::getTable('Personal')->find($personalId);
     //if user or his friend viewing planbook showe them all
     if ($this->getUser()->getAttribute('detail')->getId() == $personalId || $this->getUser()->getAttribute('detail')->isFriend($personalId)) {
            $this->planbook = $this->planbook->getPlanbook();
             }

         $this->countries = Doctrine::getTable("Country")->findAll();
  }     

}

How to solve it,any plz help me.

Hi,

did you try adding ???

  parent::executeIndex($request);

just below

 public function executeIndex(sfWebRequest $request)
 {

Not sure though, I only used this framework for less a month... So, my memory was not able serialized whatever I did on my practice applications.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.