Ver Mensaje Individual
  #17 (permalink)  
Antiguo 03/01/2011, 11:41
Pituficosa
 
Fecha de Ingreso: diciembre-2010
Mensajes: 20
Antigüedad: 13 años, 3 meses
Puntos: 0
Respuesta: Problema: no puedo ver mi aplicación

Que tal!

Antes que nada espero tengan un excelente inicio de año, ahora, probando lo que dice masterpuppet, ya habilité el rewrite y ya pude ver mi carpeta de public, y cuando accedo a su contendo, veo la pantalla de bienvenida de zend framework, pero no mi aplicación, bueno la que yo programé, no se a que se deba esto o que es la línea que tengo que editar.

Mi index, está como sigue:

Cita:
<?php

// 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'),
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'
);
$application->bootstrap()
->run();
Quiero ver mi formulario, pero no se que tengo que modificar, según yo si es en este archivo. Espero me puedan orientar.

Última edición por Pituficosa; 03/01/2011 a las 11:46