mantis使用

1.在安装mantis过程中老报database_api.php的609行foreach无效参数

初步认为是因为没有进行非空判断需要添加if判断代码如下

if(!empty($t_indexes)){
  foreach( $t_indexes as $t_current_index_name => $t_current_index_obj ) {
   if( utf8_strtolower( $t_current_index_name ) == $t_index_name ) {
    return true;
   }
  }
 }

2.安装成功后默认的管理员为administrator,密码root

3.默认系统的语言为英语,如果使用中文的话,需要再config_inc.php页面中添加$g_default_language='chinese_simplified';指定使用中文

注意:保存该文件格式为ANSI否则会报错

4.

 

 

你可能感兴趣的:(ant)