Cita:
Iniciado por NUCKLEAR Sabes que son rutas relativas? rutas absolutas? ¬¬
Usa $base_url
Gracias NUCLEAR por tu ayuda, un poco más tarde caí en la cuenta. pego el código por si a alguien le sirve de guía.
Código:
<?php global $user;
global $base_path;
if (!$user->picture)
$foto="images/perfil.png";
else
$foto="$user->picture";
?>
<table width="160" class="mi_cuenta">
<tr>
<td width="45" rowspan="3" valign="top" class="avatar"><img src="<?php print $base_path ?>/<?php print $foto;?>" alt="foto perfil" /></td>
<th align="left"><strong><?php print trim($user->name);?></strong></th>
</tr>
<tr>
<td align="left" valign="bottom"><a href="<?php print $base_path ?>/user/<?php print $user->uid?>">Mi cuenta</a></td>
</tr>
<tr>
<td width="103" align="left" valign="top"><a href="<?php print $base_path ?>/logout">Cerrar sesión</a></td>
</tr>
</table>