Re: Kannel 1.4.1-2 Greek Character Set

2008-02-19 Thread Alvaro Cornejo
did you try iconv ?? On Feb 19, 2008 1:55 AM, Songhh [EMAIL PROTECTED] wrote: Hi, Can i know how to can do the encoding based of the list i get from http://www.visualtron.com/bit_default_alphabet.htm? I been failing to encode my alphabet to follow this table code in php. So far i been

RE: Kannel 1.4.1-2 Greek Character Set

2008-02-19 Thread Remon Magdy
@kannel.org Subject: Re: Kannel 1.4.1-2 Greek Character Set did you try iconv ?? On Feb 19, 2008 1:55 AM, Songhh [EMAIL PROTECTED] wrote: Hi, Can i know how to can do the encoding based of the list i get from http://www.visualtron.com/bit_default_alphabet.htm? I been failing to encode my

Re: Kannel 1.4.1-2 Greek Character Set

2008-02-19 Thread Songhh
HI, Yes. I did try to use iconv to convert the text before. i have used iconv(windows-1252, utf-8, urldecode ($rcvMessage) ); but still dun manage to send out the desire simbol to user. Alvaro Cornejo wrote: did you try iconv ?? On Feb 19, 2008 1:55 AM, Songhh [EMAIL PROTECTED]

RE: Kannel 1.4.1-2 Greek Character Set

2008-02-18 Thread Songhh
Hi, Can i know how to can do the encoding based of the list i get from http://www.visualtron.com/bit_default_alphabet.htm? I been failing to encode my alphabet to follow this table code in php. So far i been getting different hex when i use urlencode to encode the received text. Davor

Re: Kannel 1.4.1-2 Greek Character Set

2008-01-15 Thread Joe Perry
@kannel.org Subject: Re: Kannel 1.4.1-2 Greek Character Set Hi Davor and thanks for the response, I have tried what you have explained but have so far failed to have much luck. I am attempting to send the phrase ΗΕΛΛΟ. Through my hex conversions, the actual body of the message being sent through HTTP

RE: Kannel 1.4.1-2 Greek Character Set

2008-01-15 Thread Davor Spasoski
Perry [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 15, 2008 11:50 AM To: Davor Spasoski; users@kannel.org Subject: Re: Kannel 1.4.1-2 Greek Character Set Hi, Tried this and the phone is just returning question marks (??) for each of the greek characters. I have just installed the latest CVS

Re: Kannel 1.4.1-2 Greek Character Set

2008-01-15 Thread Joe Perry
. BR, Davor Spasoski -Original Message- From: Joe Perry [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 15, 2008 11:50 AM To: Davor Spasoski; users@kannel.org Subject: Re: Kannel 1.4.1-2 Greek Character Set Hi, Tried this and the phone is just returning question marks (??) for each

Re: Kannel 1.4.1-2 Greek Character Set

2008-01-15 Thread Kyriacos Sakkas
:[EMAIL PROTECTED] Sent: Tuesday, January 15, 2008 11:50 AM To: Davor Spasoski; users@kannel.org Subject: Re: Kannel 1.4.1-2 Greek Character Set Hi, Tried this and the phone is just returning question marks (??) for each of the greek characters. I have just installed the latest CVS (Kannel

Re: Kannel 1.4.1-2 Greek Character Set

2008-01-15 Thread Joe Perry
PROTECTED] Sent: Tuesday, January 15, 2008 11:50 AM To: Davor Spasoski; users@kannel.org Subject: Re: Kannel 1.4.1-2 Greek Character Set Hi, Tried this and the phone is just returning question marks (??) for each of the greek characters. I have just installed the latest CVS (Kannel bearerbox version

Re: Kannel 1.4.1-2 Greek Character Set

2008-01-15 Thread Kyriacos Sakkas
- From: Joe Perry [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 15, 2008 11:50 AM To: Davor Spasoski; users@kannel.org Subject: Re: Kannel 1.4.1-2 Greek Character Set Hi, Tried this and the phone is just returning question marks (??) for each of the greek characters. I have just installed

RE: Kannel 1.4.1-2 Greek Character Set

2008-01-14 Thread Davor Spasoski
Basically, you have two ways of sending Greek alphabet, either using the UTF-8 or by using Greek capital which are part of the default GSM encoding. If you use the second method, which have the 160 characters per SMS advantage over UTF-8, try setting alt-dcs=1 that will guarantee using the default

Re: Kannel 1.4.1-2 Greek Character Set

2008-01-14 Thread Joe Perry
Hi Davor and thanks for the response, I have tried what you have explained but have so far failed to have much luck. I am attempting to send the phrase ΗΕΛΛΟ. Through my hex conversions, the actual body of the message being sent through HTTP to the smsbox is %CE%97%CE%95%CE%9B%CE%9B%CE%9F.

Re: Kannel 1.4.1-2 Greek Character Set

2008-01-14 Thread Nicolas de Bari Embriz Garcia Rojas
Try this $str = 'áéíóú ñ œ∑åΩ≈ç' $utf8 = (pack('H*', strrev(chunk_split(strrev(bin2hex(utf8_decode($str))), 2, '00'; $msg = urlencode($utf8); later just use coding=2 for sending the sms ...cgi-bin/sendsms?user=userpassword=passcoding=2txt=$msg This will send the $str in UTF8 the

RE: Kannel 1.4.1-2 Greek Character Set

2008-01-14 Thread Κωνσταντίνος Λιαδάκης
this helps Regards -Original Message- From: Joe Perry [mailto:[EMAIL PROTECTED] Sent: Monday, January 14, 2008 6:18 PM To: Davor Spasoski; users@kannel.org Subject: Re: Kannel 1.4.1-2 Greek Character Set Hi Davor and thanks for the response, I have tried what you have explained but have so