Please Log in or Create an account to join the conversation.
The problem is that i have readen ReadMe file one more time but i'm still a newbie so i don't really understand how to modif my PhpMyAdmin tables ?!? :S
Post edited by: Opinioo, at: 2008/04/03 15:17
Please Log in or Create an account to join the conversation.
I cannot do styling for you because of my short spare time but I can point you to the correct direction:
The module uses a "div" tag for the border and "p" tags for each line, so a link is, e.g.
div #uddeim-module p .uddeim-module-body a
Since the mailbox module does not load a specific css file you can add this information e.g. to your template cs file.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
swampy wrote:
uddelIM is looking for images/comprofiler/
but no file name for user with no image i would have thought that uddelIM would be looking for
/com_comprofiler/images/english/nophoto.jpg
I think I know where the problem is.
Do you have the CB Gallery enabled? If so you could try following:
In getpiclink.php > getPicOnly() replace the existing if-block with this one:
[code:1] if (file_exists($filenamelocal) && is_file($filenamelocal)) {
$gimmeback="<a href='".sefRelToAbs("index.php?option=com_comprofiler&task=userProfile&user=".$ofanid)."'>";
$gimmeback.="<img class='uddeim-tn' src='".$filenamelive."' alt='' />";
$gimmeback.="</a>";
} elseif (file_exists($filenameglocal) && is_file($filenameglocal) && $config->CBgallery) {
$gimmeback="<a href='".sefRelToAbs("index.php?option=com_comprofiler&task=userProfile&user=".$ofanid)."'>";
$gimmeback.="<img class='uddeim-tn' src='".$filenameglive."' alt='' />";
$gimmeback.="</a>";
} elseif (file_exists($filename2local) && is_file($filename2local)) {
$gimmeback="<a href='".sefRelToAbs("index.php?option=com_comprofiler&task=userProfile&user=".$ofanid)."'>";
$gimmeback.="<img class='uddeim-tn' src='".$filename2live."' alt='' />";
$gimmeback.="</a>";
}[/code:1]
The problem seems to be that the gallery filename is empty so the check checks the existing directory name and not the file name.
Please give feedback if it works.
Please Log in or Create an account to join the conversation.