If you are getting a popup error message with an error like: "xajax data could not be converted from UTF-8" then follow these steps:
- locate and edit the file: /mambots/system/xajax.system.php
- Locate the lines near the bottom that contain $xajax->processRequests();
- before those lines add: $xajax->decodeUTF8InputOff();
- The final code should look like:
if (XAJAX_VER=='xajax_0.5'){
$xajax->processRequest();
} else {
$xajax->decodeUTF8InputOff();
$xajax->processRequests();
}
Powered by Joomla Knowledgebase

