Компонент EasyDiscuss

Гугл по указанной ошибке показывает такой пример решения
Странно, команда в cron расписание прошла успешно, но только вот уведомления на почту не идут.
В файле cron.php все верно?
PHP:
<?php
/**
* @package        EasyDiscuss
* @copyright    Copyright (C) 2010 Stack Ideas Private Limited. All rights reserved.
* @license        GNU/GPL, see LICENSE.php
* EasyDiscuss is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
 
########################################
##### Configuration options.
########################################
 
// This should not contain http:// or https://
$host        = 'ТУТ ПРОПИСАЛ АДРЕС ВИДА http://SITE.RU/';
 
########################################
 
// In case the host name is not configured.
if( $host == 'ТУТ ПРОПИСАЛ АДРЕС ВИДА SITE.RU' )
{
    return;
}
 
$fp    = @fsockopen( $host , 80 , $errorNum , $errorStr );
 
if( !$fp )
{
    echo 'There was an error connecting to the site.';
    exit;
}
 
 
function connect( $fp , $host, $url )
{
    $request    = "GET /" . $url . " HTTP/1.1\r\n";
    $request    .= "Host: " . $host . "\r\n";
    $request    .= "Connection: Close\r\n\r\n";
 
    fwrite( $fp , $request );
}
 
connect( $fp , $host , 'index.php?option=com_easydiscuss&task=cron' );
 
fclose( $fp );
 
echo "Cronjob processed.\r\n";
return;
 
В кроне все верно. Проверьте как у вас настроен доступ к почтовому серверу. Дело в том, что Вы ранее писали
Код:
Email batch process finished.
Не удается соединиться с почтовым сервером.
, что в переводе означает
Код:
Email batch process finished.
Не удается соединиться с почтовым сервером.
Проблему надо искать здесь
 
Как корректно обновить с версии 2 до 3 easydiscuss? Для joomla 1.5.
На тестовом сайте обновилось, но что-то не корректно. Ставил поверх, но дало ошибку. Удалил и поставил вновь, но теперь косяк с переводом. Часть на русс часть как бы вообще без обозначения. Или нет вменяемого перевода?
 
EasyDiscuss Version 3.0.8270


Changelog
Fixed word censorship not applied on the content
Always use secure protocol when referencing to gmaps
Fixed styling issues on users page
Fixed ACL for adding comment
Fixed cannot select all Discussion (backend) for Joomla 1.5
Use DiscussHelper::getDBO() instead
Fixed issues with attachment size being converted to integer instead of double.
Fixed selector for btn-navbar to prevent conflicts with Joomla templates that utilizes bootstrap
Added backend settings allow guest to vote.
Fixed map location bug
Fixed issues with unpublishing badge or points on Joomla 3
Fixed issues with pending replies not generating correct activity.
Fixed links generated in JomSocial which includes /administrator/
Fixed issues with saving user's twitter
Added category description to the category page meta
Fixed reply email tags problem
Do not allow users to post into a container category
Fixed meta description extra whitespace
Fixed Jomsocial activity stream for reply
Fixed Backend permission issues
Fixed content plugin the joomla 3.0 compatibility issue
 
EasyDiscuss v.3.1.8601

Русский перевод для EasyDiscuss v.3.1.8601 (полный)
Скрытое содержимое доступно для зарегистрированных пользователей!
 
Каким образом он интегрируется с jomsocial и jomblog?
 
Назад
Сверху