Joomla

I use Joomla! as my tool to create websites for me and others. It is a CMS which enables me to be flexible in everything I want to do.

What is Joomla?

Joomla! is an award-winning Content Management System (CMS) that will help you build websites and other powerful online applications. Best of all, Joomla! is an open source solution that is freely available to everybody.

Joomla! is free, open, and available to all under the GPL license. We don’t claim to be perfect, and can’t promise to meet every requirement in the world. But for many web applications, our software is perfectly suited for the job. We are adding great new features with each release, and with the help and advice of our incredible user community we plan on delivering award-winning software for years to come.

Keep on reading my articles and you'll find some nice information.

To be kept up-to-date you can register and subscribe to the computer section or to one of the categories.



JomSocial with less errors PDF Print E-mail
User Rating: / 2
PoorBest 
Written by Bart Dorlandt   
Wednesday, 30 September 2009 22:32

I just tried the validator.w3.org to check my site and found out that jomsocial doesn't have the "alt" attribute in its image statements. Here is a quick fix...

Go into the component directory and into the template you use.

Edit the "activities.index.php"

  • add the "alt" attribute to the img tag.

Here is a list of files you need to edit as well.

./applications.edit.php:           <img src="/<?php echo JURI::base() . 'plugins/community/' . $application->apps . '/favicon.png'; ?>" class="icon" />
./applications.edit.php: <img src="/<?php echo JURI::base() . 'plugins/community/' . $application->apps . '/favicon.png'; ?>" class="icon" />
./groups.list.php: <img src="/<?php echo $group->thumb;?>" border="0" class="avatar" />
./groups.viewdiscussion.php: <img src="/<?php echo $creator->getThumbAvatar(); ?>" /><br />
./profile.header.php: <li><img src="/<?php echo $karmaImgUrl; ?>" /></li>
./profile.header.php.org: <li><img src="/<?php echo $karmaImgUrl; ?>" /></li>
./frontpage.index.php: <img class="avatar hasTip" title="<?php echo htmlspecialchars($row->caption);?>::<?php echo JText::sprintf('Uploaded by %1$s' , $row->user->getDisplayName() );?>" src="/<?php echo JURI::base() . $row->thumbnail; ?>" width="45" height="45" />
./frontpage.index.php: <img class="avatar hasTip" src="/<?php echo $row->user->getThumbAvatar(); ?>" title="<?php echo cAvatarTooltip($row->user); ?>" width="45" height="45" />
./frontpage.index.php: <a href="/<?php echo CRoute::_('index.php?option=com_community&view=profile&userid='.$row->id ); ?>"><img class="avatar hasTip" src="/<?php echo $row->smallAvatar; ?>" title="<?php echo cAvatarTooltip($row); ?>" width="45" height="45" /></a>
./frontpage.index.php: <img src="/<?php echo $video->thumb; ?>" width="50" height="50" class="avatar hasTip" title="<?php echo $video->title; ?>::<?php echo $video->description; ?>" />
./inbox.list.php: <img style="vertical-align:middle;" id="new-message-<?php echo $message->id;?>" src="/<?php echo JURI::base(); ?>components/com_community/templates/default/images/new.gif"/>
./inbox.list.php: <img style="vertical-align:middle; display:none;" id="new-message-<?php echo $message->id;?>" src="/<?php echo JURI::base(); ?>components/com_community/templates/default/images/new.gif"/>
./applications.browse.php: <img src="/<?php echo JURI::base() . 'plugins/community/' . $application->name . '/favicon.png'; ?>" class="icon" />
./photos.photo.php: <div class="photoBtn next"><img src="/" height="50"/></div>
./photos.photo.php: <div class="photoBtn prev"><img src="/" height="50"/></div>
./groups.viewgroup.php: <img src="/<?php echo $group->avatar; ?>" border="0" class="avatar" />
./groups.viewgroup.php: <img border="0" class="avatar hasTip" src="/<?php echo $member->getThumbAvatar(); ?>" title="<?php echo cAvatarTooltip($member);?>" />

Last Updated on Tuesday, 06 October 2009 13:31
 
Gallery2 Username instead of Real name PDF Print E-mail
User Rating: / 1
PoorBest 
Written by Bart Dorlandt   
Tuesday, 29 April 2008 20:55

I make use of the gallery2 integration in Joomla. Al my components and modules use the username instead of the real name to link to them or to show them. I also wanted this with gallery2 for my user albums and for the image block

Here is the way to do it. Open your favorite text editor and go to the following files (located from your gallery2 folder):

(Please note, this change will change all your gallery instances)

 

Last Updated on Sunday, 13 July 2008 16:40
Read more...
 
libWWW perl library, scriptkiddies denied PDF Print E-mail
User Rating: / 3
PoorBest 
Written by Bart Dorlandt   
Friday, 04 January 2008 16:07

libwww-perl (LWP) is fine WWW client/server library for Perl. Unfortunately this library used by many script kiddy, crackers, and spam bots. Of course you don't want them on your website.

So how to see if they are trying to hack your website. Take a look in your access log to see a match, by doing: (this might be a different location)

grep ‘libwww-perl’ /var/www/logs/access.log

An other option is to install JoomlaStats. With this tool you can get a lot of information in a nice overview. Take a look at the visitors section to see any libWWW browsers.

How to deny these scripts:

Last Updated on Friday, 04 January 2008 16:53
Read more...
 
Sort all content items in Joomla! backend PDF Print E-mail
User Rating: / 1
PoorBest 
Written by Bart Dorlandt   
Sunday, 30 December 2007 18:21

sortedbydateAnyone who has played around with Joomla for a while must have noticed that content items listed in the backend do not get sorted by date created. Instead they are sorted by section, then category and lastly by date created!

That is not a big deal if you have a corporate or personal website, with content getting updated rarely! But if you run a news website, with multiple sections/categories and a considerable amount of content items added every day, it is a big deal!!

Last Updated on Sunday, 30 December 2007 18:33
Read more...
 
website/username with community builder PDF Print E-mail
User Rating: / 2
PoorBest 
Written by Bart Dorlandt   
Tuesday, 18 December 2007 19:01

A friend of mine (Jasper who build this great site www.werkenopdeantillen.info) point me to this site. This site describes how to setup your joomla environment with community builder so you can type http://www.domain.tld/username. It will forward you to the actual user page.

I modified his way just a bit so it does just what I want. This is how to do it.

First you have to make sure your virtualhosts (if you use this) allows your .htaccess to be read and used. I use OpenBSD with apache and the default configuration says:

AllowOverride None

Last Updated on Friday, 04 January 2008 13:26
Read more...
 
Control Panel, User manager PDF Print E-mail
User Rating: / 2
PoorBest 
Written by Bart Dorlandt   
Monday, 23 July 2007 18:18

I have changed the control panel a little bit today. I wanted to point to the community builder instead of the user component. So this is what you do. Change the following line with the next one.

File: administrator/modules/mod_quickicon.php (line 75)

$link = 'index2.php?option=com_users';

$link = 'index2.php?option=com_comprofiler&task=showusers';

Last Updated on Tuesday, 16 October 2007 16:28
 
unauthorized emailform PDF Print E-mail
User Rating: / 1
PoorBest 
Written by Bart Dorlandt   
Tuesday, 17 July 2007 13:03
If you have problems with the emailform. Mind the following.
If you have disabled (hide) the print, pdf, email button in the main configuration and you have enabled it for a menu or a single item, it doesn't work.

This is explained in more detail here
 
Blogsidebar + Floating Module Orthopal PDF Print E-mail
User Rating: / 2
PoorBest 
Written by Bart Dorlandt   
Tuesday, 26 June 2007 15:36

My newest addition to the site is the combination of 2 modules (and 1 component belonging to one of them). This is what I wanted to create. I have a few articles in every category and I wanted to list them before the articles. So you would have an overview before the blog.

Unfortunatly I didn't succeed but I have figured out some that is quite as nice.

Last Updated on Thursday, 13 September 2007 00:29
Read more...
 
<< Start < Prev 1 2 Next > End >>

Page 1 of 2