Ver Mensaje Individual
  #48 (permalink)  
Antiguo 23/01/2011, 11:12
Avatar de masterpuppet
masterpuppet
Software Craftsman
 
Fecha de Ingreso: enero-2008
Ubicación: Montevideo, Uruguay
Mensajes: 3.550
Antigüedad: 16 años, 10 meses
Puntos: 845
Respuesta: doctrine y codeigniter como manejar las conecciones?

El path a los modelos no es correcto, tenes un "/.." de mas, esto:

Código PHP:
Ver original
  1. $patita = array(
  2.     realpath(dirname(__FILE__).'/../..').DIRECTORY_SEPARATOR."models/generated",
  3.     realpath(dirname(__FILE__).'/../..').DIRECTORY_SEPARATOR."models");
  4. Doctrine::loadModels($patita);

deberia ser esto:

Código PHP:
Ver original
  1. $patita = array(
  2.     realpath(dirname(__FILE__) . '/..') . DIRECTORY_SEPARATOR . 'models/generated',
  3.     realpath(dirname(__FILE__) . '/..') . DIRECTORY_SEPARATOR . 'models'
  4. );
  5. Doctrine::loadModels($patita);
__________________
http://es.phptherightway.com/
thats us riders :)