Installer Joomla 1.6.6 sur Ubuntu

Résolu/Fermé
Utilisateur anonyme - Modifié par bionik le 4/09/2011 à 19:11
 Utilisateur anonyme - 5 sept. 2011 à 03:46
Salut tout le monde,

Je m'en remets à vous pour pouvoir installer Joomla! sur mon système :)

Voilà, j'ai téléchargé la version 1.6.6 sur le site officiel et j'ai suivi le tuto de la documentation sur le site d'Ubuntu:
http://doc.ubuntu-fr.org/joomla

J'ai installé les serveurs PHP, MySQL et Apache et quand j'essaie de lancer l'étape 1 décrite sur le site sur mon navigateur firefox:

Lancez votre navigateur préféré et dans la barre d'adresse saisissez la ligne suivante :
http://localhost/site-joomla/installation/index.php
,

Au lieu d'afficher la page d'installation, le navigateur (que ce soit firefox ou chrome) me propose de télécharger le fichier et une fois téléchargé quand je l'ouvre avec Opera (car les autres ne l'ouvrent pas et retéléchargent le ficher), j'ai le code source de la page:

<?php
/**
* @version $Id: index.php 20806 2011-02-21 19:44:59Z dextercowley $
* @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.'/configuration.php') && (filesize(JPATH_CONFIGURATION.'/configuration.php') > 10) && !file_exists(JPATH_INSTALLATION.'/index.php')) {
header('Location: ../index.php');
exit();
}

/*
* Joomla system startup
*/

// Bootstrap the Joomla Framework.
require_once JPATH_LIBRARIES.'/joomla/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;


J'ai durement suivi les instructions du lien mais là, je suis bloqué dès la première étape, je ne sais pas ce qui cloche.

Merci de bien vouloir me donner un coup de main pour l'installation de ce logiciel.


If you don't know where you go, get back where you come.......
A voir également:

1 réponse

Utilisateur anonyme
5 sept. 2011 à 03:46
Salut,

Problem Fixed!

J'ai suivi ces trois différents tutos et j'ai fini par installer Joomla! ainsi que les serveurs!

Voici les liens:
Installation Serveurs
Installation Joomla! Part1
Installation Joomla! Part2

Et le tour est joué, enjoy :=)
0