Unfortunately I don't know how to check "local MTA's logs".
But I did the following modifications as recommended from this forum:
1)
Marc, you should be able to do this by simply changing the getLocalizedGalleys function in classes/article/PublishedArticle.inc.php to:
function &getLocalizedGalleys() {
$allGalleys =& $this->getData('galleys');
return $allGalleys;
}
2) commented out following this file: /lib/pkp/classes/i18n/PKPLocale.inc.php
// if (!@setlocale(LC_ALL, $sysLocale, $locale)) {
// // For PHP < 4.3.0
// if(setlocale(LC_ALL, $sysLocale) != $sysLocale) {
// setlocale(LC_ALL, $locale);
// }
// }
(treatment from
viewtopic.php?p=10191)
3) And for database, deleted some duplicated fields occurred while upgrading to OJS 2312:
SELECT * FROM user_settings WHERE setting_name = 'biography' AND (locale IS NULL OR locale = '');