[请益] PHP CodeIgniter 新手问题请教

楼主: missylive (Missy)   2014-04-07 15:06:42
A PHP Error was encountered
Severity: Notice
Message: Undefined index: base_url
Filename: core/Config.php
Line Number: 67
将外包做的网站载到本机local端时遇到的错误讯息
此错误讯息是第一个
依照讯息来看是以下这段有错误
function __construct()
{
$this->config =& get_config();
log_message('debug', "Config Class Initialized");
// Set the base_url automatically if none was provided
if ($this->config['base_url'] == '')
{
if (isset($_SERVER['HTTP_HOST']))
{
$base_url = isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off' ? 'https' : 'http';
$base_url .= '://'. $_SERVER['HTTP_HOST'];
$base_url .= str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']);
}
else
{
$base_url = 'http://localhost/1match/';
}
$this->set_item('base_url', $base_url);
}
}
麻烦高手帮忙一下!
还有另外两个错误讯息也是找不到办法
有高手愿意碰面帮忙我可以请喝咖啡喝茶~ 榆年^^
作者: mesak (阿米)   2014-04-07 15:31:00
没事不用动到 system 下的code 你应该去 app/config/config.php 里面修改 $config['base_url']会出现 行67 有问题,应该是 你连 CONFIG 这个档案都没读到
作者: RedMapleWing (闇夜 枫)   2014-04-08 15:52:00
路径有点怪…config怎么会在core底下?
楼主: missylive (Missy)   2014-04-10 15:24:00
感谢!改过app/config/config里面的档案之后就可运作了

Links booklink

Contact Us: admin [ a t ] ucptt.com