If you want to add a box to your left column and display Tag Cloud in it, we can offer you to do this in 2 easy steps:
1. Create a file named 'tagcloud.php' that contains the following code:
<!-- tagcloud //-->
<tr>
<td>
<?php
require_once(DIR_WS_MODULES . 'tagcloud/m1_tagcloud.php');
$info_box_contents = array();
$info_box_contents[] = array('text' => 'TagCloud');
new infoBoxHeading($info_box_contents, false, false);
$info_box_contents = array();
$info_box_contents[] = array('text' => insertTagCloud(1, "DESC"));
new infoBox($info_box_contents);
?>
</td>
</tr>
<!-- tagcloud_eof //-->
and upload the created file into \includes\boxes\ directory
2. Open file includes\column_left.php and before last "?>" symbol insert this line:
require(DIR_WS_BOXES . 'tagcloud.php');
save and close the file