Hi again,
I have done two side by side installations for you. Both are Joomla 1.5.1 Dutch on a Windows Wampserver environment with PHP 5 and Apache 2.
Both installs use seperate MySQL databases and are completely clean installs. No errors, no messages and everything works. I loaded the sample content. And added nothing myself. The only thing I did was adjust the left user menu and adjust the login and logout redirection urls for the CB_login module in the \joomla\ directory installation.
I generated the code by changing the value for search engine friendly urls in the Administrator module and hitting F5 in the browser window that contained the homepage.
First the code that is generated bij the Joomla config in the root with engine friendly url's switched off:
Link used is: http://192.168.1.102/
Generated code (from page source in Firefox):
<link rel="stylesheet" href="http://192.168.1.102/components/com_uddeim/templates/monorange/css/uddemodule.css" type="text/css" />
<div id='uddeim-modulenew'>
<p class='uddeim-module-head'>
<a href='http://192.168.1.102/index.php?option=com_uddeim&task=inbox'>Privé Berichten
<a href='http://192.168.1.102/index.php?option=com_uddeim&task=inbox'>
</p>
<p class='uddeim-module-row'>uddeIM <a href='http://192.168.1.102/index.php?option=com_uddeim&Itemid=&task=show&messageid=1'>Welkom bij...
</p>
</div>
When I switch on the url's this becomes:
<link rel="stylesheet" href="http://192.168.1.102/components/com_uddeim/templates/monorange/css/uddemodule.css" type="text/css" />
<div id='uddeim-modulenew'>
<p class='uddeim-module-head'>
<a href='http://192.168.1.102/index.php/component/uddeim/?task=inbox'>Privé Berichten
<a href='http://192.168.1.102/index.php/component/uddeim/?task=inbox'>
</p>
<p class='uddeim-module-row'>uddeIM <a href='http://192.168.1.102/index.php/?task=show&messageid=1'>Welkom bij...
</p>
</div>
Both code snippets for the link at http://192.168.1.102/joomla/ are as follows:
<link rel="stylesheet" href="http://192.168.1.102/joomla/components/com_uddeim/templates/monorange/css/uddemodule.css" type="text/css" />
<div id='uddeim-modulenew'>
<p class='uddeim-module-head'>
<a href='http://192.168.1.102/joomla/index.php?option=com_uddeim&task=inbox'>Privé Berichten
<a href='http://192.168.1.102/joomla/index.php?option=com_uddeim&task=inbox'>
</p>
<p class='uddeim-module-row'>uddeIM <a href='http://192.168.1.102/joomla/index.php?option=com_uddeim&Itemid=&task=show&messageid=1'>Welkom bij...
</p>
</div>
<link rel="stylesheet" href="http://192.168.1.102/joomla/components/com_uddeim/templates/monorange/css/uddemodule.css" type="text/css" />
<div id='uddeim-modulenew'>
<p class='uddeim-module-head'>
<a href='http://192.168.1.102/joomla/index.php/component/uddeim/?task=inbox'>Privé Berichten
<a href='http://192.168.1.102/joomla/index.php/component/uddeim/?task=inbox'>
</p>
<p class='uddeim-module-row'>uddeIM <a href='http://192.168.1.102/joomla/index.php/?task=show&messageid=1'>Welkom bij...
</p>
</div>
What I see is identical behaviour independent of the actual location of the Joomla site.