Re: How to translate Classipress in another language
This is a wordpress config error so it could be a number of things. It's looking for a function but can't find it so make sure you've copied over all the wordpress files.
-Sometimes the one-click install or if you ftp everything over, it doesn't copy everything. I would recopy the main
wp-admin and
wp-includes folders over one more time and then reload your page.
-Make sure you don't have any blank lines or spaces at the top of your
wp-config.php file.
-Another suggestion is to add these two lines to your
wp-config.php file.
Code:
define('WP_SITEURL', 'http://example.com/wordpress');
define('WP_HOME', 'http://example.com/wordpress');
Substitute your actual install folder and domain for the example code. Point
WP to where its files are located. That will likely resolve this.
Reference post
here.