Author |
Message |
jimfries
New Member


Joined: Sep 25, 2009
Posts: 4
|
Posted:
Sun Oct 25, 2009 3:05 pm |
|
Fresh Installation of RavenNuke_v2.4.00, installed using the INSTALLATION via the web browser. I've tried this with both a MySQL 4.1 and 5.0 Database.
The issue is when I'm attempting to look at a Content Page. I can create the page just fine, and Edit it, but when you go to look at the page itself, I get the error below:
Quote: | Fatal error: Call to undefined function: mb_internal_encoding() in /html/includes/class.autokeyword.php on line 110 |
When I looked into the class.autokeyword.php, line 110 is referring to the $this->encoding = $encoding; line below (4th line in this):
Code: 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
}
|
I'm a novice in coding, so I have no idea what that's referring to.
Any suggestions? |
|
|
|
 |
spasticdonkey
RavenNuke(tm) Development Team

Joined: Dec 02, 2006
Posts: 1693
Location: Texas, USA
|
Posted:
Sun Oct 25, 2009 3:25 pm |
|
|
|
 |
Palbin
Site Admin

Joined: Mar 30, 2006
Posts: 2583
Location: Pittsburgh, Pennsylvania
|
Posted:
Sun Oct 25, 2009 3:32 pm |
|
That is an internal PHP function. What version of PHP are you using? |
_________________ "Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." — Brian W. Kernighan. |
|
|
 |
jimfries

|
Posted:
Sun Oct 25, 2009 4:07 pm |
|
Its through Godaddy.com, from my admin panel, it says:
PHP Version: PHP 4.x |
|
|
|
 |
Palbin

|
Posted:
Sun Oct 25, 2009 4:18 pm |
|
This function requires a minimum of 4.0.6 and we require 4.1.0 as a minimum. I can not be sure what version you have, but I would ask Godaddy. Unless you have a reason for being on a PHP 4 it would be in your best interest to have them move you to a PHP 5 server.
You may have the opinion to switch between PHP 4 and 5 in your cpanel. Some hosts allow that. |
|
|
|
 |
spasticdonkey

|
Posted:
Sun Oct 25, 2009 4:34 pm |
|
i had a godaddy once, try adding this at the top of your htaccess
AddHandler x-httpd-php5 .php
AddHandler x-httpd-php .php4 |
|
|
|
 |
montego
Site Admin

Joined: Aug 29, 2004
Posts: 9457
Location: Arizona
|
Posted:
Mon Oct 26, 2009 9:16 pm |
|
You may also want to check with them to see if they have the mb extension compiled into PHP. I do not believe that it is complied in by default... at least in the earlier PHP versions possibly. |
_________________ Only registered users can see links on this board! Get registered or login!
Only registered users can see links on this board! Get registered or login! |
|
|
 |
|