cvb | Bonjour,
Je suis entrain de développer un projet sous Zend !
En local sous Windows tout fonctionne...!
Dés que je suis sur OVH j'ai une page blanche.
En essayant de remonter le code, je tombe sur une erreur dans l'index.php.
Le nom "objmenu" ne renvoie rien du tout, tout comme "menu"... J'ai une page "blanche" !
Code :
- $objmenu = new Application_Model_Page();
- $menu = $objmenu->generervuemenu();
|
Code :
- // Define path to application directory
- defined('APPLICATION_PATH')
- || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
- // Define application environment
- defined('APPLICATION_ENV')
- || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));
- // Ensure library/ is on include_path
- set_include_path(implode(PATH_SEPARATOR, array(
- realpath(APPLICATION_PATH . '/../library'),
- realpath(APPLICATION_PATH . '/plugins'),
- realpath(APPLICATION_PATH . '/models'),
- get_include_path(),
- )));
- /** Zend_Application */
- require_once 'Zend/Application.php';
- // Create application, bootstrap, and run
- $application = new Zend_Application(
- APPLICATION_ENV,
- APPLICATION_PATH . '/configs/application.ini'
- );
- // Chargement automatique de Zend_Db_Adapter_Pdo_Mysql, et instanciation.
- $config = new Zend_Config_Ini(APPLICATION_PATH . '/configs/application.ini', 'production');
- $db = Zend_Db::factory($config->database->adapter,array(
- 'host' => $config->database->params->host,
- 'username' => $config->database->params->username,
- 'password' => $config->database->params->password,
- 'dbname' => $config->database->params->dbname,
- )
- );
- $objmenu = new Application_Model_Page();
- $menu = $objmenu->generervuemenu();
|
Une idée ?
D'avance merci
++ Message édité par cvb le 28-10-2013 à 15:20:37
|