1
hi'
Issue : impossible to display content pages because of this fatal error.
Quote:
Fatal error: Call to undefined function mb_internal_encoding() in C:\wamp\www\xxx\yyy\modules\content\class\autokeyword.php on line 72
It means there is a trouble with this line :
Quote:
mb_internal_encoding($encoding);
Full function is
function autokeyword($params, $encoding)
{
//get parameters
$this->encoding = $encoding;
mb_internal_encoding($encoding);
$this->contents = $this->replace_chars($params['content']);
// single word
$this->wordLengthMin = $params['min_word_length'];
$this->wordOccuredMin = $params['min_word_occur'];
// 2 word phrase
$this->word2WordPhraseLengthMin = $params['min_2words_length'];
$this->phrase2WordLengthMin = $params['min_2words_phrase_length'];
$this->phrase2WordLengthMinOccur = $params['min_2words_phrase_occur'];
// 3 word phrase
$this->word3WordPhraseLengthMin = $params['min_3words_length'];
$this->phrase3WordLengthMin = $params['min_3words_phrase_length'];
$this->phrase3WordLengthMinOccur = $params['min_3words_phrase_occur'];
//parse single, two words and three words
}
Environment :
• Xoops 2.4.5
• PHP 5.2.0
• PhpMyAdmin 5.1.36
If someone has already resolved this issue, it would be very welcome. Thanks in advance.
Still learning CSS and... english