Foros del Web » Creando para Internet » Sistemas de gestión de contenidos » Joomla »

Un problema extraño

Estas en el tema de Un problema extraño en el foro de Joomla en Foros del Web. Hola a todos, espero que esten bien por aqui, les contare rapidamente mi caso... Pasa que hace unos meses tenia instalado joomla 1.5 en mi ...
  #1 (permalink)  
Antiguo 26/01/2011, 12:16
 
Fecha de Ingreso: enero-2009
Mensajes: 18
Antigüedad: 15 años, 1 mes
Puntos: 1
Exclamación Un problema extraño

Hola a todos, espero que esten bien por aqui, les contare rapidamente mi caso...

Pasa que hace unos meses tenia instalado joomla 1.5 en mi pc sin ningun problema, lo instale y lo use todo muy lindo.

Hoy me descargue la version 1.6 de joomla la cual me pedia php 5, asi que tube que descargar la version mas actual de appserv, la cual descargue e instale, todo muy lindo hasta aqui...

la cosa que cuando voy a instalar joomla es decir cuando le digo: http://localhost/joomla/installation/index.php

no me instala ni me sale el panel de administracion, solo me sale todo el codigo fuente de el archivo, es decir

Cita:
<?php
/**
* @version $Id: index.php 20196 2011-01-09 02:40:25Z ian $
* @package Joomla.Installation
* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

// PHP 5 check
if (version_compare(PHP_VERSION, '5.2.4', '<')) {
die('Your host needs to use PHP 5.2.4 or higher to run Joomla 1.6.');
}

/**
* Constant that is checked in included files to prevent direct access.
*/
define('_JEXEC', 1);

/**
* Constant that defines the base path of the installed Joomla site.
*/
define('JPATH_BASE', dirname(__FILE__));

/**
* Shortcut for the directory separator character.
*/
define('DS', DIRECTORY_SEPARATOR);

// Set path constants.
$parts = explode(DS, JPATH_BASE);
array_pop($parts);

define('JPATH_ROOT', implode(DS, $parts));
define('JPATH_SITE', JPATH_ROOT);
define('JPATH_CONFIGURATION', JPATH_ROOT);
define('JPATH_ADMINISTRATOR', JPATH_ROOT.DS.'administrator');
define('JPATH_LIBRARIES', JPATH_ROOT.DS.'libraries');
define('JPATH_PLUGINS', JPATH_ROOT.DS.'plugins');
define('JPATH_INSTALLATION', JPATH_ROOT.DS.'installation');
define('JPATH_THEMES', JPATH_BASE);
define('JPATH_CACHE', JPATH_ROOT.DS.'cache');

/*
* Joomla system checks.
*/
error_reporting(E_ALL);
@ini_set('magic_quotes_runtime', 0);
@ini_set('zend.ze1_compatibility_mode', '0');

/*
* Check for existing configuration file.
*/
if (file_exists(JPATH_CONFIGURATION.DS.'configuration .php') && (filesize(JPATH_CONFIGURATION.DS.'configuration.ph p') > 10) && !file_exists(JPATH_INSTALLATION.DS.'index.php')) {
header('Location: ../index.php');
exit();
}

/*
* Joomla system startup
*/

// Bootstrap the Joomla Framework.
require_once JPATH_LIBRARIES.DS.'joomla'.DS.'import.php';

// Joomla library imports.
jimport('joomla.database.table');
jimport('joomla.user.user');
jimport('joomla.environment.uri');
jimport('joomla.html.parameter');
jimport('joomla.utilities.utility');
jimport('joomla.language.language');
jimport('joomla.utilities.string');

// Create the application object.
$app = JFactory::getApplication('installation');

// Initialise the application.
$app->initialise();

// Render the document.
$app->render();

// Return the response.
echo $app;

Intente instalar de nuevo joomla 1.5 como habia hecho anteriormente, es decir solo descargar, crear tabla en base de datos y ejecutar, pero exactamente lo mismo!!

probe con mis otras paginas que he diseñado que usan php, mysql, css y etc... y funcionan perfectamente, el problema es unicamente con joomla, incluso instale wordpress! y todo esta perfecto

Alguien sabe que puede pasar?

Etiquetas: instalación
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 04:30.