Розібрався.
Оскільки мій хостинг-план не передбачає можливості зміни php.ini, то додавши в globals.php наступне:
<?php
/**
* @version $Id: globals.php 7424 2007-05-17 15:56:10Z robs $
...cutted
*/
ini_set( "session.save_path","/........./tmp");
// no direct access
defined( '_VALID_MOS' ) or die( 'Restricted access' );
Та замінивши
if( defined( 'RG_EMULATION' ) === false ) {
// The configuration file is old so default to on
define( 'RG_EMULATION', 1 );
}
на
if( defined( 'RG_EMULATION' ) === false ) {
// The configuration file is old so default to on
define( 'RG_EMULATION', 0 );
}
Все пішло.
Слава Google
😉