Cargue el framework y los módulos de Joomla 3.x en un archivo PHP externo

Estoy migrando mi sitio Joomla 2.5 a Joomla 3.3.

Ahora estoy luchando con cargar el framework joomla y mostrar un módulo en una plantilla phpbb. Cargar el marco de Joomla funcionó bien en Joomla 2.5 con este código:

define( '_JEXEC', 1 );
define('JPATH_BASE', '/var/customers/webs/tf2swiss/joomlasite');
define( 'DS', DIRECTORY_SEPARATOR );
require_once('../configuration.php');
require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' );
require_once ( JPATH_BASE .DS.'libraries'.DS.'joomla'.DS.'factory.php' );
require( JPATH_LIBRARIES. '/import.php');
// Joomla! library imports
jimport( 'joomla.environment.uri' );
jimport( 'joomla.user.user');
jimport('joomla.application.module.helper');

/* Create the Application */
$mainframe =& JFactory::getApplication('site');
jimport('joomla.plugin.helper');

Pero ahora no trabajo en Joomla 3.x. La página deja de cargarse donde está este código. El uso de PHP en archivos de plantilla phpbb está habilitado en las opciones de Seguridad.

¿Alguien sabe cómo cargar el framework joomla 3.x en archivos externos?

Respuestas a la pregunta(1)

Su respuesta a la pregunta