Problem with login
2003-05-05 01:43:15 GMT
Please do not post in HTML to the mailing list.
Also, this question is not appropriate on the I18N mailing list. Let’s move it to the SM-USERS list.
Please turn on $debug in the config.php file in the vlogin directory and report back on whether or not the resultant usernames look correct. Also, it is helpful when debugging such problems if you turn on display_errors and set error_reporting to E_ALL (only) in your php.ini (and restart your web server).
Thanks,
Paul
-----Original Message-----
From:
squirrelmail-i18n-admin <at> lists.sourceforge.net
[mailto:squirrelmail-i18n-admin <at> lists.sourceforge.net] On Behalf Of Misiu
Sent: Sunday, May 04, 2003 6:43 PM
To:
squirrelmail-i18n <at> lists.sourceforge.net
Subject: [SM-I18N] Problem with
login
Hello i have a problem i hacve the latest SQ Mail with vlogin and Qmail with vpopmail , courier-imap and i can login on every postmaster account bu i cannot login as a user every postmaster account works but user acoounts are not working Please help
> Please do not post in HTML to the mailing list. ahhh, the irony. sorry for the obnoxious HTML, folks!------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf -- squirrelmail-i18n mailing list List Address: squirrelmail-i18n <at> lists.sourceforge.net List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-i18n http://squirrelmail.org/cvs
Hello Thomas, > Added support for short name of month/weekday > from 1.2 stable to 1.4stable and 1.5cvs. > > "May" string stands for long version of month > "May" - short version. today I installed the current CVS build squirrelmail-20030505_0843-CVS.stable.tar.gz and checked the short names of month/weekday. I found out that it looks much better in the upper half of the calendar month view, but I think you have forgotten to modify the selection box in the lower left corner of it. The selection box still shows "M&a" instead of "Mar". (The short names are not included in the german translation therefor the englisch abbriviations are shown) Regards Juergen Edner -- -- Mail: fli4l-eisfair <at> telejeck.de PGP Key available --- ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf -- squirrelmail-i18n mailing list List Address: squirrelmail-i18n <at> lists.sourceforge.net List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-i18n http://squirrelmail.org/cvs
Hello all, I do not know if this email has a place in this mailing list, but is there something wrong with plugin downloads on SM homepage? Because whenever I click on a link to download something, I just get the page with instructions on how to download .. but no link to download, nor does the download start automaticaly. Any ideas? Thanks! Nenad P.S. I wanted to download the Change MYSQL password plugin. ------------------------------------------------------- Enterprise Linux Forum Conference & Expo, June 4-6, 2003, Santa Clara The only event dedicated to issues related to Linux enterprise solutions www.enterpriselinuxforum.com -- squirrelmail-i18n mailing list List Address: squirrelmail-i18n <at> lists.sourceforge.net List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-i18n http://squirrelmail.org/cvs
> Hello Thomas, > >> Added support for short name of month/weekday >> from 1.2 stable to 1.4stable and 1.5cvs. >> >> "May" string stands for long version of month >> "May" - short version. > > today I installed the current CVS build > squirrelmail-20030505_0843-CVS.stable.tar.gz > and checked the short names of month/weekday. > > I found out that it looks much better in the > upper half of the calendar month view, but > I think you have forgotten to modify the > selection box in the lower left corner of it. > > The selection box still shows "M&a" instead > of "Mar". > > (The short names are not included in the german > translation therefor the englisch abbriviations > are shown) calendar plugin used own functions for short name generation. it converted German translation "März" to three symbols -- -- Tomas ------------------------------------------------------- Enterprise Linux Forum Conference & Expo, June 4-6, 2003, Santa Clara The only event dedicated to issues related to Linux enterprise solutions www.enterpriselinuxforum.com -- squirrelmail-i18n mailing list List Address: squirrelmail-i18n <at> lists.sourceforge.net List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-i18n http://squirrelmail.org/cvs
Hello everybody! Yesterday my hoster suddenly installed php ver 4.3.1 on it's servers. Previosly it was 4.0.?? and sqmail worked great. Now I'm getting problems with charset - the browser (I tested IE6.0 and Phoenix 0.5) does not detect the charset correctly: while it is KOI8-R the browser sets the charcoding to WIN-1251... There is no problem to select the coding manualy, but it's boring... What can I do with it? Thanx a lot in advance, <WBR, Kirill Bestoujev> <mailto:kirill <at> bestoujev.ru> ------------------------------------------------------- Enterprise Linux Forum Conference & Expo, June 4-6, 2003, Santa Clara The only event dedicated to issues related to Linux enterprise solutions www.enterpriselinuxforum.com -- squirrelmail-i18n mailing list List Address: squirrelmail-i18n <at> lists.sourceforge.net List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-i18n http://squirrelmail.org/cvs
It seems your provider changed the default encoding of Apache web
pages to 1251.
If you can't ask him to change it to koi8-r, it can be fixed
(hopefully) if you add sending HTTP header to one of the the
top-level include files for SM, like:
header('Content-Type: text/html; charset=koi8-r');
Regards,
Grisha
KB> Yesterday my hoster suddenly installed php ver 4.3.1 on it's
KB> servers. Previosly it was 4.0.?? and sqmail worked great. Now
KB> I'm getting problems with charset - the browser (I tested IE6.0
KB> and Phoenix 0.5) does not detect the charset correctly: while it
KB> is KOI8-R the browser sets the charcoding to WIN-1251... There
KB> is no problem to select the coding manualy, but it's boring...
KB> What can I do with it?
-------------------------------------------------------
Enterprise Linux Forum Conference & Expo, June 4-6, 2003, Santa Clara
The only event dedicated to issues related to Linux enterprise solutions
www.enterpriselinuxforum.com
--
squirrelmail-i18n mailing list
List Address: squirrelmail-i18n <at> lists.sourceforge.net
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-i18n
http://squirrelmail.org/cvs
there is "header('Content-Type: text/html; charset=koi8-r');" in SM.
functions/i18n.php file.
----
header( 'Content-Type: text/html; charset=' .
$languages[$sm_notAlias]['CHARSET'] );
----
maybe provider also changed default encoding of ru_RU locale.
check the latest version of functions/i18n.php. There is a patch
(http://www.topolis.lt/squirrelmail/patches/20030503) proposed by Grisha.
--
Tomas
> It seems your provider changed the default encoding of Apache web
> pages to 1251.
>
> If you can't ask him to change it to koi8-r, it can be fixed
> (hopefully) if you add sending HTTP header to one of the the
> top-level include files for SM, like:
>
> header('Content-Type: text/html; charset=koi8-r');
>
> Regards,
> Grisha
>
> KB> Yesterday my hoster suddenly installed php ver 4.3.1 on it's
> KB> servers. Previosly it was 4.0.?? and sqmail worked great. Now
> KB> I'm getting problems with charset - the browser (I tested IE6.0
> KB> and Phoenix 0.5) does not detect the charset correctly: while it
> KB> is KOI8-R the browser sets the charcoding to WIN-1251... There
> KB> is no problem to select the coding manualy, but it's boring...
> KB> What can I do with it?
>
>
>
>
>
>
> -------------------------------------------------------
> Enterprise Linux Forum Conference & Expo, June 4-6, 2003, Santa Clara
> The only event dedicated to issues related to Linux enterprise solutions
> www.enterpriselinuxforum.com
>
> --
> squirrelmail-i18n mailing list
> List Address: squirrelmail-i18n <at> lists.sourceforge.net
> List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-i18n
> http://squirrelmail.org/cvs
>
-------------------------------------------------------
Enterprise Linux Forum Conference & Expo, June 4-6, 2003, Santa Clara
The only event dedicated to issues related to Linux enterprise solutions
www.enterpriselinuxforum.com
--
squirrelmail-i18n mailing list
List Address: squirrelmail-i18n <at> lists.sourceforge.net
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-i18n
http://squirrelmail.org/cvs
RSS Feed1 | |
|---|---|
1 | |
22 | |
1 | |
1 | |
1 | |
9 | |
2 | |
4 | |
5 | |
1 | |
1 | |
11 | |
3 | |
6 | |
5 | |
20 | |
14 | |
3 | |
10 | |
2 | |
5 | |
15 | |
3 | |
1 | |
5 | |
5 | |
6 | |
7 | |
1 | |
2 | |
12 | |
2 | |
10 | |
9 | |
11 | |
79 | |
106 | |
38 | |
41 | |
12 | |
4 | |
11 | |
7 | |
3 | |
16 | |
13 | |
9 | |
75 | |
6 | |
18 | |
24 | |
21 | |
48 | |
23 | |
23 | |
25 | |
29 | |
3 | |
7 | |
25 | |
50 | |
18 | |
12 | |
23 | |
10 | |
35 | |
8 | |
56 | |
35 | |
20 | |
21 | |
17 | |
28 | |
37 | |
59 | |
24 | |
36 | |
44 | |
51 | |
42 | |
44 | |
31 | |
59 | |
25 | |
40 | |
47 | |
18 | |
38 | |
61 | |
25 | |
13 | |
52 | |
88 | |
27 | |
26 | |
32 | |
65 | |
30 | |
17 | |
67 | |
22 | |
30 | |
75 | |
63 | |
20 | |
25 | |
40 | |
27 | |
30 | |
17 | |
35 | |
91 | |
46 | |
77 | |
46 | |
36 | |
32 | |
13 | |
27 | |
18 | |
10 | |
1 |