Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/09/2008, 08:27
Javier82
 
Fecha de Ingreso: abril-2008
Mensajes: 1
Antigüedad: 16 años
Puntos: 0
Respuesta: Problema con EasyPHP y CGI

Hola! Eh estado Googleando por muchas horas y todavia no he podido solucionar mi problema.

Estoy queriendo usar el Bugzilla-3.0.5 con EasyPhp.

Instale el EasyPhp 2.0b1, el ActivePerl 5.10.0 Build 1004. Configure el archivo de EasyPhp como dicen aca y tambien ActivePerl tiene los paquetes de Bugzilla.

Cuando entro a bugzilla en vez de mostrarme el bugzilla me muestra el siguiente codigo:

Cita:
use Bugzilla::Update;

# Check whether or not the user is logged in
my $user = Bugzilla->login(LOGIN_OPTIONAL);

################################################## #############################
# Main Body Execution
################################################## #############################

my $cgi = Bugzilla->cgi;
# Force to use HTTPS unless Bugzilla->params->{'ssl'} equals 'never'.
# This is required because the user may want to log in from here.
if (Bugzilla->params->{'sslbase'} ne '' and Bugzilla->params->{'ssl'} ne 'never') {
$cgi->require_https(Bugzilla->params->{'sslbase'});
}

my $template = Bugzilla->template;
my $vars = {};

# Return the appropriate HTTP response headers.
print $cgi->header();

if ($user->in_group('admin')) {
# If 'urlbase' is not set, display the Welcome page.
unless (Bugzilla->params->{'urlbase'}) {
$template->process('welcome-admin.html.tmpl')
|| ThrowTemplateError($template->error());
exit;
}
# Inform the administrator about new releases, if any.
$vars->{'release'} = Bugzilla::Update::get_notifications();
}

# Generate and return the UI (HTML page) from the appropriate template.
$template->process("index.html.tmpl", $vars)
|| ThrowTemplateError($template->error());
No tengo idea de que esta pasando. Me pueden ayudar? Gracias!

Última edición por Javier82; 18/09/2008 a las 08:57