前提条件,正常安装v9正常安装黄页模块,需要更改两个文件
1、根目录caches\configs\route.php文件,大概位置在24行,将源代码更改如下:
return array(
'default'=>array('m'=>'yp', 'c'=>'index', 'a'=>'init'),
);
2、根目录phpcms\modules\content\classes\html.class.php文件,大概位置在336行,将源代码更改如下:
include template('yp','index',$style);
改为:
# include template('yp','index',$style);
require PHPCMS_PATH."/phpcms/modules/yp/index.php";
$i = new index();
$i->init();
253

被折叠的 条评论
为什么被折叠?



