Support jOOmla! Autoit!
 
joomla 1.0.10 台湾稳定版本常见问题集 输出PDF 打印 E-mail
Author Author: Autoit | Date Date:2006-07-19 | View Count View: 16976 | Digg Count Digg: 56
  • 搜索时出现问题.[出现找不到文件.] /includes/joomla.php

在 5712行下面增加一行:

global $mosConfig_absolute_path;
  • 在服务器没有 iconv 和 mbstring 函式时出现的问题,文件同上.

将 5995, 6004 行中的big5_func.inc改为big5_func.inc.php:

即:

require_once($mosConfig_absolute_path.'/includes/big5_func/big5_func.inc');

改为:

require_once($mosConfig_absolute_path.'/includes/big5_func/big5_func.inc.php');

升级到此版本的可以无须更改,因为默认是有big5_func.inc文件的.

  • 搜索里字符为奇数或多的时候出现截取问题. 修改search.php文件:

在17行增加:

include_once( 'includes/utf8.php' );

将76行的:

$searchword  = substr( $searchword, 0, 19 );

改为:

$searchword  = utf8_substr( $searchword, 0, 19 );

然后注释掉137到140行.

  //if ( $restriction ) {
   // html output
  // search_html::message( _SEARCH_MESSAGE, $params );
  //}

Permanent URL: http://www.autoit.cn/index.php/content/view/53/25.html

Shares: Google书签 Yahoo书签 雅虎收藏夹 365Key网摘 新浪ViVi 百度收藏 天极网摘 diglog 和讯网摘 POCO网摘 YouNote网摘 博拉网 天下图摘 spurl blogmarks BlinkList reddit digg Del.icio.us   |  Tags: 稳定版本  问题  

 
将搜索末尾的google页换成自己的   改造mod_latestnews的输出样式之二