作者missylive (Missy)
看板PHP
标题[请益] PHP CodeIgniter 新手问题请教
时间Mon Apr 7 15:06:42 2014
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);
}
}
麻烦高手帮忙一下!
还有另外两个错误讯息也是找不到办法
有高手愿意碰面帮忙我可以请喝咖啡喝茶~ 榆年^^
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 36.227.175.103
※ 文章网址: http://webptt.com/cn.aspx?n=bbs/PHP/M.1396854404.A.F93.html
1F:→ mesak:没事不用动到 system 下的code 你应该去 app/config/config 04/07 15:31
2F:→ mesak:.php 里面修改 $config['base_url'] 04/07 15:32
3F:→ mesak:会出现 行67 有问题,应该是 你连 CONFIG 这个档案都没读到 04/07 15:33
4F:→ RedMapleWing:路径有点怪…config怎麽会在core底下? 04/08 15:52
5F:→ missylive:感谢!改过app/config/config里面的档案之後就可运作了 04/10 15:24