I was a user of iware from previous releases and noticed a change to the index file that I do not believe you meant to release. The title, keywords, and description tags in your install package reads...
<title>iWare demoversion</title>
<meta name="Keywords" content="">
<meta name="Description" content="">
...when I believe it should read ...
<title><?php echo $IW->Client_GetPageTitle($_REQUEST['D']); ?></title>
<meta name="Keywords" content="<?php echo $IW->Client_GetPageKeywords($_REQUEST['D']); ?>">
<meta name="Description" content="<?php echo $IW->Client_GetPageDescription($_REQUEST['D']); ?>">
This works great for me.

~ James