Search Discussions:
Advanced Search...
Welcome to Nokia Support Discussions! Here you can share advice and tips with thousands of other Nokia users around the world in English. Many Nokia employees also follow and participate in the discussions, see our guidelines for more information. Everyone can search and read the discussions, but to post your own question or reply to others, simply sign in with your Nokia account. If this is your first time here, you can choose an alias to represent you. And if you don't have a Nokia account yet, please register.
Reply

Re: HELPPP!!! NOKIA N900 SMS "Text message deliver...

New Member
emanabd10
Posts: 5

HELPPP!!! NOKIA N900 SMS "Text message delivery failed for..."

My Nokia n900 is giving me problems with my sms texting. I didn't download anything or change any settings and out of the blue it started giving me this "Text message delivery failed for..." message everytime i try to text anyone. It pops up right away. I tried checking my settings for anything but nothing i do is working. Help?.. please...

Please use plain text.
Professor
virajxx3006
Posts: 519

Re: HELPPP!!! NOKIA N900 SMS "Text message delivery failed for..."

yeah this thing happened to me too..
But the thing is it only happened to a one single mobile number(wich im textng most) .

And the other thing is, it disappeared after few days.But it occurred again after few days..

So i did a reflash.

**anyway remove apps regarding conversations. (Vert sms and stuf.. )

If it didnt worked, Do not go for a reflash now.(your warranty will be cancelled).wait untill someone reply for this.
"You may loose faith on us.. But never in your selves! From here, the fight will be your own.."

_____________[Protect Transformers]_____________
Please use plain text.
Mobile Guru
ceroberts75
Posts: 4,064

Re: HELPPP!!! NOKIA N900 SMS "Text message delivery failed for..."

hard reset your device.

turn it off
take the battery out
hold the power button for about 5 seconds to drain any residual power
put the battery back in
reboot the device

this does happen on occation, and in my case, this helps it reset.
Kudos are the STAR Below to the RIGHT, Solution is Below to the RIGHT
Please use plain text.
New Member
pedrosk
Posts: 4

Re: HELPPP!!! NOKIA N900 SMS "Text message delivery failed for..."

In my case my icon indicating type of network (2G, 3G ,,,) my carrier name (T-mobile) disapeared completely.

 

I did this and even removed the .rtcom.eventlogger-ui dir (with the entire database).

 

It did not solve the problem. On the other hand I got my 3G, and T-mobile logo back but still no SMS. Any clues?

 

I can send receive MMS, use internet, talk, but no regular SMS text messaging.

 

Any ideas?

 

 

 

 

 

Please use plain text.
Professor
virajxx3006
Posts: 519

Re: HELPPP!!! NOKIA N900 SMS "Text message delivery failed for..."

change your theme and try..
"You may loose faith on us.. But never in your selves! From here, the fight will be your own.."

_____________[Protect Transformers]_____________
Please use plain text.
Registered Member
rafatshannak
Posts: 1

Re: HELPPP!!! NOKIA N900 SMS "Text message delivery failed for..."

I have same problem now.....

Did u know what's wrong with it

Please use plain text.
Registered Member
madcatlady
Posts: 1

Re: HELPPP!!! NOKIA N900 SMS "Text message delivery failed for..."

I never found out what was wrong, but I found clearing the conversation (I couldn't see any old messages, and I didn't get the 'clear all messages in conversation message) helped.

Please use plain text.
Counsellor
msbionik
Posts: 71

Re: HELPPP!!! NOKIA N900 SMS "Text message delivery failed for..."

I have been having same problems too. I changed the theme and even flashed but same problem occurred. I'm going to try hard reset now. I hope someone comes up with something:smileywink:

Recent phones: N91, N95-4, 5800xm, N900, E7, & now the beautiful N9
Please use plain text.
Mobile Guru
ceroberts75
Posts: 4,064

Re: HELPPP!!! NOKIA N900 SMS "Text message delivery failed for..."

so you aleady reflashed your device with flasher and you ae still having the same issue?
Kudos are the STAR Below to the RIGHT, Solution is Below to the RIGHT
Please use plain text.
Counsellor
msbionik
Posts: 71

Re: HELPPP!!! NOKIA N900 SMS "Text message delivery failed for..."

Unfortunately, yes. I decided that maybe it was time for a new sim so I went to the ATT store and got a new one. Everything worked fine... Until now. I got that same stupid message, "text message delivery failed," blah blah blah. LOL

 

Maybe another flash?

Recent phones: N91, N95-4, 5800xm, N900, E7, & now the beautiful N9
Please use plain text.
Mobile Guru
ceroberts75
Posts: 4,064

Re: HELPPP!!! NOKIA N900 SMS "Text message delivery failed for..."

try to delete the thread that you are having problems with.

there is a glitch in the n900 that seems to be triggered by someone sending you a message that is more the 140 characters and is broken up into 2 or more messages. it doesnt happen all the time, but seems like i have problems when that happens if i am too fast and start to open the first message and the second populates after it.

some of the symptoms are:

cannot see messages,
you can see the message come in, but cannot open it.
only see the messages you send.
avatars missing
messages not sending out.

so, if you dont mind loosing some sms...then delete them all and see if that works. if not, report back.

Kudos are the STAR Below to the RIGHT, Solution is Below to the RIGHT
Please use plain text.
Counsellor
msbionik
Posts: 71

Re: HELPPP!!! NOKIA N900 SMS "Text message delivery failed for..."

thanks ceroberts. i usually get texts from a friend who forwards me my daily horoscope & it comes in in 5 mssgs. I'm wondering if all of us having problems should compare apps we have & possibly narrow it down that way?

i did a hard reset today also & still same problem. i also deleted threads and did something in xt that i found here on another thread
Recent phones: N91, N95-4, 5800xm, N900, E7, & now the beautiful N9
Please use plain text.
Mobile Guru
ceroberts75
Posts: 4,064

Re: HELPPP!!! NOKIA N900 SMS "Text message delivery failed for..."

well,  you have everythingto gain and nothing to loose at this point.

 

Now close and re-open your Conversations app - the changes should be immediate!

Cpitchford originally helped me with this.

 

here is more detailed and i dont think that it deletes all your data like i had to.

 


Found a workaround for this today - the problem occurs because the Headers table in the /home/user/.rtcom-eventlogger/el-v1.db becomes corrupt. Happily this is repairable, on the device:

 

First gain root access:

 

Code:

---------

sudo gainroot

---------

.then switch to the target directory:

 

Code:

---------

cd .rtcom-eventlogger

---------

Now dump the contents of the existing database to a raw SQL file:

 

Code:

---------

sqlite3 el-v1.db .dump > el-v1.db.sql

---------

Restore the SQL to a new database:

 

Code:

---------

sqlite3 el-v1.db.new < el-v1.db.sql

---------

You may ignore SQL errors at this stage; they occur due to corruption in the source.

 

Now overwrite the broken DB (you may wish to back up the original file):

 

Code:

---------

cp el-v1.db.new el-v1.db

---------

Finally, ensure that the file is owned by 'user' and is in the 'users' group so it may be read by Conversations

 

Code:

---------

chown user el-v1.db

chgrp users el-v1.db

---------

Kudos are the STAR Below to the RIGHT, Solution is Below to the RIGHT
Please use plain text.
Registered Member
yucelsahan
Posts: 1

Re: HELPPP!!! NOKIA N900 SMS "Text message delivery failed for..."

Help meeee...:smileyfrustrated:

Nokia N900 SMS delivery Failed :s

plz.

 

Please use plain text.