Joomla.it Forum
Joomla! 3 => Joomla! 3 => : artimo 11 Sep 2014, 08:13:44
-
Ciao,
sto lavorando su Joomla 3.3.3 e sono arrivato al punto di inserire la lingua inglese. Tutto funziona fino a quando installo l'estensione multilingue Jdiction che mi chiede di andare su configurazione server e spostare il database da msqli a jdiction_msqli. Faccio l'azione ma non riesco a utilizzarlo e ritorno a spostare il database a msqli.
Adesso andando su accademianuovocinema.com/silviosardi arrivo gisutamente sulla Landing page ma quando premo sulla bandiera italiana rimane in loop e non va all'index.php. Ho già provato a rinominare htaccess .in htaccess_bkp per garantire il suo non un reindirizzamento ma non ha funzionato.
Purtroppo non ho backup recenti nè del sito nè del database.
Mi sapete aiutare?
Grazie
-
Ma il file che che rappresenta la Landing Page (espressione orribile) che file è? Come si chiama? Estensione?
-
Ciao,
sono d'accordo. Espressione orribile.
Il file è un index.html con solo, per ora, la bandiera italiana che premuta ti manda all'index.php.
Questo è l'index.php.
<?php
/**
* @package Joomla.Site
*
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
if (version_compare(PHP_VERSION, '5.3.10', '<'))
{
die('Your host needs to use PHP 5.3.10 or higher to run this version of Joomla!');
}
/**
* Constant that is checked in included files to prevent direct access.
* define() is used in the installation folder rather than "const" to not error for PHP 5.2 and lower
*/
define('_JEXEC', 1);
if (file_exists(__DIR__ . '/defines.php'))
{
include_once __DIR__ . '/defines.php';
}
if (!defined('_JDEFINES'))
{
define('JPATH_BASE', __DIR__);
require_once JPATH_BASE . '/includes/defines.php';
}
require_once JPATH_BASE . '/includes/framework.php';
// Mark afterLoad in the profiler.
JDEBUG ? $_PROFILER->mark('afterLoad') : null;
// Instantiate the application.
$app = JFactory::getApplication('site');
// Execute the application.
$app->execute();