Missing email account - wifi and BT settings etc bug - P3600 ROM Development

I really need to understand if my trinity is bugged...
i tried many of the last cooked WM6.1 ITA ROM and every time is the same thing...i create an email account...insert Wifi Password...also pair my BT headphones...
...one stylus reset and every kind of this configuration disappear !
Also i noted a memory leek bug...memory decrease continusly...
recently tried:
ervius WM6.1 ITA 3.05 Flashed with OLIPro 1.30 from XP (still in test...only with memory leek for now)
ervius WM6.1 ITA 3.04v2 Flashed with OLIPro 1.30 from XP and MiniSD and Flashed also with DES from XP (memory leek and settings bug)
ervius WM6.1 ITA 3.04 Vanilla Flashed with DES from XP (memory leek and settings bug)
in all Ervius's Rom i found a new bug (for my trinity) correlating to the first two...every time that i make a stylus reset i understand immediately if the settings and email account were lost...because of the change of the activation number...on a correct reboot i recieve a complete number for example "37245" on a faulted reboot i recieve the only first 2 number "37" and the registration page is there also if i maked the registration !
i tried also:
Elias WM6.1 Elegance Edition 2.1ue Flashed with OliPro 1.30 from XP and from MiniSD and also with DES from XP (memory leek and settings bug)
-----------------------
i'm sure of the malfunction only with this ROMS because i've tested many times...but without testing i can remember of this bug in other ROM that i've tried.
i remember only one ROM that i used for many times and not affected (for my trinity) of this bug...is the elias elegance 1.5b
Mine platform is a Trinity100
Please let me know your experiences...so we can help eachother to find a solution to this big big problem !
Thanks to all.
Gius

hi, i have exactly the same problem with ervius WM6.1 ITA 3.05 and ervius WM6.1 ITA 3.04v2, and elegance 2.1 rom.
on a faulted reboot i recieve a 37 too.
the same problem also with security pin, and that is really bad because when it miss the pin all you can do is a hard reset.
Anyway roms are really fantastics, and cookers are great.

Thanks cygnuz because you give me a new info...i used only 1 time the security pin...and need to hardreset my trinity...but i said "what a stupid idiot...i forgot the code just inserted"...
So anyway sure that the ROM are wonderful and fantastic...it's for this thing that i want to resolve any issue...for using its !!
Because with this issues for me are unusable !!
Cygnuz wich kind of SPL do you use ?
thx
GIUS

hi, spl olipro 1.20, it was yet installed on my secondhand trinity

10. Disappear E-mail accounts device pin-password wifi settings etc, A2DP bug...Solution see: Adewidt ROM HTC P3600 WM6 - ADW version 1.2 - English (RC2:
http://forum.xda-developers.com/showthread.php?t=368569

dateboy said:
10. Disappear E-mail accounts device pin-password wifi settings etc, A2DP bug...Solution see: Adewidt ROM HTC P3600 WM6 - ADW version 1.2 - English (RC2:
http://forum.xda-developers.com/showthread.php?t=368569
Click to expand...
Click to collapse
also ausdim ROM WM_6.1_v.3.0_WWE_Light & Full is not affected by this bug:
http://forum.xda-developers.com/showthread.php?t=364972
But certainly ervius will solve this bug in his new rom...
Bye

i hope too !
so you confirm that kind of issue is coming from the ROM and not from the HARDWARE !
ok but somebody discover why we can find this kind of issue in only some version of our trinitys ?
and what about the memory leek ?...somebody speak about an intensive use of the caching system...somebody speak about a bug ! Somebody like ervius and elias told me that their trinitys was not affected from thisk kind of issue ! wich is the correct answare to this question ?
Thanks to all !
Gius.

hi, if you google a little it seems it could be a wm6 problem not only related to trinity.
Anyway i can not find a way to replicate the problem, it happen randomly.

cygnuz said:
hi, if you google a little it seems it could be a wm6 problem not only related to trinity.
Anyway i can not find a way to replicate the problem, it happen randomly.
Click to expand...
Click to collapse
my rom works, I have 2 mail accounts and work...
I cannot solve problems that I haven't.... I cheched also, softeressed and all works....

Hello Ervius, try soft reset if the communication manager is and remains open on the context...

dateboy said:
Hello Ervius, try soft reset if the communication manager is and remains open on the context...
Click to expand...
Click to collapse
ok, let me configure a mail account (just tryed last rom!) and I'll check...

ervius said:
my rom works, I have 2 mail accounts and work...
I cannot solve problems that I haven't.... I cheched also, softeressed and all works....
Click to expand...
Click to collapse
hi ervius, your work is great and of course you are not obliged to help us in any way.
i hope you can answer a question: you know how the serial code is generated, can you think a way we can have a code 37 at startup?

i can confirm that using this ROM
http://forum.xda-developers.com/showthread.php?t=368569
i'm without any kind of BUG !!!
Somebody can confirm that ?
Ervius they speak about a different XIP that was changed in DOPOD official WM6 upgrade...
XIP seems to be the trouble for loosing settings bug !

cygnuz said:
hi ervius, your work is great and of course you are not obliged to help us in any way.
i hope you can answer a question: you know how the serial code is generated, can you think a way we can have a code 37 at startup?
Click to expand...
Click to collapse
Great ADVICE !!
all "bugged" trinity show "37" instead of the normal code !
Also for me your work is great...and i will donate for your precious time !!!

cygnuz said:
hi ervius, your work is great and of course you are not obliged to help us in any way.
i hope you can answer a question: you know how the serial code is generated, can you think a way we can have a code 37 at startup?
Click to expand...
Click to collapse
yes, I know, but if have some time, my priority is the "knowledge"!!
code is generated by:
Function GetDeviceID()
that calls:
KernelIoControl(IOCTL_HAL_GET_DEVICEID, IntPtr.Zero, 0, outbuff, nBuffSize, dwOutBytes)
whre:
Declare Function KernelIoControl Lib "CoreDll.dll" (ByVal dwIoControlCode As Int32, _
ByVal lpInBuf As IntPtr, _
ByVal nInBufSize As Int32, _
ByVal lpOutBuf() As Byte, _
ByVal nOutBufSize As Int32, _
ByRef lpBytesReturned As Int32) As Boolean
Private METHOD_BUFFERED As Int32 = 0
Private FILE_ANY_ACCESS As Int32 = 0
Private FILE_DEVICE_HAL As Int32 = &H101
Private Const ERROR_NOT_SUPPORTED As Int32 = &H32
Private Const ERROR_INSUFFICIENT_BUFFER As Int32 = &H7A
Private IOCTL_HAL_GET_DEVICEID As Int32 = (&H10000 * FILE_DEVICE_HAL) Or (&H4000 * FILE_ANY_ACCESS) Or (&H4 * 21) Or METHOD_BUFFERED
and never had this problem, ("37" code) but if you want, I can use,(in next releases of my roms!!!), your imei number obfuscated, by some mathematical algos, so nobody can knows the real IMEI number!

InfinityD said:
i can confirm that using this ROM
http://forum.xda-developers.com/showthread.php?t=368569
i'm without any kind of BUG !!!
Somebody can confirm that ?
Ervius they speak about a different XIP that was changed in DOPOD official WM6 upgrade...
XIP seems to be the trouble for loosing settings bug !
Click to expand...
Click to collapse
dopod xip??? I don't know, I use genuine bepe's xip, if there are differents for trinity 6.1 roms, I prefer the bepe's one, I'm shure it is genuine. not "fixed"!

InfinityD said:
i can confirm that using this ROM
http://forum.xda-developers.com/showthread.php?t=368569
i'm without any kind of BUG !!!
Somebody can confirm that ?
Ervius they speak about a different XIP that was changed in DOPOD official WM6 upgrade...
XIP seems to be the trouble for loosing settings bug !
Click to expand...
Click to collapse
what kind of build is???
coredll.dll is different from 19199 and 19202 builds...
and also nk.exe (that maybe must be thae same, is from oemxipkernel and we maybe cannot replace it becouse is from device's xip part.)

Originally Posted by dateboy
Hello Ervius, try soft reset if the communication manager is and remains open on the context...
Click to expand...
Click to collapse
tryed...
mail account still there...

InfinityD said:
Great ADVICE !!
all "bugged" trinity show "37" instead of the normal code !
Also for me your work is great...and i will donate for your precious time !!!
Click to expand...
Click to collapse
this is a great Unhappy news....
so there are some trinity devices bugged in hardware????

ervius
do you think it may be radio firmware or spl etc?
can you give us detailed information about your device

Related

WM5 on PH20B2

Hi following the instructions for the build 14343 i get a "Model Id Error".
here is the content of my DeviceData.txt ;
PH20B2 B 2 WWE VODAP102 1.40.00 0 0 1.13.00 13.00
is there any particular BaUpgradeUt.exe that i should use?
feel free to email me, Tx
S.
Try the NOID version it will skip the country check , you can get it on the ftp @ ftp://xda:[email protected]/BlueAngel/Tools/MaUpgradeUt_noID.zip
I believe that should help you, just unzip and put the *.exe in the folder with the upgrade.
I'd be interested to know if WM5 on your PH20B2 worked, as everything to date is concerning the PH20B/1. Also your opinion as to whether WM5 on the PH20B2 is ready for use, or still better to stay on the 1.40 ROM. Things like the backlight issue seems to suggest the latter.
br/Bosseye
Ignore my last email, already solved it. For the PH20B2, do as the WiKi says except be sure to use the PH20B directory. I found that "maupgrade" wouldn't run until I renamed the HTCRUU.conf and HTCRUU.dll files as RUU.conf and RUU.dll respectively. Then all worked as the Wiki suggests. More updates later...
br/Bosseye
Np .. however, In the end the upgrade it is possible but how SLOW is it? I found it unplayable, and I had to go back to WM2k3
Actually, I found it OK. There are a few problems:
- using the BA keyboard, sometimes keypresses are missed
- sometimes you get Wifi and GPRS at the same time (confused BA)
- it does run a little slower
However, overall, I have no intention of reverting back to WM2003SE. Despite the niggles above, it is a great credit to the star chaps in this forum that they have WM5 running, and so good.
Now Mr Gates, about that Messaging and Security Feature Pack - we're (still) waiting... tap... tap... tapitty-tap...
bosseye You can explain to me more in detail as you have made it?
bosseye You can explain to me more in detail as you have made it?
bosseye said:
Ignore my last email, already solved it. For the PH20B2, do as the WiKi says except be sure to use the PH20B directory. I found that "maupgrade" wouldn't run until I renamed the HTCRUU.conf and HTCRUU.dll files as RUU.conf and RUU.dll respectively. Then all worked as the Wiki suggests. More updates later...
br/Bosseye
Click to expand...
Click to collapse
Hi,
does this mean i can Update an PH20B2 (Vodafone VPA3) with WM5 for the PH20B ??
I have just update my VPA3 with the 1.42 Rom T-Mobile for the MDA3 and the MDA3 is a PH20B but all is working. Whats the different between PH20B2 and PH20B?
Totti
bosseye said:
Actually, I found it OK. There are a few problems:
- using the BA keyboard, sometimes keypresses are missed
- sometimes you get Wifi and GPRS at the same time (confused BA)
...
Now Mr Gates, about that Messaging and Security Feature Pack - we're (still) waiting... tap... tap... tapitty-tap...
Click to expand...
Click to collapse
I've flashed a few WM5 roms and never found any missing keypress on the BA keyboard! You can also try PocketMSN for messaging. If the speed is slower than WM2k5, take care of your device with the 'Startup Manager'

Hardware keyboard for imaginet arabizer

Like I have said many times before: I own an Imate Jasjar and an O2 Xda Exec . I am trying to have the all capabilities from my Imate Jasjar into my O2 Xda Exec and to some extent, I am successful in doing so. I have the following features from Imate into my O2:
1. Arabizer Software
2. Prayer Software
3. Hijri Calender
4. Loh-ul-Maftah (???? ????????)
5. Dictionary
6. Al-Mufakarah (???????)
I just can't the hardware keyboard to work on my O2 to write arabic (SHIFT+SYM). I have tried to replace the keyboard dll from Imate onto my O2 and made appropriate changes in the registry (I am guessing, it is in: HKLM\Hardware\Devicemap\keybd, DriverName: arkbddr.dll). I would love some help here from the experts.
Thanks.
somedesi said:
Like I have said many times before: I own an Imate Jasjar and an O2 Xda Exec . I am trying to have the all capabilities from my Imate Jasjar into my O2 Xda Exec and to some extent, I am successful in doing so. I have the following features from Imate into my O2:
1. Arabizer Software
2. Prayer Software
3. Hijri Calender
4. Loh-ul-Maftah (???? ????????)
5. Dictionary
6. Al-Mufakarah (???????)
I just can't the hardware keyboard to work on my O2 to write arabic (SHIFT+SYM). I have tried to replace the keyboard dll from Imate onto my O2 and made appropriate changes in the registry (I am guessing, it is in: HKLM\Hardware\Devicemap\keybd, DriverName: arkbddr.dll). I would love some help here from the experts.
Thanks.
Click to expand...
Click to collapse
How did u get the Arabizer to work on your O2, I have tried serveral times and all Iget is error messages...???
^^search my friend... its already been discussed and an updated software is available.
ady said:
^^search my friend... its already been discussed and an updated software is available.
Click to expand...
Click to collapse
Can you please tell me where is it?
moeaboelela: Download the arabizer software from the imaginet website. Install in on your Universal. When it asks for your key, pm me the usercode and I will help you out. :wink:
Rest: I guess, we are landing on a tangent here. I was hoping someone must be able to get the hardware keyboard to write arabic with SHIFT+SYM (just like in imate JJ).
i have observed another thing, i.e. whenever I soft-reset my Universal, the extended rom is filled with arabizer software again, although, i keep my erom empty. I am running:
Code:
ROM Version: 1.30.82 WWE
ROM Date: 02/22/06
Radio Version: 1.09.00
ExtRom Version: 1.30.171 WWE
I have a backup of my erom and I installs cab manually, but it seems surprising, that the erom gets filled back with arabizer software on every soft-rest.
I guess, I, myself is also landing on a tangent, but I thought I should share this with everyone. :roll:
somedesi said:
moeaboelela: Download the arabizer software from the imaginet website. Install in on your Universal. When it asks for your key, pm me the usercode and I will help you out. :wink:
Rest: I guess, we are landing on a tangent here. I was hoping someone must be able to get the hardware keyboard to write arabic with SHIFT+SYM (just like in imate JJ).
Click to expand...
Click to collapse
Thanks man, I am loading now...
somedesi said:
i have observed another thing, i.e. whenever I soft-reset my Universal, the extended rom is filled with arabizer software again, although, i keep my erom empty. I am running:
Code:
ROM Version: 1.30.82 WWE
ROM Date: 02/22/06
Radio Version: 1.09.00
ExtRom Version: 1.30.171 WWE
I have a backup of my erom and I installs cab manually, but it seems surprising, that the erom gets filled back with arabizer software on every soft-rest.
I guess, I, myself is also landing on a tangent, but I thought I should share this with everyone. :roll:
Click to expand...
Click to collapse
Hi,
I have loaded that Arabizer but every few hours I have to reset my PPC, what other Arabizer software are there in the market??
I have Beta8 (AKU3.2)
what about arabic truevga
hello there
is there any one who could install true vga while imaginet arabier enabled, i had to disable it first, hence NO arabic system on true vega.
arabizer suite sometimes failled to install the arabic tahoma fonts , so i had to copy them manually to the windows folder.
many thanks
need a working arabizer
somedesi said:
moeaboelela: Download the arabizer software from the imaginet website. Install in on your Universal. When it asks for your key, pm me the usercode and I will help you out. :wink:
Rest: I guess, we are landing on a tangent here. I was hoping someone must be able to get the hardware keyboard to write arabic with SHIFT+SYM (just like in imate JJ).
Click to expand...
Click to collapse
dear freind
I loaded the latest arabizer from imaginate but it requests serial every time can you help as you promissed? my Email: [email protected]
yasamin said:
dear freind
I loaded the latest arabizer from imaginate but it requests serial every time can you help as you promissed? my Email: [email protected]
Click to expand...
Click to collapse
hi there .
i'll send u the keygen for it
download it from here
Arabic dword
I installed Jwright Aku3.2 and the arabizer. All seem to work except the external keyboard! Found out in buzzdev.net you can change the qwerty layout thru registry:
[HKEY_LOCAL_MACHINE\SOFTWARE\OEM\Qwerty]
"Layout"=dword:0001040c
The above dword is for english. I am not sure if the registry is for external keyboard. if it is for external keyboard would appreciate if anyone with the original imate arabic rom to check the value of dword. regards
hi can u send me the keygen aswell
my email [email protected]
somedesi said:
Like I have said many times before: I own an Imate Jasjar and an O2 Xda Exec . I am trying to have the all capabilities from my Imate Jasjar into my O2 Xda Exec and to some extent, I am successful in doing so. I have the following features from Imate into my O2:
1. Arabizer Software
2. Prayer Software
3. Hijri Calender
4. Loh-ul-Maftah (???? ????????)
5. Dictionary
6. Al-Mufakarah (???????)
I just can't the hardware keyboard to work on my O2 to write arabic (SHIFT+SYM). I have tried to replace the keyboard dll from Imate onto my O2 and made appropriate changes in the registry (I am guessing, it is in: HKLM\Hardware\Devicemap\keybd, DriverName: arkbddr.dll). I would love some help here from the experts.
Thanks.
Click to expand...
Click to collapse
Run the attached file from you ppc ..its an SPB backup file of some keyboard dlls that should enable this...
I struggled for 2 months with AKU 3.2 and 3.3 with this problem till i came across it in a post at ce4arab.com
Mind that prayer times crashes AKU 3.2 and 3.3 when coming out of standby..Heard that it works ok with AKU 3.5 from Helmi
any ways here is the file
Please ,please ,please ...buy the imaginet arabizer..it costs so little and they need our Arab natives support..
Dont keygen it. and any ways you should have a license if your device is branded by Imate.
hi i have Imaginet Pocket Arabizer Suite v2 b342 and installed keyboard.exe but no changes shod i press shift+sym key once?(i have VM6)
good day to you all...
I am using htc p3400, and I really am in desperate need for Arabizer to be able to view the messages I receive from friends in arabic language.
can someone guide me, or help me with getting the serial/ code?
thanks again.

AKU3.2 Rom for Universal (before 19_11_06-1805)

If you want Information and support, please go here:
forum.xda-developers.com/showthread.php?t=283594
Look in the first Posting of this thread.
Look in the first post of this thread.
Look forward to seeing the new release, and keen to see if the 'phone' issues some of us are experiencing are fixed / not there.
Thanks Ivan
Re: AKU3.2 Rom for Universal
Lt.Cmdr.Ivan said:
Bugs2 known WIFI)
WIFI error1 (1 user reported it)
Universal goes to standby mode with Wi-Fi turned on, then I switch the device on, and it starts trying to register in Wi-Fi net forever (shows "tower" but without circle and rays)
WIFI error2 (1 user reported it)
Sometimes when I close Comm Manager device draws only upper part of screen and hangs, but if you wait for about half minute, it returns to life
Click to expand...
Click to collapse
I have this errors too...
Can i fix this or wait for next beta?
New Beta 8
Hi Ivan
I see a Beta8 with today's date on it, is that the new ROM????
No its just the beta8 repacked and reuploaded, because the rar on the ftp wasn't accurately packed.
...just to be in the thread.
:wink:
for info:
at the under side of the page is a link, click to warch or stop watching this thread.... :wink:
Save contact to SIM
I'm using rc1.
Contacts/tapping any contact/Menu/Save to SIM. The last item namely "Save to SIM" is not available (grey color, not black). Looks it's necessary to change a value somewhere in registry, but I did not manage to find what and where.
Does some1 face such problem? Or there is a solution the problem? Does this bug exists in beta8?
Thx in advance
[edit]
yes, "Save to SIM" is active and works.
hi Ivan
it will hang up when synchronizing with pc some times,and will show cannot get IP from server.I use beta 8.
We want the new rom! We want the new rom !
geovass said:
We want the new rom! We want the new rom !
Click to expand...
Click to collapse
YES, YES, YES !!
Cheers
hrb
2s to universal
Hi Ivan,
I back with you! Also upgraded from 2s to universal. Will try beta 8 on weekend. Anything to watch out for as I do also use the unit for live work...
Regards,
Simon
Hi! I used the beta 6 with pleasure ;-) But now i switched back to the qtek rom - i need a german ROM. I hope ther will be a german release.
Greetings Flo
did anybody try the *ARM*CAB? (BTP). I've downloaded it, the BT manager has changed but when I search for the Universal's services on my notebook, I get only the same 3 services az before...
I tried to flash de beta8 but i get country ID error 120... i read the readme file and it says:
Q14: I get “error 120: Country id error”, what should I do?
A: It may due to you get the wrong image. Please check your device’s device name and language type and download RUU package from the vender web site again and reset your device and then run RUU again.
Has anybody had this problem..I bought my device as qtek9000 via the official vendor of HTC pda's in Holland... I bought it through my girlfriends telecom company... it comes with WM5.0 UK...
it's not simlocked..of course i just updated the radio rom from 1.9.0 to 1.13 with the tools provided by this forum.
alexei said:
I tried to flash de beta8 but i get country ID error 120... i read the readme file and it says:
Q14: I get “error 120: Country id error”, what should I do?
A: It may due to you get the wrong image. Please check your device’s device name and language type and download RUU package from the vender web site again and reset your device and then run RUU again.
Has anybody had this problem..I bought my device as qtek9000 via the official vendor of HTC pda's in Holland... I bought it through my girlfriends telecom company... it comes with WM5.0 UK...
it's not simlocked..of course i just updated the radio rom from 1.9.0 to 1.13 with the tools provided by this forum.
Click to expand...
Click to collapse
You have to use MupgradeNoid.exe
Lt.Cmdr.Ivan said:
Perfectly functioning VGA Mode (regarding to some users)
http://www.jaml.com/MvRTrueVGA/
If you have this problem:
GPRS is connected but the icon is stuck in a loop showing it trying to connect
go here:
http://forum.xda-developers.com/viewtopic.php?t=34995
************************************************************
************************************************************
Aku3.2 compatibility list:
Working
ClearVue 2.3
GSplayer 2.25
ScummVM 0.8 and 0.9
TomTom 5.21
Not working
Blackberry Connect
Special Thanks to
Mamaich
Thanks to
Bepe and friends for his Rom kitchen (This is definitely perfect)
bbs.pdafans.org (For their Rom)
Xda-developers (Knowledge and tools)
Buzzdev.net (Knowledge and tools)
Tuatara (Special tips and tools)
Sub69 (network settings for aku3.2 beta3 and 4 as testing for pushmail)
baudy2 (for compatability of the BB client)
All People submitting programs to working or non working list.
All the testers out there.
All i forgot
Click to expand...
Click to collapse

Any Soft Reset Database (email ect.) corruption fix?

I don't think I ever saw a resolution to this problem, is there a solid fix to the soft reset problem exhibited by Dopod's WM6 Rom. Currently running rom version 3.00.707.18 (07/24/07)
The problem is simple, set up some IMAP devices, configure, Push Email, Pair a bluetooth device. Soft reset the device a few times and eventually one or all the settings get lost. Added email accounts get lost, Paired bluetooth device is no longer paired, ActiveSync loses the password... you get the idea
Hi,
You should try the latest ROM releases, i never had that problem again since.
I'm currently using build 18533.0.7.0 without any loss of information after a soft-reset.
Bye.
shoey5 said:
I don't think I ever saw a resolution to this problem, is there a solid fix to the soft reset problem exhibited by Dopod's WM6 Rom. Currently running rom version 3.00.707.18 (07/24/07)
The problem is simple, set up some IMAP devices, configure, Push Email, Pair a bluetooth device. Soft reset the device a few times and eventually one or all the settings get lost. Added email accounts get lost, Paired bluetooth device is no longer paired, ActiveSync loses the password... you get the idea
Click to expand...
Click to collapse
for mail account being lost after few softresets, you can try the mail account recovery software
http://nicolasmauri.blogspot.com/2007/01/wm5-utility-recover-your-lost-mail.html
it have repair after softreset feature, which give you auto repair your mail account with your provided info.
it works for me using pdaviet's rom
Hi, just tried last build 18533.0.7.0 (faman 3.6) but i have the same problem.
lost email accounts can be repared with the mailaccountrepair.exe app and works fine. But GPRS settings, wifi keys , BT paring disapear too on soft reset.
we realy need a solution/fix
regards.
Up !
all new roms cooked with the dopod official wm6 have this problem
can't find a solution, except don't soft reset...
people can live without softrest ?? lol
does this affect all new wm6 build on other phones? or just dopod's trinity rom bug?
anyway the first wm6 "leak" rom for trinity is not affected by this problem.
We allready know that!
All the rom's based on Dopod wm6, have that problem.
It is something from XIP section and not from the OS.
I have allready contact with mun_rus and ervius!
Mun_rus think's the problem is from the Dopod nk.exe.
So this is a bug found only on Trinity device's cause the fault from Dopod wm6 XIP!
All the new cooked rom's today use the XIP section from Oficiall Dopod wm6 rom's.
The only think sometimes changed in XIP section by cooker's is
coredll.dll-(From change the OS version) and
flashdrv.dll-(To merge the extended_rom)
Also sometime's edit the boot.hv and boot.rgu.
All the other file's in XIP stay the same.
The first wm6 leaked rom for trinity is not affected by this problem cause mun_rus use XIP section from ovosleep (Dont know where ovosleep found it).
Thank's
This is what I do and it really works for me:
[!] For prevent password and account dissapearing u should (you should make this procedure immidiatly after first soft reset ):
1. Set up your connection settings
2. Open IExplorer / Set up Ineternet connection / Open some internet page
3. Click Disconnect button to close internet connection
4. Hold power button and turn off your phone
5. Power on your phone.
After that procedure your password wont dissapear. I think that you should repeat the same for mail account (set up mail account / try to send or recieve your mail / hold disconnect button / turn off your phone)
dta1974 said:
This is what I do and it really works for me:
[!] For prevent password and account dissapearing u should (you should make this procedure immidiatly after first soft reset ):
1. Set up your connection settings
2. Open IExplorer / Set up Ineternet connection / Open some internet page
3. Click Disconnect button to close internet connection
4. Hold power button and turn off your phone
5. Power on your phone.
After that procedure your password wont dissapear. I think that you should repeat the same for mail account (set up mail account / try to send or recieve your mail / hold disconnect button / turn off your phone)
Click to expand...
Click to collapse
Yes this is what mun_rus say on his first wm6 release.
Maybe that help but...
In many time's after you flash a new rom and after the auto-costumization end the device auto soft reset.
So after boot again maybe you allready have corruption your registry!
Thank's for the solution but we have to focus at these problem and find the real soution!
I allready make my XIP test's but i nead help from someone to really know how.
Thank's
I know that ausdim,but that´s what I do and afterwards I clean the registry with sktools.Seems to work. ;-)
ausdim said:
Thank's for the solution but we have to focus at these problem and find the real soution!
I allready make my XIP test's but i nead help from someone to really know how.
Thank's
Click to expand...
Click to collapse
I agree, problem needs to be figured out and corrected, makes WM6 on Trinity pretty useless otherwise
Is any one to know about XIP's for help??
I upload the two xip's.bin
The one is from the first leaked wm6 for trinity and the other is from Dopod wm6.
We whant to replace the nk.exe from the new xip.bin with the old nk.exe.
Also we whant to merge the extended_rom.
Please these is very usefull for all of us couse make the trinity doesn't loose after any soft-reset tha mail acount's the wifi data and few other think's.
So if any one know (Bepe,ervius,mun_rus.....) please help.
Many thank's
i'm a bit confused.. i've tried almost every ROM for the trinity, and i've never lost my account/connection settings after soft reset...
racerx_ At you it is established SuperSid? At the some people passwords are lost, at the some people are not present. It can it is guilty?
I Am sorry for my English
no, i haven't super-cid'd... is that the cause of the problem?
I have the same problem with ADW's ROM. He suggested that I only soft reset by pressing the powerbutton and really close down the device. I now use this procedure always for a softreset and since then I did not lose any passwords or pairing info.
I agree with most of you that there is no sense of upgrading ROMs with every build release if we don't solve this BIG bug. We are releasing a rom every week but all of them buggy.
In my case I've seen that even only using PowerDown Button reseting, somehow registry corruption happens.
I don't know if someone could fix this, but in case someone does and does need some help, count with me.
I manage to port the old good xip section...
So i open a new thread to deal with that.
http://forum.xda-developers.com/showthread.php?t=342269
For now we have to build all the new rom's with that rom folder in kitchen's.
Thank's
racerx_ You have not understood - at whom is SuperSid at that passwords are lost. Who does not have SuperSid that has no such problem.
colorist said:
racerx_ You have not understood - at whom is SuperSid at that passwords are lost. Who does not have SuperSid that has no such problem.
Click to expand...
Click to collapse
Hi all,
like racerx_ I have tried many ROM and never I've lost my settings too
my device isn't SuperCid too, pheraps you must look at what SuperCid-ing a device do..
Hope this help and excuse for my english.
Bye
got it... thanks!

WLAN/WIFI stay off on Schap's rom 4.31

Hi,
i got a problem with my pda whan i want to use wifi...I can' activate it :
with com manager i click on WLAN, WLAN come gray while pda is calculating and wifi come back to off ;o( same result in setting/wifi...
Did someone know this problem, a way to resolve it or a way to diagnostic it ?
Hermes history :
- originaly SPV M3100 orange with wm5 rom
- official update to wm6
- flash and unlocking to schap's wm6 pro 3.57a (1st wifi problem)
- flash to schap's wm6 pro 4.31 (same problem)
Thanks for your help
TSyst.
open you registry editor.goto HKLM>Software>HTC>CommManager>WLAN>DeviceName
open it up and make sure the end of the command is "\TIACXWLN1"
hope this helps
Hi,
tks for answer.
The regkey is in a register base and with the good end of cmd (\TIACXWLN1),
so...another idea ;o)
Tks
TSyst
Check the WAN card still has a MAC address listed, I had an issue where it dissapeared and had to hack the Rom to get it back, if that's the case have a search on here for the thread which had all the instructions to resolve it.
Hi,
How can i check if the WAN card still has a MAC address somewhere ?
Tks
hi,
following your idea of hacking rom (markafreeman) i've found this thread in the upgradinf forum : http://forum.xda-developers.com/showthread.php?t=322225
tks for help, i'll ask some details in this thread and try to apply it on my device, but it's not really clear for my poor english and a newbies like me...so...hopping evrything 'll go in the good way and to not definitivly crash my hermes
tks for idea
Tsyst.
problem resolved
Tks markafreeman, following your idea i have read the post listed above and resolved my problem Wlan is now active...
Great tks for your answer
TSyst.

Categories

Resources