http://bugs.winehq.org/show_bug.cgi?id=13248
Summary: Incomedia Website X5: crashes when install Product: Wine Version: 1.0-rc1 Platform: PC URL: http://www.websitex5.com/en/index.html OS/Version: Linux Status: UNCONFIRMED Severity: enhancement Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: antonino@arcidiaco.com
I have an original copy of this program, but it doesn't install the error is:
C:\windows\temp\WZSE0.TMP\CPWCTL32.OCX
-???- Error: 3
after that, crashes... I attach the terminal log... hi all
http://bugs.winehq.org/show_bug.cgi?id=13248
Antonino Arcidiaco antonino@arcidiaco.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal
http://bugs.winehq.org/show_bug.cgi?id=13248
Antonino Arcidiaco antonino@arcidiaco.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Version|1.0-rc1 |1.0-rc2
http://bugs.winehq.org/show_bug.cgi?id=13248
Dmitry Timoshkov dmitry@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Version|1.0-rc2 |1.0-rc1
--- Comment #1 from Dmitry Timoshkov dmitry@codeweavers.com 2008-05-25 05:06:42 --- Please don't change an originally reported version.
http://bugs.winehq.org/show_bug.cgi?id=13248
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |xerox_xerox2000@yahoo.co.uk Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Keywords| |download, Installer
--- Comment #2 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-05-25 05:54:21 ---
C:\windows\temp\WZSE0.TMP\CPWCTL32.OCX
-???- Error: 3
That is because the app apparently needs mfc40.dll (and lateron mfc42) Antonio, try following command: 'wget http://kegel.com/wine/winetricks && sh winetricks mfc40 mfc42' then report back please
The demo runs into another bug: a bunch of error messageboxes pops up that files already exist. Does the retail version behave the same? I suspect a bug in kernel32, as it appeared in the debuglog just before the trouble, and the hack below made the installer finish just fine. I can at least confirm the installer has problems
diff --git a/dlls/kernel32/path.c b/dlls/kernel32/path.c index aad260f..95c389c 100644 --- a/dlls/kernel32/path.c +++ b/dlls/kernel32/path.c @@ -1060,7 +1060,7 @@ BOOL WINAPI MoveFileWithProgressW( LPCWSTR source, LPCWSTR dest, NtClose( dest_handle ); if (!(flag & MOVEFILE_REPLACE_EXISTING)) { - SetLastError( ERROR_ALREADY_EXISTS ); + SetLastError(0);// ERROR_ALREADY_EXISTS ); RtlFreeUnicodeString( &nt_name ); goto error; }
http://bugs.winehq.org/show_bug.cgi?id=13248
--- Comment #3 from Antonino Arcidiaco antonino@arcidiaco.com 2008-05-25 14:54:17 --- (In reply to comment #2)
C:\windows\temp\WZSE0.TMP\CPWCTL32.OCX
-???- Error: 3
That is because the app apparently needs mfc40.dll (and lateron mfc42) Antonio, try following command: 'wget http://kegel.com/wine/winetricks && sh winetricks mfc40 mfc42' then report back please
The demo runs into another bug: a bunch of error messageboxes pops up that files already exist. Does the retail version behave the same? I suspect a bug in kernel32, as it appeared in the debuglog just before the trouble, and the hack below made the installer finish just fine. I can at least confirm the installer has problems
diff --git a/dlls/kernel32/path.c b/dlls/kernel32/path.c index aad260f..95c389c 100644 --- a/dlls/kernel32/path.c +++ b/dlls/kernel32/path.c @@ -1060,7 +1060,7 @@ BOOL WINAPI MoveFileWithProgressW( LPCWSTR source, LPCWSTR dest, NtClose( dest_handle ); if (!(flag & MOVEFILE_REPLACE_EXISTING)) {
SetLastError( ERROR_ALREADY_EXISTS );
SetLastError(0);// ERROR_ALREADY_EXISTS ); RtlFreeUnicodeString( &nt_name ); goto error; }
Thanks Louis! With your trick now the Incomedia installation work fine, I've the retail software and confirm the error messageboxes pops up, but this is the least problem, fact the principal is that when the program is running is impossible to select the main window, then the mouse click on the window doesn't have output...
think i should set this bug as fixed and open a new?
http://bugs.winehq.org/show_bug.cgi?id=13248
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|Incomedia Website X5: |Multiple Error MessageBoxes |crashes when install |in Incomedia Website X5 | |installer
--- Comment #4 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-05-25 16:25:46 ---
think i should set this bug as fixed and open a new?
This one isn't fixed. There's still the bug of the several error messageboxes.
The application itsself works as far as i can see rather nice with native (shdocvw and shlwapi). Than you can click all menu's/buttons and it looks to me as if it functions rather well (but i'm not familiar with this app). So you could open a bug for it yeah, describe the problem, and set component to shdocvw
http://bugs.winehq.org/show_bug.cgi?id=13248
--- Comment #5 from Antonino Arcidiaco antonino@arcidiaco.com 2008-05-26 07:37:41 --- (In reply to comment #4)
think i should set this bug as fixed and open a new?
This one isn't fixed. There's still the bug of the several error messageboxes.
The application itsself works as far as i can see rather nice with native (shdocvw and shlwapi). Than you can click all menu's/buttons and it looks to me as if it functions rather well (but i'm not familiar with this app). So you could open a bug for it yeah, describe the problem, and set component to shdocvw
this is the new bug http://bugs.winehq.org/show_bug.cgi?id=13443 can you also confirm that?
thank you for your willingness
P.S. Why the libraries that made me add aren't by default in wine?
http://bugs.winehq.org/show_bug.cgi?id=13248
--- Comment #6 from Austin English austinenglish@gmail.com 2008-05-26 10:29:51 --- (In reply to comment #5)
P.S. Why the libraries that made me add aren't by default in wine?
They are redistributable dlls provided by the application. In the future, wine may implement them itself, but for now, wine's efforts are better spent on other bugs/features.
http://bugs.winehq.org/show_bug.cgi?id=13248
--- Comment #7 from Austin English austinenglish@gmail.com 2008-11-27 12:47:32 --- Still present in 1.1.9.
http://bugs.winehq.org/show_bug.cgi?id=13248
--- Comment #8 from Austin English austinenglish@gmail.com 2010-06-13 21:57:47 --- Most definitely present in 1.2-rc3. There's around 20 of these!
http://bugs.winehq.org/show_bug.cgi?id=13248
Frédéric Delanoy frederic.delanoy@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |frederic.delanoy@gmail.com Resolution| |FIXED
--- Comment #9 from Frédéric Delanoy frederic.delanoy@gmail.com 2012-02-27 09:54:21 CST --- Does not occur in 1.4-rc5 (WebSite X5 Evolution 9 demo). Marking fixed.
http://bugs.winehq.org/show_bug.cgi?id=13248
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #10 from Alexandre Julliard julliard@winehq.org 2012-03-02 13:01:38 CST --- Closing bugs fixed in 1.4-rc6.