CodeIgniter incorrecte du système de chemin d'accès sur le serveur privé

codeigniter projet lors du téléchargement vers le serveur me donne l'erreur suivante.

Votre système chemin d'accès au dossier ne semble pas être réglé correctement. Merci
ouvrez le fichier suivant et de corriger cela: index.php

il est de travail bien localement & sur 000webhost.com d'hébergement.

Lors du téléchargement sur serveur privé de parallels il donne l'erreur ci-dessus.

Mon index.php est comme suit.

<?php
define('ENVIRONMENT', 'development');
if (defined('ENVIRONMENT'))
{
switch (ENVIRONMENT)
{
case 'development':
error_reporting(E_ALL);
break;
case 'testing':
case 'production':
error_reporting(0);
break;
default:
exit('The application environment is not set correctly.');
}
}
$system_path = 'system';
$application_folder = 'application';
if (defined('STDIN'))
{
chdir(dirname(__FILE__));
}
if (realpath($system_path) !== FALSE)
{
$system_path = realpath($system_path).'/';
}
$system_path = rtrim($system_path, '/').'/';
if ( ! is_dir($system_path))
{
exit("Your system folder path does not appear to be set correctly. Please open the following file and correct this: ".pathinfo(__FILE__, PATHINFO_BASENAME));
}
define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));
define('EXT', '.php');
//Path to the system folder
define('BASEPATH', str_replace("\\", "/", $system_path));
//Path to the front controller (this file)
define('FCPATH', str_replace(SELF, '', __FILE__));
//Name of the "system folder"
define('SYSDIR', trim(strrchr(trim(BASEPATH, '/'), '/'), '/'));
//The path to the "application" folder
if (is_dir($application_folder))
{
define('APPPATH', $application_folder.'/');
}
else
{
if ( ! is_dir(BASEPATH.$application_folder.'/'))
{
exit("Your application folder path does not appear to be set correctly. Please open the following file and correct this: ".SELF);
}
define('APPPATH', BASEPATH.$application_folder.'/');
}
require_once BASEPATH.'core/CodeIgniter.php';
Et qu'est-ce que votre fichier/dossier structure?
peut-u s'il vous plaît fournir l' .htaccess que vous avez utilisé.

OriginalL'auteur Mohammad Sadiq Shaikh | 2014-01-15