new version UEBIMAIU

Re: Info *** UebiMiau Mail with 64bit Time/Date Problem

sHuKKo said:
Ok If you are using a 64bit system this is what you will need to do in order to make the time and date work on the web interface to Ubeimiau.

Go to this file:

/var/www/html/webmail/smarty/smarty.addons.php

and find the function smarty_make_timestamp($string)

Code:
if(empty($string)) {
$string = "now";
} [COLOR=red]else if(is_numeric($string)) {
return (int)$string; 
}[/COLOR]
$time = strtotime($string);
if(is_numeric($time) && $time != -1
return $time;

You need to add in the code in red above into the function and that should make the webmail time and date look right.

On my 64bits CentOS 4.2 system (recent new DA installation) the location of the above files is different./var/www/html/webmail/smarty/plugins

PATH:
/var/www/html/webmail/smarty/plugins

FILE:
shared.make_timestamp.php

The code change is the same as described in the quoted message and it worked :)
 
Re: Re: Info *** UebiMiau Mail with 64bit Time/Date Problem

Ximmer said:
On my 64bits CentOS 4.2 system (recent new DA installation) the location of the above files is different./var/www/html/webmail/smarty/plugins

PATH:
/var/www/html/webmail/smarty/plugins

FILE:
shared.make_timestamp.php

The code change is the same as described in the quoted message and it worked :)

my post is for the previous version.
after I upgreded to the last version I also have this error back and no time to fix it.
I will do now just as you said. Thanks.
 
that php bug feedback dont make happy reading the dev's appear to be ignoring it :(
 
Has anyone received this error message on there UEBiMAIU webmail when they login and if so how did you fix it? If no one has then is there anyone that knows how to correct this? I check the line that said had double header and it looks fine, actually it says not to edit below that point.

ERROR (2): Header may not contain more than a single header, new line detected. (/var/www/html/webmail/inc/inc.php:169)
 
Yea that upgrade did not fix it for me but i follow the instructions with the link you gave me and that fixed it.
 
klaus said:
Code:
cd /var/www/html
wget [url]www.klaus.gr/webmail-2.7.8.tar.gz[/url]
tar xzvf webmail-2.7.8.tar.gz
cp -rp webmail/tmp webmail-2.7.8/
mv webmail webmail.old
mv webmail-2.7.8 webmail

Check webmail/inc/config.php

Thats all.

Hi Klaus,
I'm using version 2.7.10 and found that your neotech.net themes' download attachment doesn't work.

I managed to get it work and here's the patch.


--- readmsg.htm 2006-04-08 13:40:27.571699208 +0800
+++ readmsg.htm.patch 2006-04-08 13:42:44.499882960 +0800
@@ -120,7 +120,8 @@

{section name=i loop=$umAttachList}
<tr bgcolor=white>
- <td class="default">  <a href="{$umAttachList.normlink}">{$umAttachList.name|truncate:30:"...":true|escape:"html"}</a> <a href="{$umAttachList.downlink}" target=_blank><img src="./images/download.gif" width="12" height="12" border="0" alt=""></a></td>
+ <td class="default">
+ {$umAttachList.normlink}{$umAttachList.name|truncate:30:"...":true|escape:"html"}</a> {$umAttachList.downlink}<img src="./images/download.gif" width="12" height="12" border="0" alt=""></a></td>
<td class="right">{$umAttachList.size}Kb  </td>
<td class="default">  {$umAttachList.type}</td>
{/section}
@@ -162,4 +163,4 @@
</tr>
</table>
</body>
-</html>
\ No newline at end of file
+</html>
 
I ran webmail.sh with VER=2.7.10 and it downloaded the file, but it doesn't appear to have expanded the tar file and upgraded webmail. What should I do next?
 
Back
Top