Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
HOWTO: Installing Internet Explorer 6 with wine
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3, 4 ... 10, 11, 12  Next  
Reply to topic    Gentoo Forums Forum Index Documentation, Tips & Tricks
View previous topic :: View next topic  
Author Message
nouse66
Apprentice
Apprentice


Joined: 09 Jan 2003
Posts: 194

PostPosted: Wed Mar 31, 2004 9:50 pm    Post subject: Reply with quote

i did the install according to the wine-20040309 instructions and i get this when i run iexplore.exe:

Code:

wine .wine/fake_windows/Program\ Files/Internet\ Explorer/IEXPLORE.EXE Protocol error:0x82c3790: bad reply fd


anyone know what that means?
Back to top
View user's profile Send private message
steveb
Advocate
Advocate


Joined: 18 Sep 2002
Posts: 4564

PostPosted: Wed Mar 31, 2004 11:17 pm    Post subject: Reply with quote

nouse66 wrote:
i did the install according to the wine-20040309 instructions and i get this when i run iexplore.exe:

Code:
wine .wine/fake_windows/Program\ Files/Internet\ Explorer/IEXPLORE.EXE Protocol error:0x82c3790: bad reply fd


anyone know what that means?


never had this error. but to be honest: the gentoo ebuild for wine is full of errors! some stuff is not 100% correctly done in the ebuild. i am just now on my way to do an ebuild for wine to fetch wine from cvs and while doing the ebuild i found many places and instructions in the ebuild to be completly wrong!

for example the following files are not correctly created/copied to the .data/fake_windows directory:
- system.ini (the system.ini is not anymore distributed with wine.)
- generic.ppd (the location of generic.ppd is not there where the ebuild expects it)
- winedefault.reg (is replaced by wine.inf )

it does not surprice me that so manny people have trouble with wine. anyway... i better keep quite and maybe the ebuild i am doing now will fix some problems. if so, then i will submit it to bugs.gentoo.org


cheers

SteveB
Back to top
View user's profile Send private message
pharaoh
Apprentice
Apprentice


Joined: 20 Nov 2003
Posts: 211
Location: Pennsylvania

PostPosted: Sun Apr 04, 2004 5:23 pm    Post subject: Reply with quote

under the png setup part, the line to download dcom98.exe needs to be capitalized as DCOM98.exe or else wget won't wget it :)
Back to top
View user's profile Send private message
kanaric
n00b
n00b


Joined: 06 Apr 2004
Posts: 4

PostPosted: Tue Apr 06, 2004 11:39 pm    Post subject: Finally got it to work! Reply with quote

8O
After reading a dozen guides a dozen times. I finally got it to work!

1st thanks to : steveb, Mirrorball, Daagar, Franks Corner, dll-files.com, microsoft.com and Patrick Mackinlay

2nd - I think after my experiance that the biggest problem with installing IE6 is getting the [DllOverrides] section of the wine config file correct. If you are haveing trouble with installing IE and you are getting DllRegServer / DllInstall errors this is probably it.

3rd MY SETUP: (end of document : I don't think its really very inportant but might be)

4th I did this install as a user, not su-ed you shouldn't need to su to install anything.

The Install
Step One - clean wine out
Code:
WARNING - THIS WILL REMOVE EVERYTHING INSTALLED UNDER WINE. But as far as I can tell, this is the only way to get IE 6 to work.

$ rm ~/.wine -r -f
$ wine

Step Two - make a temp folder and get the installers / files
Code:
$ mkdir ~/IE6setup
$ cd ~/IE6setup
$ wget http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/EN-US/ie6setup.exe
$ wget http://download.microsoft.com/msdownload/dcom/98/x86/en/DCOM98.EXE
$ wget http://w1.401.telia.com/~u40131328/setupx.zip
$ unzip setupx.zip -x readme.txt

Step Three - editing .bashrc to help wine out
Code:
$ echo -e "export PATH=\044PATH:/usr/lib/wine/bin" >> ~/.bashrc
$ echo -e "export LD_LIBRARY_PATH=\044LD_LIBRARY_PATH:/usr/lib/wine/lib" >> ~/.bashrc
$ bash

Step Four - load DCOM98 and setupx
Code:
$ WINEDLLOVERRIDES="ole32=n" wine ~/IE6setup/DCOM98.EXE
          note: this will do the Font metrics step (which takes a while)
          say yes & yes to install DCOM98 for windows 98
$ cp ~/IE6setup/setupx.dll ~/.wine/fake_windows/Windows/System/

Step Five - the hard step - where I sure got confused about 60 times
Code:
Step Five [a] open ~/.wine/config in your favorate editor and scroll down to the [DllOverrides] section.
Step Five [b] delete this entire section all the way down to the [x11drv] section
Step Five [c] paste in the following (note) I commented out several of the dlls so that wineboot will run successfully,  I'm not sure if anything else needs them,  you may want to uncomment them when you are done installing IE

Code:

[DllOverrides]
"rpcrt4"       = "builtin, native"
;"oleaut32"     = "builtin, native"
;"ole32"        = "builtin, native"
"commdlg"      = "builtin, native"
"comdlg32"     = "builtin, native"
"ver"          = "builtin, native"
"version"      = "builtin, native"
"shell"        = "builtin, native"
"shell32"      = "builtin, native"
"shfolder"     = "builtin, native"
;"shlwapi"      = "builtin, native"
;"shdocvw"      = "builtin, native"
"lzexpand"     = "builtin, native"
"lz32"         = "builtin, native"
"*comctl32"     = "builtin, native"
"commctrl"     = "builtin, native"
"advapi32"     = "builtin, native"
"crtdll"       = "builtin, native"
"mpr"          = "builtin, native"
"winspool.drv" = "builtin, native"
"ddraw"        = "builtin, native"
"dinput"       = "builtin, native"
"dsound"       = "builtin, native"
"opengl32"     = "builtin, native"
"msvideo"      = "builtin, native"
"msvfw32"      = "builtin, native"
"mcicda.drv"   = "builtin, native"
"mciseq.drv"   = "builtin, native"
"mciwave.drv"  = "builtin, native"
"msacm.drv"    = "builtin, native"
"msacm"        = "builtin, native"
"msacm32"      = "builtin, native"
"midimap.drv"  = "builtin, native"
"*" = "native, builtin"

[AppDefaults\\IEXPLORE.EXE\\DllOverrides]
"mshtml"            = "native, builtin"
"shdocvw"           = "native, builtin"
"shlwapi"           = "native, builtin"
"urlmon"            = "native"
"crypt32"           = "native, builtin"
"wininet"           = "native, builtin"
"*comctl32"         = "builtin"
"mapi"              = "native, builtin"
"mapi32"            = "native, builtin"
"ole32"             = "native, builtin"
"compobj"           = "native, builtin"
"ole2"              = "native, builtin"
"ole2nls"           = "native, builtin"
"ole2conv"          = "native, builtin"
"ole2prox"          = "native, builtin"
"ole2thk"           = "native, builtin"
"storage"           = "native, builtin"
"olepro32"          = "native, builtin"
"rpcrt4"            = "native, builtin"
"oleaut32"          = "native, builtin"
"msvcrt"            = "native, builtin"
"setupapi"          = "native, builtin"
"devenum"           = "native, builtin"
"quartz"            = "native, builtin"
"jscript"           = "native, builtin"
"wintrust"          = "native, builtin"
"secur32"           = "native, builtin"
"ddraw"             = "native, builtin"
"*"                 = "builtin, native"

[AppDefaults\\ie6setup.exe\\DllOverrides]
"wininet"           = "builtin"
"shdocvw"           = "native, builtin"
"shlwapi"           = "native, builtin"
"urlmon"            = "native"
"crypt32"           = "native, builtin"
"*comctl32"         = "builtin"
"mapi"              = "native, builtin"
"mapi32"            = "native, builtin"
"ole32"             = "native, builtin"
"compobj"           = "native, builtin"
"ole2"              = "native, builtin"
"ole2nls"           = "native, builtin"
"ole2conv"          = "native, builtin"
"ole2prox"          = "native, builtin"
"ole2thk"           = "native, builtin"
"storage"           = "native, builtin"
"olepro32"          = "native, builtin"
"rpcrt4"            = "native, builtin"
"oleaut32"          = "native, builtin"
"msvcrt"            = "native, builtin"
"setupapi"          = "native, builtin"
"devenum"           = "native, builtin"
"quartz"            = "native, builtin"
"jscript"           = "native, builtin"
"wintrust"          = "native, builtin"
"secur32"           = "native, builtin"
"ddraw"             = "native, builtin"
"*"                 = "builtin, native"


[AppDefaults\\msimn.exe\\DllOverrides]
"*comctl32"         = "builtin"
"mapi"              = "native, builtin"
"mapi32"            = "native, builtin"
"ole32"             = "native, builtin"
"compobj"           = "native, builtin"
"ole2"              = "native, builtin"
"ole2nls"           = "native, builtin"
"ole2conv"          = "native, builtin"
"ole2prox"          = "native, builtin"
"ole2thk"           = "native, builtin"
"storage"           = "native, builtin"
"olepro32"          = "native, builtin"
"rpcrt4"            = "native, builtin"
"oleaut32"          = "native, builtin"
"msvcrt"            = "native, builtin"
"wininet"           = "native, builtin"
"setupapi"          = "native, builtin"
"devenum"           = "native, builtin"
"quartz"            = "native, builtin"
"urlmon"            = "native"
"shdocvw"           = "native, builtin"
"jscript"           = "native, builtin"
"wintrust"          = "native, builtin"
"shlwapi"           = "native, builtin"
"secur32"           = "native, builtin"
"crypt32"           = "native, builtin"
"ddraw"             = "native, builtin"
"*user.exe"         = "native,builtin"
"*"                 = "builtin, native"

[AppDefaults\\rundll32.exe\\DllOverrides]
"ddraw"             = "builtin"

Finally! Step Six - Install IE
Code:
$ wine ie6setup.exe
$ wine wineboot

Notes on the install - I get two errors that don't seem to affect things, the first happens while setup is running, and is labeled by
Code:
 AddCRL failed xxx000xxx
and the second is while wineboot is running and is labeled such
Code:
error loading .. ieinfo5.ocx .. not installed ..
third note, when running setup you have to remove a \ from a line to make it intall as such
Code:
you must remove a \ from C:\\Program Files\Internet Explorer
                right here ^ make it 
C:\Program Files\Internet Explorer
and last, I installed only Internet Explorer 6 Web Broswer and Visual Basic Scripting Support

Run IE
Code:

$ wine "~/.wine/fake_windows/Program Files/Internet Explorer/IEXPLORE.EXE"


referances:
this forum!
http://patrick.spacesurfer.com/ie_wine_install.html
http://frankscorner.org/modules.php?op=modload&name=Sections&file=index&req=viewarticle&artid=49&page=1
http://www.dll-files.com/dllindex/pop.shtml?setupx

Code:
My setup:
  Gentoo Linux
  2.6.4-gentoo-r1 kernel
  Dell C840 laptop - docked
  -/etc/make.conf-
    CFLAGS="-march=pentium4 -Os -mmmx -msse -msse2 -pipe -funroll-loops -fomit-frame-pointer"
    CHOST="i686-pc-linux-gnu"
    USE="nptl X tiff mmx sse sse2 -alsa -arts -kde -qt"
    ACCEPT_KEYWORDS="~x86"
  -installed programs and versions-
    x11-base/xfree-4.3.0-r5
    x11-wm/kahakai-0.6.2
    app-arch/cabextract-0.6
    app-emulation/wine-20040309
    app-arch/unzip-5.50-r2unzip
Back to top
View user's profile Send private message
Mirrorball
Apprentice
Apprentice


Joined: 25 Apr 2003
Posts: 235
Location: Brazil

PostPosted: Wed Apr 07, 2004 12:40 am    Post subject: Reply with quote

On Frank's World we can now download WineTools.

http://franksworld.net/winetools.html

I installed the program and now I'm trying to install Internet Explorer but Windows Update isn't downloading any files.

I didn't work. :(
Back to top
View user's profile Send private message
steveb
Advocate
Advocate


Joined: 18 Sep 2002
Posts: 4564

PostPosted: Thu Apr 08, 2004 8:30 pm    Post subject: Re: Finally got it to work! Reply with quote

kanaric wrote:
8O
After reading a dozen guides a dozen times. I finally got it to work!

1st thanks to : steveb, Mirrorball, Daagar, Franks Corner, dll-files.com, microsoft.com and Patrick Mackinlay

2nd - I think after my experiance that the biggest problem with installing IE6 is getting the [DllOverrides] section of the wine config file correct. If you are haveing trouble with installing IE and you are getting DllRegServer / DllInstall errors this is probably it.

3rd MY SETUP: (end of document : I don't think its really very inportant but might be)

4th I did this install as a user, not su-ed you shouldn't need to su to install anything.

............


i have just one question for you:
can you go to microsoft web update and start the scanning process with your setup?

i have tweaked my wine conf till i got it working ;)
if you want, i can post my config file.

cheers

SteveB
Back to top
View user's profile Send private message
nalin
Apprentice
Apprentice


Joined: 27 Sep 2002
Posts: 172
Location: Long Beach

PostPosted: Fri Apr 09, 2004 5:50 am    Post subject: Reply with quote

Just out of curiosity here as I noticed there are a number of web developers attracted to this thread - I am tempted to try this not for IE in and of itself, but rather for the google toolbar (to those unfamiliar with it, it shows pagerank, an indication of roughly how important a page is in googles eyes...which in turn is useful for fields such as search engine optimization).

Does anyone know whether the toolbar will install successfully and retain this functionality?
Back to top
View user's profile Send private message
theboywho
Tux's lil' helper
Tux's lil' helper


Joined: 16 Jan 2004
Posts: 110
Location: Birmingham, United Kingdom

PostPosted: Fri Apr 09, 2004 9:29 am    Post subject: Re: Finally got it to work! Reply with quote

steveb wrote:


i have just one question for you:
can you go to microsoft web update and start the scanning process with your setup?

i have tweaked my wine conf till i got it working ;)
if you want, i can post my config file.

cheers

SteveB


this would be interesting to see - how have you done it?
Back to top
View user's profile Send private message
steveb
Advocate
Advocate


Joined: 18 Sep 2002
Posts: 4564

PostPosted: Fri Apr 09, 2004 10:16 am    Post subject: Re: Finally got it to work! Reply with quote

theboywho wrote:
steveb wrote:


i have just one question for you:
can you go to microsoft web update and start the scanning process with your setup?

i have tweaked my wine conf till i got it working ;)
if you want, i can post my config file.

cheers

SteveB


this would be interesting to see - how have you done it?


well... took me some time, but i have it up and runing ;)

have an look (the images are big (between 600k and 800k), because i have 1600x1280 resolution on my notebook):
PNG Image 1 showing IE on Microsoft Update and an HTTPS connection to Red Hat
PNG Image 2 showing IE on Microsoft Update and an HTTPS connection to Red Hat
PNG Image 3 showing IE on Microsoft Update and an HTTPS connection to Red Hat

same images saved as JPG (the images are big (between 280k and 320k), because i have 1600x1280 resolution on my notebook):
JPG Image 1 showing IE on Microsoft Update and an HTTPS connection to Red Hat
JPG Image 2 showing IE on Microsoft Update and an HTTPS connection to Red Hat
JPG Image 3 showing IE on Microsoft Update and an HTTPS connection to Red Hat


i got ie6 up and runing without any problem. most of the updates from microsoft update site worked without problem. for some updates, i was not able to install them over the web-interface. i downloaded them localy and then extracted them (wine update-name.exe /T:"C:\Temp" /C /Q) and then i switched to bash and did manualy the steps described in the *.inf file. :)
well... looks like it helps to know how that dam windows works and the manny years i was forced to use windows and work on windows.

it took me some time to learn how to deal with wine, but now i can install and configure wine in no time.

if there is an need for an how-to, then i may sit down and write down the steps needed to get that far. the problem is, that english is not my native language and i will sure write 10'000 gramatical misstakes. if an native english speaker is interessed in the how-to and willing to help me to fix my gramatical errors, then we can join forces.


cheers

SteveB
Back to top
View user's profile Send private message
theboywho
Tux's lil' helper
Tux's lil' helper


Joined: 16 Jan 2004
Posts: 110
Location: Birmingham, United Kingdom

PostPosted: Fri Apr 09, 2004 5:09 pm    Post subject: Reply with quote

i would gladly help with any fixing of english.

I have had IE running for a few weeks now - the only thing that doesnt work is SSL

any chance you could post your config file?
Back to top
View user's profile Send private message
steveb
Advocate
Advocate


Joined: 18 Sep 2002
Posts: 4564

PostPosted: Fri Apr 09, 2004 6:51 pm    Post subject: Reply with quote

theboywho wrote:
i would gladly help with any fixing of english.

I have had IE running for a few weeks now - the only thing that doesnt work is SSL

any chance you could post your config file?


great! i think over the weekend i will take time and start an complete new wine environment and write every step i do.

for the config file:
i have no problem posting it. i changed them so much, that i don't know 100% if some of them where active when i installed ie6. anyway... i post the part wich interessts you probably the most:
Code:
[DllOverrides]
"advapi32"         = "builtin, native"
"commctrl"         = "builtin, native"
"*comctl32"        = "builtin, native"
"commdlg"          = "builtin, native"
"comdlg32"         = "builtin, native"
"crtdll"           = "builtin, native"
"ddraw"            = "builtin, native"
"dinput"           = "builtin, native"
"dsound"           = "builtin, native"
"oleaut32"         = "builtin, native"
"ole32"            = "builtin, native"
"opengl32"         = "builtin, native"
"lzexpand"         = "builtin, native"
"lz32"             = "builtin, native"
"mpr"              = "builtin, native"
"msvideo"          = "builtin, native"
"msvfw32"          = "builtin, native"
"msvcrt"           = "native, builtin"
"mcicda.drv"       = "builtin, native"
"mciseq.drv"       = "builtin, native"
"mciwave.drv"      = "builtin, native"
"msacm.drv"        = "builtin, native"
"msacm"            = "builtin, native"
"msacm32"          = "builtin, native"
"msi"              = "native, builtin"
"midimap.drv"      = "builtin, native"
"rpcrt4"           = "builtin, native"
"ver"              = "builtin, native"
"version"          = "builtin, native"
"winspool.drv"     = "builtin, native"
"shell"            = "builtin, native"
"shell32"          = "builtin, native"
"shfolder"         = "builtin, native"
"shlwapi"          = "builtin, native"
"shdocvw"          = "builtin, native"
"*"                = "native, builtin"

[AppDefaults\\_INS0166._MP\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\_INS0432._MP\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\_INS432._MP\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\_INS0433._MP\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\_INS0466._MP\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\_INS0576._MP\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\_INS576._MP\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\_INS5501._MP\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\_INS5567._MP\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\_INS5176._MP\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\_INS5576._MP\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\_INS5577._MP\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\_INS0432._MP\\x11drv]
"Desktop" = "640x480"

[AppDefaults\\_INS0466._MP\\x11drv]
"Desktop" = "640x480"

[AppDefaults\\_INS0576._MP\\x11drv]
"Desktop" = "640x480"

[AppDefaults\\_INS5176._MP\\x11drv]
"Desktop" = "640x480"

[AppDefaults\\_INS5576._MP\\x11drv]
"Desktop" = "640x480"

[AppDefaults\\demo32.exe\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\ikernel.exe\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\idriver.exe\\x11drv]
"Desktop" = "800x600"
"Managed" = "N"

[AppDefaults\\hl.exe\\x11drv]
"Desktop" = "1024x768"
"Managed" = "N"

[AppDefaults\\StarCraft.exe\\x11drv]
"Desktop" = "640x480"
"Managed" = "N"

[AppDefaults\\Unreal.exe\\x11drv]
"Desktop" = "1024x768"
"Managed" = "N"

[AppDefaults\\ut.exe\\x11drv]
"Desktop" = "1024x768"
"Managed" = "N"

[AppDefaults\\c&c95.exe\\x11drv]
"Desktop" = "640x480"
"Managed" = "N"

[AppDefaults\\ra95.exe\\x11drv]
"Desktop" = "640x480"
"Managed" = "N"

[AppDefaults\\setup.exe\\x11drv]
"Desktop" = "800x600"

[AppDefaults\\IEXPLORE.EXE\\DllOverrides]
"advapi32"          = "builtin"
"*advapi32"         = "builtin"
"*autorun.exe"      = "native, builtin"
"cabinet"           = "native, builtin"
"compobj"           = "native, builtin"
"*comctl32"         = "builtin"
"crypt32"           = "native, builtin"
"*ctfmon.exe"       = "builtin"
"dciman32"          = "native"
"*ddhelp.exe"       = "builtin"
"ddraw"             = "builtin"
"ddrawex"           = "builtin"
"devenum"           = "native, builtin"
"*findfast.exe"     = "builtin"
"*ICWCONN1.EXE"     = "builtin"
"*IEINFO5.OCX"      = "builtin"
"jscript"           = "native, builtin"
"*maildoff.exe"     = "builtin"
"*mapi"             = "native, builtin"
"*mapi32"           = "native, builtin"
"*mdm.exe"          = "builtin"
"*mosearch.exe"     = "builtin"
"msvcrt"            = "native, builtin"
"msvcrtd"           = "native, builtin"
"*mshtml"           = "native"
"*msi"              = "native"
"odbc32"            = "native, builtin"
"ole2"              = "native, builtin"
"ole2conv"          = "native, builtin"
"ole2nls"           = "native, builtin"
"ole2prox"          = "native, builtin"
"ole2thk"           = "native, builtin"
"ole32"             = "native, builtin"
"oleaut32"          = "native, builtin"
"olepro32"          = "native, builtin"
"*pstores.exe"      = "builtin"
"quartz"            = "native, builtin"
"rpcrt4"            = "native, builtin"
"rsabase"           = "native, builtin"
"secur32"           = "native, builtin"
"setupapi"          = "native, builtin"
"shdocvw"           = "native, builtin"
"shlwapi"           = "native, builtin"
"storage"           = "native, builtin"
"url"               = "native, builtin"
"urlmon"            = "native, builtin"
"*user.exe"         = "native, builtin"
"wininet"           = "native, builtin"
"wintrust"          = "native, builtin"
"*"                 = "builtin, native"

[AppDefaults\\ie6setup.exe\\DllOverrides]
"wininet"          = "builtin"
"shdocvw"          = "native, builtin"
"shlwapi"          = "native, builtin"
"urlmon"           = "native"
"crypt32"          = "native, builtin"
"*comctl32"        = "builtin"
"mapi"             = "native, builtin"
"mapi32"           = "native, builtin"
"ole32"            = "native, builtin"
"compobj"          = "native, builtin"
"ole2"             = "native, builtin"
"ole2nls"          = "native, builtin"
"ole2conv"         = "native, builtin"
"ole2prox"         = "native, builtin"
"ole2thk"          = "native, builtin"
"storage"          = "native, builtin"
"olepro32"         = "native, builtin"
"rpcrt4"           = "native, builtin"
"oleaut32"         = "native, builtin"
"msvcrt"           = "native, builtin"
"setupapi"         = "native, builtin"
"devenum"          = "native, builtin"
"quartz"           = "native, builtin"
"jscript"          = "native, builtin"
"wintrust"         = "native, builtin"
"secur32"          = "native, builtin"
"ddraw"            = "native, builtin"
"*"                = "builtin, native"

[AppDefaults\\msimn.exe\\DllOverrides]
"*comctl32"        = "builtin"
"mapi"             = "native, builtin"
"mapi32"           = "native, builtin"
"ole32"            = "native, builtin"
"compobj"          = "native, builtin"
"ole2"             = "native, builtin"
"ole2nls"          = "native, builtin"
"ole2conv"         = "native, builtin"
"ole2prox"         = "native, builtin"
"ole2thk"          = "native, builtin"
"storage"          = "native, builtin"
"olepro32"         = "native, builtin"
"rpcrt4"           = "native, builtin"
"oleaut32"         = "native, builtin"
"msvcrt"           = "native, builtin"
"wininet"          = "native, builtin"
"setupapi"         = "native, builtin"
"devenum"          = "native, builtin"
"quartz"           = "native, builtin"
"urlmon"           = "native"
"shdocvw"          = "native, builtin"
"jscript"          = "native, builtin"
"wintrust"         = "native, builtin"
"shlwapi"          = "native, builtin"
"secur32"          = "native, builtin"
"crypt32"          = "native, builtin"
"ddraw"            = "native, builtin"
"*user.exe"        = "native,builtin"
"*"                = "builtin, native"

[AppDefaults\\rundll32.exe\\DllOverrides]
"ddraw"            = "builtin"

[AppDefaults\\ohotfix.exe\\DllOverrides]
"ole32"             = "builtin"
"ole2"              = "builtin"
"compobj"           = "builtin"
"storage"           = "builtin"
"olepro32"          = "builtin"
"ole2nls"           = "builtin"
"ole2conv"          = "builtin"
"ole2prox"          = "builtin"
"ole2thk"           = "builtin"

[AppDefaults\\nlnotes.exe\\DllOverrides]
"msvcrt"           = "builtin, native"
"commctrl"         = "builtin, native"
"comctl32"         = "builtin, native"
"commdlg"          = "builtin, native"
"comdlg32"         = "builtin, native"


i think that the config file is not enought. you need serval registry keys to get ssl to work. but it is to big to post:
Code:
thinkpad .wine # ls -lhn *.reg
-rw-r--r--    1 1004     100          2.6M Apr  9 11:55 system.reg
-rw-r--r--    1 1004     100           41K Apr  9 11:58 user.reg
-rw-r--r--    1 1004     100           985 Apr  9 11:54 userdef.reg
thinkpad .wine #



for the setup over the weekend:
what kind of applications are needed? normaly i install ie6, serval updates from ms, serval ms office readers, acrobat 5.1 reader, ms visual c++ run times, ms vb 6 sp5 run times, microsoft help 1.4, dcom 98, all the ms core fonts, ms installer, ms jscript, etc....

do you want me to document all that or would be this to much for an how-to? or is an normal wine with ie6 enought?


cheers

SteveB
Back to top
View user's profile Send private message
theboywho
Tux's lil' helper
Tux's lil' helper


Joined: 16 Jan 2004
Posts: 110
Location: Birmingham, United Kingdom

PostPosted: Fri Apr 09, 2004 7:20 pm    Post subject: Reply with quote

Thanks for that :-) im gonna compare them with my configs. :-)

If you are prepared to document everything you normally do - that would be great - we could create seprate sections for each app.

Any chance you could email ur .reg files - i can compare them to mine and then see which keys are actully needed for SSL to work.

thanks :-D
Back to top
View user's profile Send private message
steveb
Advocate
Advocate


Joined: 18 Sep 2002
Posts: 4564

PostPosted: Fri Apr 09, 2004 8:03 pm    Post subject: Reply with quote

theboywho wrote:
Thanks for that :-) im gonna compare them with my configs. :-)

If you are prepared to document everything you normally do - that would be great - we could create seprate sections for each app.

Any chance you could email ur .reg files - i can compare them to mine and then see which keys are actully needed for SSL to work.

thanks :-D


check your mail ;)
Back to top
View user's profile Send private message
theboywho
Tux's lil' helper
Tux's lil' helper


Joined: 16 Jan 2004
Posts: 110
Location: Birmingham, United Kingdom

PostPosted: Fri Apr 09, 2004 11:15 pm    Post subject: Internet Explorer (IE) on linux with WINE - SSL now works!! Reply with quote

Thanks for the mail steveb

Right, now here are the results of my research

it would appear that it is steveb's dlloverrides for IEXPLORE that make SSL and WindowsUpdate work.

I used the system.reg file from franks corner, and the IEXPLORE dll overrides from steveb's configs above.

I install IE following the simpler version of method 2 from the start of this topic :-)

Now that we can SSL in IE, IE just became a much more helpful in my work :)

So thank you very much steve :-D

EDIT:

ok so ive just tested it from scratch and it works brilliantly.
Back to top
View user's profile Send private message
steveb
Advocate
Advocate


Joined: 18 Sep 2002
Posts: 4564

PostPosted: Sat Apr 10, 2004 12:26 am    Post subject: Re: Internet Explorer (IE) on linux with WINE - SSL now work Reply with quote

theboywho wrote:
Thanks for the mail steveb

Right, now here are the results of my research

it would appear that it is steveb's dlloverrides for IEXPLORE that make SSL and WindowsUpdate work.

I used the system.reg file from franks corner, and the IEXPLORE dll overrides from steveb's configs above.

I install IE following the simpler version of method 2 from the start of this topic :-)

Now that we can SSL in IE, IE just became a much more helpful in my work :)

So thank you very much steve :-D

EDIT:

ok so ive just tested it from scratch and it works brilliantly.


cool ;) i am happy that it works for you now.
so no real need anymore to write an how-to?

one thing is still not working:
if you have an https connection and then go to the properties of the page and then select the view button to see the certificate, ie6 will crash.
i will try to fix that problem as well (WINEDEBUG is my friend).


cheers

SteveB
Back to top
View user's profile Send private message
theboywho
Tux's lil' helper
Tux's lil' helper


Joined: 16 Jan 2004
Posts: 110
Location: Birmingham, United Kingdom

PostPosted: Sat Apr 10, 2004 12:29 am    Post subject: Reply with quote

i was goin to write up what i had done + the bits i got from you - but i will do that on sunday - now i need sleep :-)
Back to top
View user's profile Send private message
steveb
Advocate
Advocate


Joined: 18 Sep 2002
Posts: 4564

PostPosted: Sat Apr 10, 2004 12:46 am    Post subject: Reply with quote

theboywho wrote:
i was goin to write up what i had done + the bits i got from you - but i will do that on sunday - now i need sleep :-)


go! go sleeping my friend!

i have 02:45 over here (i think uk is one hour behind switzerland?)

cheers

SteveB
Back to top
View user's profile Send private message
steveb
Advocate
Advocate


Joined: 18 Sep 2002
Posts: 4564

PostPosted: Sat Apr 10, 2004 1:08 am    Post subject: Reply with quote

phuuu... the view certificate problem is probably an error in wine:
Code:
err:ntdll:RtlpWaitForCriticalSection section 0x40234fe0 "loader.c: loader_section" wait timed out in thread 000e, blocked by 0010, retrying (60 sec)
/usr/bin/wine: line 56:  3664 Killed                  "$RUNWINE" "$@"


if i press the button, then wine (well.... ie6) is sucking on my cpu and memory, until wine get's killed.

cheers

SteveB
Back to top
View user's profile Send private message
BlackB1rd
Tux's lil' helper
Tux's lil' helper


Joined: 13 Aug 2003
Posts: 131
Location: /Europe/Netherlands/Haarlem

PostPosted: Sat Apr 10, 2004 1:35 pm    Post subject: Reply with quote

Followed all steps and iexplore loads up... But I get an error message which says "Can not run Unicode version of ATL.DLL on Windows 95. Please install the correct version."

Searched @ dll-files.com for atl.dll but didn't find it. What could be my problem?
Back to top
View user's profile Send private message
steveb
Advocate
Advocate


Joined: 18 Sep 2002
Posts: 4564

PostPosted: Sat Apr 10, 2004 2:32 pm    Post subject: Reply with quote

on my system i have the atl.dll installed. don't ask me wich windows application installed it (i wich i had qpkg for windows ;))? i think they are part of vcredist.exe, but i am not 100% sure. search in google for vcredist.exe and install it.

in system.reg i have as well the following entries:
Code:
[Software\\Classes\\CLSID\\{44EC053A-400F-11D0-9DCD-00A0C90391D3}] 1081159082
@="Registrar Class"

[Software\\Classes\\CLSID\\{44EC053A-400F-11D0-9DCD-00A0C90391D3}\\InprocServer32] 1081159082
@="C:\\Windows\\System\\ATL.DLL"
"ThreadingModel"="Both"

[Software\\Classes\\CLSID\\{44EC053A-400F-11D0-9DCD-00A0C90391D3}\\ProgID] 1081159082
@="ATL.Registrar"

[Software\\Classes\\TypeLib\\{44EC0535-400F-11D0-9DCD-00A0C90391D3}\\1.0] 1080967404
@="ATL 2.0 Type Library"

[Software\\Classes\\TypeLib\\{44EC0535-400F-11D0-9DCD-00A0C90391D3}\\1.0\\0\\win32] 1081159063
@="C:\\Windows\\System\\ATL.DLL"

[Software\\Classes\\TypeLib\\{44EC0535-400F-11D0-9DCD-00A0C90391D3}\\1.0\\FLAGS] 1080967404
@="0"

[Software\\Classes\\TypeLib\\{44EC0535-400F-11D0-9DCD-00A0C90391D3}\\1.0\\HELPDIR] 1080967404
@="C:\\Windows\\System\\"


if you have an email, then i could send you the atl.dll.

cheers

SteveB
Back to top
View user's profile Send private message
theboywho
Tux's lil' helper
Tux's lil' helper


Joined: 16 Jan 2004
Posts: 110
Location: Birmingham, United Kingdom

PostPosted: Sat Apr 10, 2004 2:51 pm    Post subject: Reply with quote

I have that dll too - it was installed by either DCOM98 or IE
Back to top
View user's profile Send private message
nalin
Apprentice
Apprentice


Joined: 27 Sep 2002
Posts: 172
Location: Long Beach

PostPosted: Sun Apr 11, 2004 6:37 am    Post subject: Reply with quote

I have a problem:
manually entering some (but not all) domains seems to timeout rather then redirect to the index page - for instance:
[http://]www.google.com[/[index.html]] will timeout
www.google.com/search[?copy_and_pasted_url] will get the right page

Clicking thus far always gets the page - its quite uncanny

For the record all the google strings respond with a 200 OK via wget (search queries to google with wget send a 403 but only because of the user agent, if you use -U to set it non-default you get a 200 on them)

Have tried other index.html sites and this seems not to be an issue - anyone experience similar or have a suggestion to remedy this?
Back to top
View user's profile Send private message
steveb
Advocate
Advocate


Joined: 18 Sep 2002
Posts: 4564

PostPosted: Sun Apr 11, 2004 12:38 pm    Post subject: Reply with quote

nalin wrote:
I have a problem:
manually entering some (but not all) domains seems to timeout rather then redirect to the index page - for instance:
http://www.google.com/index.html will timeout
www.google.com/search[?copy_and_pasted_url] will get the right page

Clicking thus far always gets the page - its quite uncanny

For the record all the google strings respond with a 200 OK via wget (search queries to google with wget send a 403 but only because of the user agent, if you use -U to set it non-default you get a 200 on them)

Have tried other index.html sites and this seems not to be an issue - anyone experience similar or have a suggestion to remedy this?


i don't have this problem.

cheers

SteveB
Back to top
View user's profile Send private message
BlackB1rd
Tux's lil' helper
Tux's lil' helper


Joined: 13 Aug 2003
Posts: 131
Location: /Europe/Netherlands/Haarlem

PostPosted: Sun Apr 11, 2004 1:02 pm    Post subject: Reply with quote

Weird, tnx steveb for the dll btw, but I still get the same error message. So it's not like it can't be found, but he (thinks?) it's not the right version.
Back to top
View user's profile Send private message
steveb
Advocate
Advocate


Joined: 18 Sep 2002
Posts: 4564

PostPosted: Sun Apr 11, 2004 1:29 pm    Post subject: Reply with quote

it is your setup! probably your registry or an missing microsoft component! did you install the visual c++ runtime and the dcom95 or dcom98 package?

cheers

SteveB
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Documentation, Tips & Tricks All times are GMT
Goto page Previous  1, 2, 3, 4 ... 10, 11, 12  Next
Page 3 of 12

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum