日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

php codeigniter ext,php – 私有服务器上CodeIgniter不正确的系统路径

發布時間:2023/12/1 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php codeigniter ext,php – 私有服务器上CodeIgniter不正确的系统路径 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

上傳到服務器的codeigniter項目給我以下錯誤.

Your system folder path does not appear to be set correctly. Please

open the following file and correct this: index.php

它在當地運作良好在000webhost.com托管.

When uploaded to private server of parallels it gives the above error.

我的index.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';

總結

以上是生活随笔為你收集整理的php codeigniter ext,php – 私有服务器上CodeIgniter不正确的系统路径的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。