8 de octubre de 2012

7 de octubre de 2012

JOOMLA: mostrar dirección email en el perfil

Editar el archivo \components\com_users\views\profile\tmpl\default_core.php
y añadir donde se desee:
        <dt>
            <?php echo 'Email'; ?>
        </dt>
        <dd>
            <?php echo htmlspecialchars($this->data->email); ?>
        </dd>

1 de octubre de 2012

JOOMLA: PERMITIR IFRAMES EN ARTÍCULOS

Joomla! 2.5
  1. In the Joomla! Global Configuration, click on the Text Filters tab.
  2. For the Super Users group, or any other trusted user group, set Filter Type to No Filtering. Make sure that you only set this option for user groups that can be trusted as setting the Filter Type to No Filtering will essentially allow the user to include any html in an article. 

Check that the Editor Profile Parameters allow IFrames

In the JCE Control Panel, click on the Editor Profiles button.
Click on the Profile name that the user, usergroup or component is assigned to, eg: 'Default'
Click on the Plugin Parameters tab, then on the Media Support tab.
Check that the Allow IFrames is set to Yes.

JOOMLA: NO SE VEN LOS ARTÍCULOS

Tiene que ver con la versión de PHP del servidor.

Para solucionarlo:
Ir a
includes/Cache/Lite/Function.php

buscar
$arguments = func_get_args();

sustituirlo por:
$arguments = func_get_args();
$numargs = func_num_args();
for($i=1; $i < $numargs; $i++)
{
  $arguments[$i] = &$arguments[$i];
}