Insights in Self Help

"I know not how I may seem to others, but to myself I am but a small child wandering upon the vast shores of knowledge, every now and then finding a small bright pebble to content myself with. Plato."

recent product reviews

RoundcubeMail – Max Attachment File Size

add to php.ini in root rcm directory:
post_max_size = 16M
upload_max_filesize = 16M
max_input_time = 180
memory_limit = 128M
max_execution_time = 180

Full Review

Joomla 2.5: Who is online – Name instead of Username

1) In (site)\modules\mod_whosonline\helper.php, change to:

// show online member names
static function getOnlineUserNames($params) {
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->select(‘u.name, u.id, a.username, a.userid’);
$query->from(‘#__users AS u’);
$query->innerjoin(‘#__session AS a ON u.id = a.userid’);
$query->where(‘a.userid != 0′);
$query->where(‘a.client_id = 0′);
$user = JFactory::getUser();
if (!$user->authorise(‘core.admin’) && $params->get(‘filter_groups’, 0) == 1)
{
$groups = $user->getAuthorisedGroups();
if (empty($groups))
{
return array();
}
$query->leftJoin(‘#__user_usergroup_map AS m ON m.user_id = a.userid’);
$query->leftJoin(‘#__usergroups AS ug ON ug.id = m.group_id’);
$query->where(‘ug.id in (‘ . implode(‘,’, $groups) . ‘)’);
$query->where(‘ug.id <> 1′);
}
$db->setQuery($query);
return (array) $db->loadObjectList();
}
}

2) In (site)\modules\mod_whosonline\tmpl\default.php :

Replace “username” by “name” :
username; ?>
becomes
name; ?>

Full Review

Great Film Comment

“your gonna have to show alot of tits for this one to be good”

Full Review

Idea

There is nothing more powerful than an idea whos time has come.

Full Review

Learning

The man who does not read good books has no advantage over the man who cant read them. -Mark Twain

Full Review

Problem Solving

Problems cannot be solved at the same level of awareness that created them. -Albert Einstein

Full Review

Evolution

It is not necessary to change. Survival is not mandatory –W. Edwards Deming

Full Review