<br><br><div class="gmail_quote">2011/7/27 Dante Bravo <span dir="ltr"><<a href="mailto:danteobravo@gmail.com">danteobravo@gmail.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Alguien podria indicarme de porqué me aparece el sgte error cuando<br>
deseo ingresar en Docentes->Administrar<br>
<br>
[?php /** * autoDocente actions. * * @package ##PROJECT_NAME## *<br>
@subpackage autoDocente * @author Fabien Potencier * @version SVN:<br>
$Id: actions.class.php 3501 2007-02-18 10:28:17Z fabien $ */ class<br>
autoDocenteActions extends sfActions { public function executeIndex()<br>
{ return $this->forward('docente', 'list'); } public function<br>
executeList() { $this->processSort(); $this->processFilters();<br>
$this->filters =<br>
$this->getUser()->getAttributeHolder()->getAll('sf_admin/docente/filters');<br>
// pager $this->pager = new sfPropelPager('Docente', 20); $c = new<br>
Criteria(); $this->addSortCriteria($c); $this->addFiltersCriteria($c);<br>
$this->pager->setCriteria($c);<br>
$this->pager->setPage($this->getRequestParameter('page', 1));<br>
$this->pager->init(); } public function executeCreate() { return<br>
$this->forward('docente', 'edit'); } public function executeSave() {<br>
return $this->forward('docente', 'edit'); } public function<br>
executeEdit() { $this->docente = $this->getDocenteOrCreate(); if<br>
($this->getRequest()->getMethod() == sfRequest::POST) {<br>
$this->updateDocenteFromRequest(); $this->saveDocente($this->docente);<br>
$this->setFlash('notice', 'Your modifications have been saved'); if<br>
($this->getRequestParameter('save_and_add')) { return<br>
$this->redirect('docente/create'); } else if<br>
($this->getRequestParameter('save_and_list')) { return<br>
$this->redirect('docente/list'); } else { return<br>
$this->redirect('docente/edit?id='.$this->docente->getId()); } } else<br>
{ $this->labels = $this->getLabels(); } } public function<br>
executeDelete() { $this->docente =<br>
DocentePeer::retrieveByPk($this->getRequestParameter('id'));<br>
$this->forward404Unless($this->docente); try {<br>
$this->deleteDocente($this->docente); } catch (PropelException $e) {<br>
$this->getRequest()->setError('delete', 'Could not delete the selected<br>
Docente. Make sure it does not have any associated items.'); return<br>
$this->forward('docente', 'list'); } return<br>
$this->redirect('docente/list'); } public function handleErrorEdit() {<br>
$this->preExecute(); $this->docente = $this->getDocenteOrCreate();<br>
$this->updateDocenteFromRequest(); $this->labels = $this->getLabels();<br>
return sfView::SUCCESS; } protected function saveDocente($docente) {<br>
$docente->save();<br>
<br>
<br>
Desde ya, muchisimas gracias<br>
<br>
_______________________________________________<br>
Alba-usuario mailing list<br>
<a href="mailto:Alba-usuario@lists.ourproject.org">Alba-usuario@lists.ourproject.org</a><br>
<a href="https://lists.ourproject.org/cgi-bin/mailman/listinfo/alba-usuario" target="_blank">https://lists.ourproject.org/cgi-bin/mailman/listinfo/alba-usuario</a><br>
</blockquote></div><br>Hola buen día,<br>Fijate que el error aparece por que está mal el archivo php.. comienza con una [ y tiene que comenzar con < <br><br>Tenés: <br>
[?php /*<br clear="all"><br>Y deberías tener:<br><?php <br><br><br>Te recomiendo que te actualices la versión del sitio, la 1.0, o por svn..<br><br>A alguien más le ocurre ese error??<br>-- <br>Sanchez Héctor<br>PressEnter - <a href="http://www.pressenter.com.ar" target="_blank">http://www.pressenter.com.ar</a><br>