
03-10-2006, 02:46 PM
|
 |
|
|
Join Date: May 2003
Posts: 205
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by yinyang
*bump*
|
You must change the relative path to the lpp_messenger.php in an absolute path.
You can do this in the lpp_messenger_wol template.
search for this:
Quote:
<script type="text/javascript">
<!--
window.open('lpp_messenger.php?do=read_message','_blank','toolbar=no,resizable=y es, scrollbars=yes,location=no,menubar=no,width=430,he ight=310,top=150,left=100,status=no');
-->
</script>
|
and change ist to for e.g.:
Quote:
<script type="text/javascript">
<!--
window.open('http://www.mydomain.com/forum/lpp_messenger.php?do=read_message','_blank','toolbar=no,resizable=y es, scrollbars=yes,location=no,menubar=no,width=430,he ight=310,top=150,left=100,status=no');
-->
</script>
|
|