You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
|
Feb
|
Mar
(4) |
Apr
(1) |
May
(18) |
Jun
(4) |
Jul
(33) |
Aug
(21) |
Sep
(11) |
Oct
(29) |
Nov
(25) |
Dec
(33) |
2004 |
Jan
(50) |
Feb
(45) |
Mar
(66) |
Apr
(26) |
May
(36) |
Jun
(21) |
Jul
(62) |
Aug
(60) |
Sep
(62) |
Oct
(53) |
Nov
(49) |
Dec
(43) |
2005 |
Jan
(87) |
Feb
(21) |
Mar
(90) |
Apr
(100) |
May
(26) |
Jun
(6) |
Jul
(52) |
Aug
(36) |
Sep
(38) |
Oct
(27) |
Nov
(34) |
Dec
(41) |
2006 |
Jan
(31) |
Feb
(30) |
Mar
(11) |
Apr
(2) |
May
(4) |
Jun
(10) |
Jul
(20) |
Aug
(8) |
Sep
(4) |
Oct
(3) |
Nov
(11) |
Dec
(3) |
2007 |
Jan
(3) |
Feb
(13) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
(16) |
Sep
(6) |
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
(4) |
Feb
|
Mar
(8) |
Apr
(3) |
May
(3) |
Jun
(9) |
Jul
|
Aug
|
Sep
|
Oct
(3) |
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(5) |
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: David F. <Da...@me...> - 2011-03-22 08:56:49
|
PHP 5.3 messes up Ilohamail with errors including: PHP Warning: Variable passed to each() is not an array or object in /home/megapico/webmail/include/mime.inc on line 12 PHP Warning: strcasecmp() expects parameter 1 to be string, array given in /home/megapico/webmail/include/mime.inc on line 106 A patch to fix it is given here by Neale Pickett: http://bugs.debian.org/cgi-bin/pkgreport.cgi?ordering=normal;archive=0;src=ilohamail;repeatmerged=0 Details of the patch are: --- mime.inc~ 2004-11-30 00:25:40.000000000 -0600 +++ mime.inc 2011-02-21 17:12:51.000000000 -0600 @@ -84,7 +84,7 @@ $line = str_replace(")(", ") (", $line); $struct = iml_ParseBSString($line); - if ((strcasecmp($struct[0], "message")==0) && (strcasecmp($struct[1], "rfc822")==0)){ + if (is_string($struct[0]) && (strcasecmp($struct[0], "message")==0) && (strcasecmp($struct[1], "rfc822")==0)){ $struct = array($struct); } return $struct; @@ -97,13 +97,13 @@ $pos = strpos($part, "."); $rest = substr($original_part, $pos+1); $part = substr($original_part, 0, $pos); - if ((strcasecmp($a[0], "message")==0) && (strcasecmp($a[1], "rfc822")==0)){ + if (is_string($a[0]) && (strcasecmp($a[0], "message")==0) && (strcasecmp($a[1], "rfc822")==0)){ $a = $a[8]; } //echo "m - part: $original_part current: $part rest: $rest array: ".implode(" ", $a)."<br>\n"; return iml_GetPartArray($a[$part-1], $rest); }else if ($part>0){ - if ((strcasecmp($a[0], "message")==0) && (strcasecmp($a[1], "rfc822")==0)){ + if (is_string($a[0]) && (strcasecmp($a[0], "message")==0) && (strcasecmp($a[1], "rfc822")==0)){ $a = $a[8]; } //echo "s - part: $part rest: $rest array: ".implode(" ", $a)."<br>\n"; @@ -118,7 +118,7 @@ if (is_array($a)){ $parent=iml_GetPartArray($a, $part); - if ((strcasecmp($parent[0], "message")==0) && (strcasecmp($parent[1], "rfc822")==0)){ + if (is_string($parent[0]) && (strcasecmp($parent[0], "message")==0) && (strcasecmp($parent[1], "rfc822")==0)){ $parent = $parent[8]; } ----------------------------- Email: Da...@me... Web: http://www.megapico.co.uk/ ----------------------------- ----------------------------- Email: Da...@me... Web: http://www.megapico.co.uk/ ----------------------------- |
From: Mindiell <min...@fr...> - 2010-05-29 19:56:26
|
Hi erveryone, I'm new to Ilohamail and have a certain misunderstood about Folder management and subscription : 1- How can I create a folder ? I only get : Could not create folder: Sent c NO Invalid mailbox name. 2- What is Subscribe Folder about ? Thx so much, Mindiell |
From: Rodolfo P. <ro...@pi...> - 2010-03-30 13:13:25
|
El 30/03/10 09:06 a.m., Zemke, Kai escribió: > Hi List, > > i have a ilohamail installation running. > > But today I noticed that the date that is shown in the overview is on > hour behind. > > Since the time changed on this Sunday to summertime I think that it is > related to this fact. > > I checked the webservers time that ilohamail is running on. I checked > the mailservers time ilohamail is working with and I checked the > database servers time. > > They are all okay. I just have no clue why the date is still wrong in > the webfrontend. Check the timezone where you have configured that your webserver is. The bios hour must be the timezone hour. Regards, Rodolfo Pilas |
From: Zemke, K. <Kai...@sm...> - 2010-03-30 12:27:40
|
Hi List, i have a ilohamail installation running. But today I noticed that the date that is shown in the overview is on hour behind. Since the time changed on this Sunday to summertime I think that it is related to this fact. I checked the webservers time that ilohamail is running on. I checked the mailservers time ilohamail is working with and I checked the database servers time. They are all okay. I just have no clue why the date is still wrong in the webfrontend. I appreciate all help. Kind regards Kai Zemke |
From: Neugam S. <ku...@me...> - 2010-03-05 07:22:34
|
Dear all, I've a problem after upgrade my php engine to PHP 5.3.1-5 version. The problem still exist on Iloha 0.8.14-rc and Iloha 0.9. The sympthom is after you login (pop3), you see all mails, but when you want to look any, an empty mail body page loading. When you click to mail source or header, you can see the header/mail body fine. The apache2 error.log shows: [Fri Mar 05 08:04:27 2010] [error] [client x.x.x.x] PHP Warning: strcasecmp() expects parameter 1 to be string, array given in /usr/share/IlohaMail/include/mime.inc on line 106, referer: http://webmail.domain/main.php?user=1267772658-83854&folder=INBOX&start=0&sort_field=DATE&sort_order=DESC [Fri Mar 05 08:04:27 2010] [error] [client x.x.x.x] PHP Warning: strcasecmp() expects parameter 1 to be string, array given in /usr/share/IlohaMail/include/mime.inc on line 121, referer: http://webmail.domain/main.php?user=1267772658-83854&folder=INBOX&start=0&sort_field=DATE&sort_order=DESC [Fri Mar 05 08:04:27 2010] [error] [client x.x.x.x] PHP Warning: strcasecmp() expects parameter 1 to be string, array given in /usr/share/IlohaMail/include/mime.inc on line 121, referer: http://webmail.domain/main.php?user=1267772658-83854&folder=INBOX&start=0&sort_field=DATE&sort_order=DESC [Fri Mar 05 08:04:27 2010] [error] [client x.x.x.x] PHP Warning: Variable passed to each() is not an array or object in /usr/share/IlohaMail/include/mime.inc on line 127, referer: http://webmail.domain/main.php?user=1267772658-83854&folder=INBOX&start=0&sort_field=DATE&sort_order=DESC [Fri Mar 05 08:04:27 2010] [error] [client x.x.x.x] PHP Warning: strcasecmp() expects parameter 1 to be string, array given in /usr/share/IlohaMail/include/mime.inc on line 106, referer: http://webmail.domain/main.php?user=1267772658-83854&folder=INBOX&start=0&sort_field=DATE&sort_order=DESC [Fri Mar 05 08:04:27 2010] [error] [client x.x.x.x] PHP Warning: strcasecmp() expects parameter 1 to be string, array given in /usr/share/IlohaMail/include/mime.inc on line 106, referer: http://webmail.domain/main.php?user=1267772658-83854&folder=INBOX&start=0&sort_field=DATE&sort_order=DESC [Fri Mar 05 08:04:27 2010] [error] [clientx.x.x.x] PHP Warning: strcasecmp() expects parameter 1 to be string, array given in /usr/share/IlohaMail/include/mime.inc on line 106, referer: http://webmail.domain/main.php?user=1267772658-83854&folder=INBOX&start=0&sort_field=DATE&sort_order=DESC [Fri Mar 05 08:04:27 2010] [error] [client x.x.x.x] PHP Warning: strcasecmp() expects parameter 1 to be string, array given in /usr/share/IlohaMail/include/mime.inc on line 106, referer: http://webmail.domain/main.php?user=1267772658-83854&folder=INBOX&start=0&sort_field=DATE&sort_order=DESC Have somebody any idea to fix it? I know/think, it's a php5.3.1-5 related problem :() regards, kuf |
From: mess-mate <mes...@or...> - 2009-09-13 08:38:49
|
Le 12/09/2009 22:10, johny why a écrit : > hi, does ilohamail support: > > --multiple imap accounts at the same time? > --ajax? > --html/rich formatted composing? > --html/rich formatted reading? > > thanks > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Ilohamail-users mailing list > Ilo...@li... > https://lists.sourceforge.net/lists/listinfo/ilohamail-users > yes... |
From: johny w. <joh...@gm...> - 2009-09-12 20:11:14
|
hi, does ilohamail support: --multiple imap accounts at the same time? --ajax? --html/rich formatted composing? --html/rich formatted reading? thanks |
From: gnul <nul...@gm...> - 2009-05-13 18:51:50
|
I agree, IlohaMail seems to be dead. I recommend RoundCube Mail as a webmail replacement. It started out using imap code from ilohamail. http://roundcube.net Good luck. On Wed, May 13, 2009 at 4:57 AM, Julian Golderer <gl...@4-...> wrote: > Hi Tomas, > > I'm sorry but it seems that Ilohamail is unmaintained since 2006. If you're > not a programmer I wouldn't recommend to use it. > > Julian > > Am Montag 11 Mai 2009 22:42:07 schrieb Tomás de Barros Correia: >> Hi All, >> >> how deny a user send emails as a different user? I've observed this bug in >> my configuration and would like to know how do that. I've seached in google >> but I did'nt find nothing about. :/ >> >> Best regards. > > > ------------------------------------------------------------------------------ > The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your > production scanning environment may not be a perfect world - but thanks to > Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700 > Series Scanner you'll get full speed at 300 dpi even with all image > processing features enabled. http://p.sf.net/sfu/kodak-com > _______________________________________________ > Ilohamail-users mailing list > Ilo...@li... > https://lists.sourceforge.net/lists/listinfo/ilohamail-users > |
From: Julian G. <gl...@4-...> - 2009-05-13 11:14:58
|
Hi Tomas, I'm sorry but it seems that Ilohamail is unmaintained since 2006. If you're not a programmer I wouldn't recommend to use it. Julian Am Montag 11 Mai 2009 22:42:07 schrieb Tomás de Barros Correia: > Hi All, > > how deny a user send emails as a different user? I've observed this bug in > my configuration and would like to know how do that. I've seached in google > but I did'nt find nothing about. :/ > > Best regards. |
From: Tim B. <ti...@ne...> - 2009-05-13 08:08:18
|
You're much better off using IMAP for Ilohamail. Even if users use POP to download their mail. As for configuring it, I'm pretty sure the included documentation pretty much covers it. TB moncho wrote: > Hi, I'm new to the list, I install a centos 5, I want to use webmail > as iloha. > On a computer I have installed dovecot (pop / imap) and other > equipment have sendmail. > Iloha supports server external pop and smtp? and how to configure this? > > I certainly appreciate your responses > > mOnchO > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your > production scanning environment may not be a perfect world - but thanks to > Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700 > Series Scanner you'll get full speed at 300 dpi even with all image > processing features enabled. http://p.sf.net/sfu/kodak-com > ------------------------------------------------------------------------ > > _______________________________________________ > Ilohamail-users mailing list > Ilo...@li... > https://lists.sourceforge.net/lists/listinfo/ilohamail-users > |
From: moncho <mon...@ya...> - 2009-05-12 18:27:54
|
Hi, I'm new to the list, I install a centos 5, I want to use webmail as iloha. On a computer I have installed dovecot (pop / imap) and other equipment have sendmail. Iloha supports server external pop and smtp? and how to configure this? I certainly appreciate your responses mOnchO |
From: Tomás de B. C. <to...@gm...> - 2009-05-11 20:42:20
|
Hi All, how deny a user send emails as a different user? I've observed this bug in my configuration and would like to know how do that. I've seached in google but I did'nt find nothing about. :/ Best regards. -- Tomás de Barros Correia http://www.ourgrid.org/~tomas |
From: Julian G. <gl...@4-...> - 2008-10-28 17:49:41
|
On Thursday 17 April 2008 01:32:15 Tim Bates wrote: > Igor wrote: > > Anybody here? Hi, yes, it's a very late answer ;) A long time ago, I searched and found the bug causing the cut off of the last character. --- include/imap.inc 2005-04-12 08:28:53.000000000 +0200 +++ /srv/ilohamail/include/imap.inc 2008-01-30 08:37:32.000000000 +0100 @@ -1808,7 +1808,8 @@ if ($result){ $result = chop($result); - return substr($result, 0, strlen($result)-1); + return substr($result, 0, strlen($result)); }else return false; }else{ echo "Select failed."; Julian > Yeah. There's still people on the list. > Just I guess none of us have the time or know-how to fix it. Doesn't > sound like a terribly hard one to fix, but I've never seen it myself, > and I don't have time to stuff around with it. |
From: <in...@eb...> - 2008-10-21 03:53:21
|
hello ilohaMail fans, if at all any of you run into the issue with the from and to fields showing incorrectly, replace line 672 in include\pop3.inc $header_fields[$field] = $string; with if(!$header_fields[$field]) $header_fields[$field] = $string; and lines 744,745 else if (strcasecmp($field, "from")==0) $result->from = str_replace("\n", " ", $string); else if (strcasecmp($field, "to")==0) $result->to = $string; with else if (strcasecmp($field, "from")==0){ if(!$result->from) $result->from = str_replace("\n", " ", $string); } else if (strcasecmp($field, "to")==0){ if(!$result->to) $result->to = $string; } in order to replicate the issue i'm talking abt, send an email to the a/c that u access via ilohaMail and in the body paste the content between the ++++ below. say u're send an email from xy...@gm... to xy...@ur... (this is the a/c u access via ilohaMail), the from field in the inbox will show ble...@bl... and to field will show be...@bl..., this will also repeat when this specific email is viewed separately. regards, -- amar Founder eBeku.com ++++ sending reply in plain text format not html..check to see if from field being displayed correctly ----- Original Message ----- From: "bleh From" <ble...@bl...> To: "bleh To" <bl...@bl...> Sent: Sunday, October 19, 2008 7:21 PM Subject: Re: Check reply check On 19/10/2008, blehFrom <ble...@bl...> wrote > Check > ++++ |
From: Tomas de B. C. - 83 -8. <to...@ls...> - 2008-10-15 19:04:15
|
Hi all, I would like to access my sent mail folder and I didn't find it on the IlohaMail installed on my server. Is there some configuration file where we can set to Ilohamail show me a different inbox (with a sidebar with sent mail, trash etc)? Any help is appreciate, Tomás. |
From: Heribert S. <h.s...@we...> - 2008-06-12 21:20:34
|
Thanks Heribert Tim Bates schrieb: > Heribert Schorn wrote: > >> I'm wondering wether an encrypted access is established in the case >> that in the config port 993 is the default. >> > It should be, since the mail server will (or should unless it's broken) > ONLY do SSL on that port. Any unencrypted connection would just drop > from being confused by the seemingly random data. > > TB > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > Ilohamail-users mailing list > Ilo...@li... > https://lists.sourceforge.net/lists/listinfo/ilohamail-users > |
From: Tim B. <ti...@ne...> - 2008-06-10 23:58:39
|
Heribert Schorn wrote: > I'm wondering wether an encrypted access is established in the case > that in the config port 993 is the default. It should be, since the mail server will (or should unless it's broken) ONLY do SSL on that port. Any unencrypted connection would just drop from being confused by the seemingly random data. TB |
From: Heribert S. <h.s...@we...> - 2008-06-10 20:08:10
|
Thanks, now it seems to work, but its is a little bit strange. When I have in the config the default port 143 and then write in the login screen iamp.xyz.de:993 the error occurs. When I have port 993 in the configfile and login with imap.xyz.de (without any port ) the login is o.k also when I try with imap.xyz.de:143 (for login without encryption) But when I have port 993 in teh config and write in the login imap.xyz.de:993 the failure is there again I'm wondering wether an encrypted access is established in the case that in the config port 993 is the default. best regards Heribert Tim Bates schrieb: > No, that's just HTTPS. IMAPS is on 993. > > It appears you must have advanced mode enabled, where you can then set > the port via the logon screen (separate to the server name from the > sounds of things). Otherwise you'll have to set the server details and > the port via the config... Both options will require access to the config. > > > TB > > Jon Lybrook wrote: > >> <delurk> >> Typical SSL connections are over port 443, not 993. >> >> Best wishes, >> Jon >> </delurk> >> >> Heribert Schorn wrote: >> >> >>> Dear all, >>> >>> I'm wondering wether it is possible to have the connection to the IMAP-Server with a SSL encryption. >>> >>> I'm using for the frontend of Ilohamail the https connection and this work fine. >>> The IMAP server of my ISP (e.g. imap.xyz.de ) supports ssl and normal connections. >>> How can an force Ilohamail to have an SSL connection. Just typing imap.xyz.de:993 (to call the SSL port) does not work. >>> >>> best regards >>> Heribert >>> _______________________________________________________________ >>> Schon gehört? Der neue WEB.DE MultiMessenger kann`s mit allen: >>> http://www.produkte.web.de/messenger/?did=3016 >>> >>> >>> ------------------------------------------------------------------------- >>> Check out the new SourceForge.net Marketplace. >>> It's the best place to buy or sell services for >>> just about anything Open Source. >>> http://sourceforge.net/services/buy/index.php >>> _______________________________________________ >>> Ilohamail-users mailing list >>> Ilo...@li... >>> https://lists.sourceforge.net/lists/listinfo/ilohamail-users >>> >>> >>> >>> >>> >> >> > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > Ilohamail-users mailing list > Ilo...@li... > https://lists.sourceforge.net/lists/listinfo/ilohamail-users > |
From: Tim B. <ti...@ne...> - 2008-06-10 08:08:11
|
No, that's just HTTPS. IMAPS is on 993. It appears you must have advanced mode enabled, where you can then set the port via the logon screen (separate to the server name from the sounds of things). Otherwise you'll have to set the server details and the port via the config... Both options will require access to the config. TB Jon Lybrook wrote: > <delurk> > Typical SSL connections are over port 443, not 993. > > Best wishes, > Jon > </delurk> > > Heribert Schorn wrote: > >> Dear all, >> >> I'm wondering wether it is possible to have the connection to the IMAP-Server with a SSL encryption. >> >> I'm using for the frontend of Ilohamail the https connection and this work fine. >> The IMAP server of my ISP (e.g. imap.xyz.de ) supports ssl and normal connections. >> How can an force Ilohamail to have an SSL connection. Just typing imap.xyz.de:993 (to call the SSL port) does not work. >> >> best regards >> Heribert >> _______________________________________________________________ >> Schon gehört? Der neue WEB.DE MultiMessenger kann`s mit allen: >> http://www.produkte.web.de/messenger/?did=3016 >> >> >> ------------------------------------------------------------------------- >> Check out the new SourceForge.net Marketplace. >> It's the best place to buy or sell services for >> just about anything Open Source. >> http://sourceforge.net/services/buy/index.php >> _______________________________________________ >> Ilohamail-users mailing list >> Ilo...@li... >> https://lists.sourceforge.net/lists/listinfo/ilohamail-users >> >> >> >> > > |
From: Jon L. <jo...@te...> - 2008-06-10 07:49:55
|
<delurk> Typical SSL connections are over port 443, not 993. Best wishes, Jon </delurk> Heribert Schorn wrote: > Dear all, > > I'm wondering wether it is possible to have the connection to the IMAP-Server with a SSL encryption. > > I'm using for the frontend of Ilohamail the https connection and this work fine. > The IMAP server of my ISP (e.g. imap.xyz.de ) supports ssl and normal connections. > How can an force Ilohamail to have an SSL connection. Just typing imap.xyz.de:993 (to call the SSL port) does not work. > > best regards > Heribert > _______________________________________________________________ > Schon gehört? Der neue WEB.DE MultiMessenger kann`s mit allen: > http://www.produkte.web.de/messenger/?did=3016 > > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > Ilohamail-users mailing list > Ilo...@li... > https://lists.sourceforge.net/lists/listinfo/ilohamail-users > > > -- Jon Lybrook Tera Bear Consulting http://terabear.com 303-818-5187 |
From: Heribert S. <h.s...@we...> - 2008-06-10 06:26:08
|
Dear all, I'm wondering wether it is possible to have the connection to the IMAP-Server with a SSL encryption. I'm using for the frontend of Ilohamail the https connection and this work fine. The IMAP server of my ISP (e.g. imap.xyz.de ) supports ssl and normal connections. How can an force Ilohamail to have an SSL connection. Just typing imap.xyz.de:993 (to call the SSL port) does not work. best regards Heribert _______________________________________________________________ Schon gehört? Der neue WEB.DE MultiMessenger kann`s mit allen: http://www.produkte.web.de/messenger/?did=3016 |
From: Adam P. <ad...@pa...> - 2008-06-02 18:10:15
|
You have to unsubscribe yourself: List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/ ilohamail-users>, On Jun 2, 2008, at 1:31 PM, zeet gogoi wrote: > Plz unsubscribed me from your mail list > > Share files, take polls, and make new friends - all under one roof. > Click here. > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Ilohamail-users mailing list > Ilo...@li... > https://lists.sourceforge.net/lists/listinfo/ilohamail-users |
From: zeet g. <ze...@ya...> - 2008-06-02 17:31:35
|
Plz unsubscribed me from your mail list Planet Earth is in the hot seat. Know more - http://in.search.yahoo.com/search?&fr=na_onnetwork_mail_taglines&ei=UTF-8&rd=r1&p=global+warming |
From: Scott N. <Sco...@bo...> - 2008-06-02 16:13:04
|
Trying to replace a tired old W2k server with a box running W2k3 Server, IIS6, and IM 0.8.14RC3. PHP v5.2.6 seemed good on the surface until I tried to compose a message and add an attachment. Client browser sees a one-liner above compose area: > No files received. and PHP log files contains: > PHP Warning: File upload error - unable to create a temporary file in > Unknown on line 0 PHP v4.4.8 works fine on essentially the same PHP.INI file (only difference being log file and path to PHP itself). I've poured over PHP.INI and just don't comprehend what the problem is. Don't see how it could be file system permissions. Currently don't have any urgent need for PHP5, but it seems prudent to go ahead and step up from 4. Anyone encountered and solved this problem? -- ************************************** * Scott Neal * * Signal Research Center * * University of Southern Mississippi * * Email: Sco...@bo... * * Phone: 601-268-2681 ext. 23 * ************************************** REALITY.SYS Corrupted! Reboot universe (Y/N)? ************************************** |
From: Scott N. <Sco...@bo...> - 2008-05-29 18:51:44
|
On 29 May 2008 at 14:57, Rodolfo Pilas wrote: > Scott Neal escribió: > > My old (reliable) W2k SP4 server running IIS5, PHP v4.3.8 and > > IlohaMail 0.8.14RC3 can't handle the load anymore. > > > > Trying to get up a W2k3 R2 SP2 server running IIS6, PHP v5.2.6 and a > > straight copy of the original IM 0.8.14RC3 from the old server. > > Using the "FS" backend, all my paths are the same, and my "IUSR" has > > appropriate NTFS permissions to create/write the user data files > > specified by $DATA_DIR in CONF.PHP. > > > > Yet, an attempt to login spits back "Couldn't create user dir" on > > the login page. > > If you have copied all user-dirs from previous W2k it is not needed that > IM try to "create-user-dir" again. > > You need to check your installation, but there are something different. > > I am sorry to do not give you some tip, but I do not know Windows > neither IIS. > > Regards, > Rodolfo Thanks Rodolfo. After I had pulled all but one hair out of my head, I realized I hadn't created the subdirs (cache,gpg,sessions,uploads,users) in $DATA_DIR. My brain was stuck with a preconception that I was going to have a struggle with PHP5, based on something I had read. And I wanted, in the upgrade process, to make sure I had the minimum necessary NTFS permissions on $DATA_DIR (by having IM create new user files). All works now...thanks for the response. -- ************************************** * Scott Neal * * Signal Research Center * * University of Southern Mississippi * * Email: Sco...@bo... * * Phone: 601-268-2681 ext. 23 * ************************************** Today's Oxymoron... Government organization ************************************** |