Utilizar el parámetro:
<param name="wmode" value="opaque" />
Aquí voy colgando cosas que me resultaron de utilidad. No contestaré a comentarios, no es un blog para dar soporte a nada ni para responder dudas. Simplemente comparto lo que me valió, por si a alguien más le vale. Pero no respondo de los daños que su uso pueda ocasionar.
14 de octubre de 2012
8 de octubre de 2012
CONVERTIR DISCO DINÁMICO EN DISCO BÁSICO
Con el programa Easeus Partition Magic, que es gratuito y no se produce pérdida de datos ni de sistema operativo.
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>
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
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.
- In the Joomla! Global Configuration, click on the Text Filters tab.
- 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];
}
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];
}
Suscribirse a:
Entradas (Atom)