http://bugs.winehq.org/show_bug.cgi?id=20059
Summary: Office 2007 SP1/SP2 looks for *.cab in
C:\Windows\Installer\ instead of C:\MSOCache\
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bozkar(a)gmail.com
When trying to install SP1 or SP2 for microsoft office in every way - as msp
copied to updates/ folder in the office installation directory, or by executing
wine office2007sp1-kb936982-fullfile-pl-pl.exe
or by msiexec /p something.msp the same error occurs:
err:msi:source_matches_volume Failed to get volume information
err:msi:ready_media Cabinet not found: L"C:\\windows\\Installer\\HomeSrWW.CAB"
err:msi:ACTION_MsiPublishAssemblies Failed to ready media
err:msi:ITERATE_Actions Execution halted, action L"InstallExecute" returned
1603
After copying cabs to drive_c/windows/installer service pack is still not
working correctly but in in about window in apps i can see the SP1 version of
an app, MSO version is still SP0
Hope this could help to make some progress in order to make SP for MS Office
work :-)
I will provide any kind of debug log on request
Current info:
boskar@pauper:~/wine/office$ wine --version
wine-1.1.29
Debian squeeze, deb http://www.lamaresh.net/apt lenny main source for wine
WINEPREFIX=/home/boskar/.wine-office (clean WINEPREFIX).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18958
Summary: Adobe Reader 9 has a divide by zero error during
install
Product: Wine
Version: 1.1.23
Platform: PC
URL: ftp://ftp.adobe.com/pub/adobe/reader/win/9.x/9.0/enu/A
dbeRdr90_en_US.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer, regression
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Mid install, reports a crash (unhandled divide by zero).
+msi,+msidb attached. Running regression test now.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18834
Summary: Repeat installation of vcredist_x86.exe (vcrun2005
associated DLLs) deletes them permanently from the
insxs folder
Product: Wine
Version: 1.1.23
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pmacd(a)canada.com
If winetricks is used to install vcrun2005 or vcrun2005sp1 or if a windows
program installs the dlls and associated files by running vcredist_x86.exe, the
first time it is run, the dlls, manifest, policies and associated folders are
installed.
If the packages are installed again, the files and folders are permannetly
removed and cannot be recreated by running the installation again.
Reinstallation generates a number of msi errors.
This is a problem if installing several windows applications when more than one
of the applications run vcredist_x86.exe.
>From logging the terminal output, this appears to be a fault in the msi module
not handling removal and repair of earlier installations.
fixme:msi:msi_unimplemented_action_stub RemoveExistingProducts - > 1 ignored
L"Upgrade" table values
fixme:msi:msi_unimplemented_action_stub MsiUnpublisheAssemblies - > 10 ignored
L"MsiAssembly" table values
since the change seems permanent, this appears to be related to entries to the
.reg files that are not reset/removed properly.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18246
Summary: Adobe Updater: crashes when installing updates
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dan_bwv1987(a)hotmail.com
Created an attachment (id=20758)
--> (http://bugs.winehq.org/attachment.cgi?id=20758)
crash log when run from a terminal
In updating Adobe Acrobat Pro 9 by the option Help/Check for Updates, which in
turn calls the program Adobe_Updater.exe, and after downloading updates, it
crashes in trying to install them.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17908
Summary: TCSCP fails to install
Product: Wine
Version: 1.1.18
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)mkarcher.dialup.fu-berlin.de
CC: truiken(a)gmail.com
The TCSCP installer fails to accept valid license numbers. This has been
tracked down to be caused by
commit 8321276cd34486bc6bf1e07c0e99c73423288854
Author: James Hawkins <truiken(a)gmail.com>
Date: Wed Oct 18 11:25:14 2006 -0700
msi: Run SetProperty events before all other events no matter what the
order is.
The reason is, that there is an action table for the next button of the dialog
where you enter user name / company name / license code along these lines:
"UserInfoDlg" "Next" "[numtocheck]" "[keyentered]" "FEATURE_A = 1 OR "FEATURE_B
= 1" 1
"UserInfoDlg" "Next" "[checkpassed]" "0" "1" 15
"UserInfoDlg" "Next" "DoAction" "CheckLicenseString" "FEATURE_A = 1 OR
FEATURE_B = 1" 20
"UserInfoDlg" "Next" "[donotinstall]" "1" "NOT checkpassed" 100
Because that patch executes the PropertySet Actions before all other actions,
donotinstall always gets set to 1, even if the entered license number is
correct (in that case, the custom action "CheckLicenseSting" will set
checkpassed to one, if the number in numtocheck is valid). Having donotinstall
set to one makes the installer re-request a valid license number. Reverting the
patch (and thus executing the custom action at the right point in time fixes
the behaviour. The correct fix for Americas Army that needed this out-of-order
execution thus must be different.
The installer has been verified to work fine in Windows XP.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17665
Summary: Studio Tax fails to install
Product: Wine
Version: 1.1.16
Platform: PC
URL: http://www.studiotax.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: interweiss(a)yahoo.ca
Created an attachment (id=19853)
--> (http://bugs.winehq.org/attachment.cgi?id=19853)
Studio Tax error log
I just tried installing Studio Tax so that I could do my taxes, but half way
through the installation Studio Tax crashed. The only dependency that it needed
was DotNet 2.0, which I installed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15279
Summary: Saxo Trader installer crashes into unimplemented msi
functoims
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://mitsweb.iitech.dk/SaxoBank/SaxoTrader2/Simul/en/S
axoTrader2_WEBDeploy.exe
OS/Version: other
Status: NEW
Severity: enhancement
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Right, this bug is probably easy to solve. Dan asked to open a new bug for this
Saxo Trader crashes into unimplemented msi.MsiSetExternalUIRecord and
msi.MsiDetermineApplicablePatchesW. It's enough to let them return E_NOTIMPL,
then the installer is already happy
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15210
Summary: MIDI-OX installer crashes
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.midiox.com/
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Hi, this crash was reported by a user who sent in this new app into appdb.
>From the debuglog , i think it's an msi-bug , but i'm not 100 % sure. I'll
attach a +msi,+msidb log
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15066
Summary: FedExShipManager installer crashes in msi
Product: Wine
Version: CVS/GIT
Platform: PC
URL: ftp://ftp.fedex.com/pub/us/software/FedExShipManager_235
6.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nodisgod(a)yahoo.com
While testing bug 14243 with current Git (wine-1.1.3-295-g7c0d28b), I found
that pressing Next at the initial welcome screen of the installer resulted in a
crash. msi traces are attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14037
Summary: worldwide telescope installer crashes in
X11DRV_GetBitmapBits
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://worldwidetelescope.org/experienceIt/ExperienceIt.
aspx
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
And it doesn't give a stack traceback. Here's the log:
0020:Call comctl32.ImageList_ReplaceIcon(00138028,ffffffff,00001106)
ret=7eb7f870
0020:Call user32.CopyImage(00001106,00000001,00000010,00000010,00004000)
ret=7e7dcccd
trace:x11drv:X11DRV_CreateBitmap (0x274) 16x16 32 bpp
trace:x11drv:X11DRV_CreateBitmap (0x278) 16x16 1 bpp
trace:x11drv:X11DRV_GetBitmapBits (bmp=0x278, buffer=0x382e34, count=0x20)
wine: Unhandled page fault on read access to 0x00000008 at address 0x7ebf4da5
(thread 0019), starting debugger...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13590
Summary: MS Office 2003: Cannot install Service Pack
Product: Wine
Version: 1.0-rc3
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dsent(a)mail.ru
Created an attachment (id=13551)
--> (http://bugs.winehq.org/attachment.cgi?id=13551)
error output
Installation of service pack 3 (and previous service packs too) resulting in
"The update cannot be applied" message. Console output is attached.
Service Pack 3 is available for download here:
http://www.microsoft.com/downloads/details.aspx?FamilyID=E25B7049-3E13-433B…
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13536
Summary: MDAC 2.8 installer is launched with invalid command line
syntax in ThinkWave Educator installer
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://download.thinkwave.org/twe28132.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nodisgod(a)yahoo.com
Created an attachment (id=13470)
--> (http://bugs.winehq.org/attachment.cgi?id=13470)
ThinkWave output
With Wine version wine-1.0-rc2-134-g4c928d3, during installation, the MDAC 2.8
installer is run, but the application complains of "command line option syntax
error". Relevant lines are probably:
trace:process:CreateProcessW app (null) cmdline
L"C:\\windows\\temp\\msi3040.tmp /q /c:\"\"setup.exe /qn1\"\""
trace:process:find_exe_file looking for L"C:\\windows\\temp\\msi3040.tmp"
trace:process:find_exe_file Trying native exe L"C:\\windows\\temp\\msi3040.tmp"
trace:process:CreateProcessW starting L"C:\\windows\\temp\\msi3040.tmp" as
Win32 binary (0x1000000-0x154e000)
Output is attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13285
Summary: WriteIniValues does not create
c:/windows/DieVölkerGold.ini
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
Hi,
The game "die Völker, Gold Edition" does not install correctly. The bug is
that the file c:\windows\DieVölkerGold.ini is not created during installation.
The wise installer / MSI report no error, yet running the game says it was not
installed correctly:
Call KERNEL32.GetPrivateProfileStringA(004bd5c8 "SearchPaths",004bd5d4 "HDD
SearchPath",004c0ca8 "",004c2698,00000104,004c279c
"C:\\windows\\DieV\xf6lkerGol
d.ini") ret=00493885
Running msiexec by hand in order to produce a log file shows, among other log
messages:
$ msiexec '/l*' foo.log /i d:\\setup\\setup.msi
[...]
Action 22:57:22: WriteIniValues. Schreiben von INI-Dateiwerten
Datei: Version, Abschnitt: Info, Schlüssel: Version, Wert: v3.0
Datei: HDDSearchPath, Abschnitt: SearchPaths, Schlüssel: HDDSearchPath,
Wert: C:\Programme\Games\Voelker\
which seems to indicate that the correct calls were made to have the file
created.
I created the file by hand, using the keys & values from the log file:
[Info]
Version=" v3.0"
[SearchPaths]
HDDSearchPath="C:\\Programme\\Games\Voelker\\"
CDSearchPath="D:\\game"
UnInstallPath="msiexec /x {24ECFEDB-6CE0-48D0-8C34-EE4C5BC275BF}"
The error message then disappears. (It is replaced by another one saying that
the Cinepak codec is not installed, but that's another bug).
Maybe the Umlaut in the file name causes trouble? -- I've seen other
applications (not yet tested again in 1.0rc1) produce ASCII windows/*.ini files
successfully.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13192
Summary: AutoCAD 2008 Trial fails to install
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.autodesk.com
OS/Version: Linux
Status: UNCONFIRMED
Keywords: download, regression
Severity: enhancement
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
This is a regression. A few weeks ago the installation went fine
Now it says: ERROR_FUNCTION_FAILED
>From the app itsself the following stuff is printed in the console:
Microsoft (R) CLR Native Image Generator - Version 2.0.50727.42
Copyright (C) Microsoft Corporation 1998-2002. All rights reserved.
Installing assembly C:\Program Files\AutoCAD LT 2008\AcLayer.dll
Exception from HRESULT: 0x80070424
I'll attach the log
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13121
Summary: Sipru Installation Error
Product: Wine
Version: 0.9.59.
Platform: PC-x86-64
URL: http://www.sipru.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kemal.yaylali(a)gmail.com
Installer doesn't starts. After that I installed it to a Windows machine &
tried to run it directly from the installation folder...
Abort Message: "Winhlp.32.exe"
& it suddenly crashes
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12988
Summary: Microsoft Office Communicator 2005 Trial installer does
nothing when you click 'next'
Product: Wine
Version: 0.9.61.
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?familyid
=9253DBEA-CC4F-4934-B35D-E2C90B6406DB
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user complained in
http://winehq.org/pipermail/wine-users/2008-May/033647.html
that he couldn't get Microsoft Office Communicator 2005 working,
so I tried it. Turns out you can download a trial from
http://www.microsoft.com/downloads/details.aspx?familyid=9253DBEA-CC4F-4934…
sha1sum is d617c41f3b252b3689ff22623dd1c3f3da1282fb OfficeCommunicatorEVAL.EXE
Oddly, when you run that .exe in wine, it says "Extracted" but doesn't
go on to run the installer. Maybe this is a bug, but I skipped
over it by just using cabextract to unpack it, and ran the .msi with start.
The .msi puts up the usual dialog boxes, but when you try to
click on 'Next' in the installation location dialog, it
ignores you.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12813
Summary: XMLSpy 2007 refuses to install
Product: Wine
Version: 0.9.60
Platform: PC
URL: http://www.brothersoft.com/altova-xmlspy-enterprise-
edition-2007-60072.html
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=12495)
--> (http://bugs.winehq.org/attachment.cgi?id=12495)
+msi,+msidb log in git, tailed to 500000, bzip2 -9'ed
While checking on bug 9053, it appears XMLSpy will not install. Probably a
regression, but I can't be sure, I'll try to check later.
err:msi:msi_view_get_row Invalid type!
Looks a bit suspicious, so setting to msi for now.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12624
Summary: Installer failes to register typelib
Product: Wine
Version: 0.9.59.
Platform: Other
URL: http://sparxsystems.com.au/bin/easetupWine.exe
OS/Version: other
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leslie_alistair(a)hotmail.com
While installing the trail version of Enterprise Architect I get the following
error.
err:msi:ITERATE_RegisterTypeLibraries Could not load file! L"C:\\Program
Files\\Sparx Systems\\EA Trial\\EA.tlb"
Log is attached with +msi.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12249
Summary: Ultraedit v14.00a builtin MSI doesn't work.
Product: Wine
Version: 0.9.58.
Platform: PC
URL: http://www.ultraedit.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tchatzi2000(a)yahoo.com
After reaching the point where files are supposed to be copied, it just loops
and starts the install wizard over.
Works just fine with native msi and msiexec DLLs.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12218
Summary: word viewer 2003 - required / difference columns do not
countain data
Product: Wine
Version: 0.9.58.
Platform: PC
URL: http://www.microsoft.com/downloads/details.aspx?FamilyId
=95E24C87-8732-48D5-8689-AB826E7B8FDF&displaylang=en
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
Created an attachment (id=11643)
--> (http://bugs.winehq.org/attachment.cgi?id=11643)
screenshot comparing windows and wine
In Word Viewer 2003, in the second dialog box, the required and difference
columns do not contain any data. See screenshot.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12203
Summary: Windows Live Messenger 8.1.0178 fails to install
Product: Wine
Version: 0.9.58.
Platform: PC
URL: http://www.microsoft.com/downloads/details.aspx?FamilyID
=d78f2ff1-79ea-4066-8ba0-ddbed94864fc&DisplayLang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Created an attachment (id=11612)
--> (http://bugs.winehq.org/attachment.cgi?id=11612)
Console output
The installer doesn't finish in wine 0.9.58. It just say Windows Live Messenger
has failed with error code '1603'.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11891
Summary: LANguard Network Installer fails with "Unable to install
InstallShield Scripting Runtime"
Product: Wine
Version: 0.9.57.
Platform: PC
URL: http://vipmeister.com/dl/lannetscan/lannetscan2.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nodisgod(a)yahoo.com
Created an attachment (id=11190)
--> (http://bugs.winehq.org/attachment.cgi?id=11190)
+msi trace output
When launching the installer executable inside the ZIP archive, the
InstallShield installer appears to be starting, but eventually bails out with a
dialog box that says "1607: Unable to install InstallShield Scripting Runtime".
If the InstallShield runtime from
http://support.installshield.com/kb/files/Q108158/IsScript7.zip is installed,
the installer when started proceeds past this point normally. Based on Wine
error message:
err:msi:ITERATE_Actions Execution halted, action L"SetARPReadme" returned 87
I am concluding that this is msi related. Relevant outputs are attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11258
Summary: (de)select all does not work in Visere installer
Product: Wine
Version: 0.9.53.
Platform: PC
URL: http://www.dmmd.net/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
In the Visere installer from bug 10903, I did a custom install.
On the "file associations" page, the select all / deselect all buttons do not
work, though you can still click the checkboxes one by one.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11014
Summary: Siemens ProCenter MSI installer fails
Product: Wine
Version: 0.9.52.
Platform: PC
URL: http://pod.laterooms.com/procenter.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gdh(a)acentral.co.uk
Created an attachment (id=10000)
--> (http://bugs.winehq.org/attachment.cgi?id=10000)
console install log
.ZIP is 166M - mostly PDFs :/
Console output complains that it cannot find Disk1.cab, however no such file is
part of the setup files. Installation on true Windows PCs runs flawlessly.
Logging this bug as directed by http://wiki.winehq.org/NativeMsi "report any
failure as a bug."
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10904
Summary: While installing Photoshop CS2 path for Adobe bridge
shared DLLs is not added to PATH
Product: Wine
Version: 0.9.51.
Platform: PC-x86-64
OS/Version: Linux
Status: NEW
Keywords: Installer
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmitry(a)codeweavers.com
While installing Photoshop CS2 path for Adobe bridge shared DLLs is not added
to PATH, as a result I get:
[dmitry@ubuntu:~]$ cd /home/dmitry/.wine/drive_c/Program\ Files/Adobe/Adobe\
Bridge/
[dmitry@ubuntu:Adobe Bridge]$ pwd
/home/dmitry/.wine/drive_c/Program Files/Adobe/Adobe Bridge
[dmitry@ubuntu:Adobe Bridge]$ ~/wine/wine Bridge.exe
err:module:import_dll Library libagluc28.dll (which is needed by L"C:\\Program
Files\\Adobe\\Adobe Bridge\\Bridge.exe") not found
err:module:import_dll Library libagli18n28.dll (which is needed by
L"C:\\Program Files\\Adobe\\Adobe Bridge\\Bridge.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\Adobe\\Adobe Bridge\\Bridge.exe" failed, status c0000135
the DLL not found above do exist, and are installed in
C:\Program Files\Common Files\Adobe\AGL
After installation of Photoshop CS2 in XP "C:\Program Files\Common
Files\Adobe\AGL" can be found in "PATH" variable under
HKLM,System\\CurrentControlSet\\Control\\Session Manager\\Environment
while in Wine Adobe\AGL is not added to "PATH" at all.
This looks like an MSI bug, since PS CS2 installer is MSI based.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10507
Summary: Regression in Photoshop CS2 trial install
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Keywords: download, Installer, regression
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This is like bug 10464, but was not fixed by today's git.
Photoshop CS2 tryout installer aborts because it can't find Data1.cab,
even though it's in SourceDir:
trace:msi:MSI_GetPropertyW returning L"Z:\\home\\dank\\installers\\Photoshop
CS2\\Adobe(R) Photoshop(R) CS2\\" for property L"SourceDir"
trace:file:GetFileAttributesW L"Z:\\home\\dank\\installers\\Photoshop
CS2\\Adobe(R) Photoshop(R) CS2\\Data1.cab"
trace:file:RtlDosPathNameToNtPathName_U
(L"Z:\\home\\dank\\installers\\Photoshop CS2\\Adobe(R) Photoshop(R)
CS2\\Data1.cab",0x34f650,(nil),(nil))
trace:file:RtlGetFullPathName_U (L"Z:\\home\\dank\\installers\\Photoshop
CS2\\Adobe(R) Photoshop(R) CS2\\Data1.cab" 520 0x34f3c4 (nil))
trace:file:wine_nt_to_unix_file_name
L"\\??\\Z:\\home\\dank\\installers\\Photoshop CS2\\Adobe(R) Photoshop(R)
CS2\\Data1.cab" ->
"/home/dank/.wine/dosdevices/z:/home/dank/installers/Photoshop CS2/Adobe(R)
Photoshop(R) CS2/Data1.cab"
trace:file:GetFileAttributesW L"Data1.cab"
trace:file:RtlDosPathNameToNtPathName_U (L"Data1.cab",0x34f650,(nil),(nil))
trace:file:RtlGetFullPathName_U (L"Data1.cab" 520 0x34f3c4 (nil))
warn:file:wine_nt_to_unix_file_name L"Data1.cab" not found in
/home/dank/.wine/dosdevices/c:/windows/temp/{236BB7C4-4419-42FD-0409-1E257A25E34D}
err:msi:ready_media Cabinet not found: L"Data1.cab"
err:msi:ACTION_InstallFiles Failed to ready media
err:msi:ITERATE_Actions Execution halted, action L"InstallFinalize" returned
1603
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10211
Summary: gmax installer does not allow changing of installation
directory, fails to install
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.turbosquid.com/gmax
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ead1234(a)hotmail.com
When trying to install gmax the application fails to continue stating it will
be installing over existing installation and prompts you to choose a new
location, choosing a new location through the browse dialog does not change the
install path, and does not allow you to continue the installation.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9946
Summary: Installation errors of Adobe Photoshop
Product: WineHQ Bugzilla
Version: unspecified
Platform: PC
OS/Version: Windows XP
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: misc-bugs
AssignedTo: jnewman(a)codeweavers.com
ReportedBy: algrant(a)comcast.net
Installation of Adobe Photoshop Album Starter Edition 3.2 fails due to errors
2503 and 2502
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9608
Summary: jdk fails to install
Product: Wine
Version: unspecified
Platform: Other
URL: http://sdlc-esd.sun.com/ESD33/JSCDL/jdk/6u2/jdk-6u2-
windows-i586-
p.exe?AuthParam=1189183281_3a97fdc39fd6ddd9771f1c85a1c6d
b5e&TUrl=an1npDpbKod7kSYrROhENTonIuA3W0D1Lc4nXz+pGFFrani
xdCdgxDTPbW4=&TicketId=dVB3PgNJNuo48w==&GroupName=SDLC&B
Host=sdlc2i.sun.com&FilePath=/ESD33/JSCDL/jdk/6u2/jdk-
6u2-windows-i586-p.exe&File=jdk-6u2-windows-i586-p.exe
OS/Version: other
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
The installer asks me to insert disk 1, but this is not an installer from a cd.
I guess there's a bug here. I'll provide more info later on (bit short in time
atm)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=16708
Summary: Final Fantasy XI Benchmark 2 and 3 install fail
Product: Wine
Version: 1.1.11
Platform: Other
URL: http://www.gamershell.com/download_3517.shtml
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Final Fantasy XI BenchMark 2 and 3 both fail to install,
putting up a dialog that says:
1608: Unable to create InstallDriver instance, Return code: -2147467262
I'll attach a log.
This is odd, because it's listed as working in the appdb,
http://appdb.winehq.org/objectManager.php?sClass=version&iId=4879
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13879
Summary: Gomez Peer blanks screen and does not redraw correctly
Product: Wine
Version: 1.0-rc4
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=applica
tion&iId=6636
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=13964)
--> (http://bugs.winehq.org/attachment.cgi?id=13964)
Here you can see the titlebar is missing.
When Gomez Peer is started or opened, the screen goes black and does not
refresh automatically.
The title bar of Gomez Peer also disappears second after opening the
application from the system tray.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17424
Summary: Feeding Frenzy unhandled exception when sound is enabled
Product: Wine
Version: 1.1.15
Platform: PC
URL: http://downloads.popcap.com/www/popcap_downloads/Feeding
FrenzySetup.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=19497)
--> (http://bugs.winehq.org/attachment.cgi?id=19497)
wine-1.1.15-58-g3fa05ae console output
Feeding Frenzy Deluxe crashes to an unhandled exception when starting a game
with sound.
Disabling sound in winecfg allows the game to be played.
Apparently a problem with winemp3.acm
Tested in latest git wine-1.1.15-58-g3fa05ae.
Bug has only become apparent following the resolution of bug 7385.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18729
Summary: Slingplayer 2.0 setup exits silently in Vista mode
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://download.slingmedia.com/player/pc/SP2/SlingPlay
er-2.0.3508-Setup-EMEA.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=21470)
--> (http://bugs.winehq.org/attachment.cgi?id=21470)
wine-1.1.22-219-gfbb43c4 +relay +seh +tid +loaddll
Slingplayer 2.0 is officially supported (by Sling Media) in Vista, but when the
setup is ran in Vista mode... there's nothing.
Works in XP mode.
This is a dotnet20 app, and dotnet20 is installed, but dotnet is not called
this early in the installation.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18735
Summary: Photoshop CS4 crash in unimplemented function
GdipGetVisibleClipBoundsI
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://trials.adobe.com/Applications/Photoshop/CS4/Win
/ADBEPHSPCS4_LS1.7z
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
After getting around Bug 17433, Photoshop CS4 crashes due to unimplemented
function gdiplus.dll.GdipGetVisibleClipBoundsI
Workaround is native gdiplus.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18736
Summary: Photoshop CS4 crash in unimplemented function
GdipDrawDriverString
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://trials.adobe.com/Applications/Photoshop/CS4/Win
/ADBEPHSPCS4_LS1.7z
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
After getting around Bug 17433 and Bug 18735, Photoshop CS4 crashes due to
unimplemented function gdiplus.dll.GdipDrawDriverString
Workaround is native gdiplus.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15755
Summary: Governor of Poker demo installer does not correctly
detect administrative privileges
Product: Wine
Version: 1.1.7
Platform: PC
URL: http://www.bigfishgames.com/download-
games/3630/governor-of-poker-game/download.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
With 1.1.7, when trying to launch the installer, a message box displays with
the message, "You don't have permission to install games from Big Fish Games on
this computer. Please login with an administrator account and try again". The
only emitted standard error messages are:
fixme:advapi:CheckTokenMembership ((nil) 0x12be08 0x33ee14) stub!
fixme:advapi:CheckTokenMembership ((nil) 0x12be08 0x33ee14) stub!
fixme:advapi:CheckTokenMembership ((nil) 0x12be08 0x33ee14) stub!
fixme:advapi:CheckTokenMembership ((nil) 0x12be08 0x33ee14) stub!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19682
Summary: Acrobat Reader 2 installer causes a page fault
Product: Wine
Version: 1.1.20
Platform: PC
URL: http://www.oldversion.com/download/acrobat2.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer, regression, win16
Severity: normal
Priority: P3
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
CC: dmitry(a)codeweavers.com
Created an attachment (id=22980)
--> (http://bugs.winehq.org/attachment.cgi?id=22980)
Wine 1.1.27 console output
Acrobat Reader 2 installer causes a page fault.
Backtrace:
=>0 0x7e9e58b3 create_cursor_image+0x96(ptr=0x3b5348)
[/home/test/wine-git/dlls/winex11.drv/mouse.c:489] in winex11 (0x00a2df38)
1 0x7e9e5d1f create_xcursor_cursor+0x8e(display=0x7c80dd40, ptr=0x3b5348)
[/home/test/wine-git/dlls/winex11.drv/mouse.c:597] in winex11 (0x00a2df68)
2 0x7e9e5e2d create_cursor+0x5b(display=0x7c80dd40, ptr=0x3b5348)
[/home/test/wine-git/dlls/winex11.drv/mouse.c:636] in winex11 (0x00a2e128)
3 0x7e9e7288 X11DRV_SetCursor+0x10e(lpCursor=0x3b5348)
[/home/test/wine-git/dlls/winex11.drv/mouse.c:964] in winex11 (0x00a2e178)
4 0x7ed4d090 SetCursor+0xbc(hCursor=0x1236)
[/home/test/wine-git/dlls/user32/cursoricon.c:1788] in user32 (0x00a2e1b8)
This is a regression.
54d7c8012d1d7369a56779955ced5a09e448a1cd is first bad commit
commit 54d7c8012d1d7369a56779955ced5a09e448a1cd
Author: Dmitry Timoshkov <dmitry(a)codeweavers.com>
Date: Wed Apr 29 15:17:35 2009 +0900
explorer: Initialize the Progman DDE interface when starting explorer.
:040000 040000 4a347655bb6f41b8b8377d8e3e3e25c1551d1730
05513d15b76a99fe5033c4422a82008667425088 M programs
Reverting this commit stops the crash.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19760
Summary: SiSoftware Sandra 2009.SP3c installer causes a page
fault
Product: Wine
Version: 1.1.27
Platform: PC
URL: http://download.cnet.com/SiSoftware-Sandra/3000-2086_4
-10556571.html
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=23136)
--> (http://bugs.winehq.org/attachment.cgi?id=23136)
wine-1.1.27-221-g4e1a4ec console output
SiSoftware Sandra 2009.SP3c installer causes a page fault apparently in rpcrt4.
The installation claims to complete despite this, but there is an unhandled
exception when trying to start Sandra, and I can not tell if this is the
reason.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19763
Summary: Everest Poker exits when attempting to connect to
server
Product: Wine
Version: 1.1.27
Platform: PC
URL: http://www.EverestPoker.org.uk
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
CC: jacek(a)codeweavers.com
Blocks: 13896
Created an attachment (id=23140)
--> (http://bugs.winehq.org/attachment.cgi?id=23140)
wine-1.1.27-221-g4e1a4ec console output
Everest Poker exits when attempting to connect to server.
What used to happen:
Everest would attempt to connect to server, fail (Bug 13896), and report unable
to connect.
What happens now:
Everest attempts to connect to the server, and exits silently.
This is a recent regression.
7151a3965b6b5420cac3f61c15a174b477b72fa4 is first bad commit
commit 7151a3965b6b5420cac3f61c15a174b477b72fa4
Author: Jacek Caban <jacek(a)codeweavers.com>
Date: Thu Aug 13 22:32:29 2009 +0200
mshtml: Parse post data in channelbsc_set_channel.
:040000 040000 c70ea4e91c98c0b7dccccac189098911a9baeb30
9ef43b8cea6126bd75c656ac76e0a897fc63be38 M dlls
Reverting the commit fixes the problem.
I'm not sure if this is a step forward or backwards.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17985
Summary: Slingplayer 2.0 US unhandled exception in
GdipCreateTexture2I
Product: Wine
Version: 1.1.18
Platform: PC
URL: http://downloads.slingmedia.com/go/slingbox-desktop-us
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=20352)
--> (http://bugs.winehq.org/attachment.cgi?id=20352)
wine-1.1.18-199-ga9c0c24 console output
Slingplayer 2.0 US causes an unhandled exception in gdiplus, apparently due to
GdipCreateTexture2I.
"winetricks dotnet20" is required before installation. The installation fails
at the end but installation is complete.
1 0x7e0f50b3 GdipCreateTexture2I+0xcb(image=0x278dc98, wrapmode=WrapModeTile,
x=350, y=0, width=57, height=200, texture=0x32dde8)
[/usr/src/wine-git/dlls/gdiplus/brush.c:706] in gdiplus (0x0032ddbc)
"<vpovirk> there's not a memcpy on that line according to source.winehq.org"
Native gdiplus doesn't help.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17777
Summary: WinPolis hangs when sound is enabled
Product: Wine
Version: 1.1.17
Platform: PC
URL: http://download.chip.eu/de/WinPolis-3.43_25640.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=20003)
--> (http://bugs.winehq.org/attachment.cgi?id=20003)
Wine 1.1.17 +mci
WinPolis will hang part way through the game if sound is enabled, and has to be
killed.
It can be played for a short while but both the music and sound effects need to
be disabled from within the game to stop the game hanging.
Console fills with output with +mci debug channel enabled.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20492
Summary: Adobe CS4 installer hangs in memory and has to be
killed
Product: Wine
Version: 1.1.31
Platform: PC
URL: http://trials.adobe.com/Applications/Photoshop/CS4/Win
/ADBEPHSPCS4_LS1.7z
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: jscript
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
CC: jacek(a)codeweavers.com
Blocks: 15638,18070
Created an attachment (id=24397)
--> (http://bugs.winehq.org/attachment.cgi?id=24397)
wine-1.1.32-119-g07c321b +jscript
The Adobe CS4 installer appears to do nothing, hangs in memory and has to be
killed.
This is a recent regression.
fbb763a53e92a38436acf5f542f213b85491f086 is first bad commit
commit fbb763a53e92a38436acf5f542f213b85491f086
Author: Jacek Caban <jacek(a)codeweavers.com>
Date: Mon Oct 19 20:42:03 2009 +0200
jscript: Use the value returned from constructor in 'new' expression if the
value if an object.
:040000 040000 5e66b60cce239d7e6b0f38fd64be3f47904e79bd
1586a99523eba0296aaebc0f65e5ff2f0dc240c5 M dlls
http://source.winehq.org/git/wine.git/?a=commit;h=fbb763a53e92a38436acf5f54…
Reverting this commit in latest git causes a page fault, but checking-out the
previous commit fixes the problem.
Probably affects CS3 products too, but I have none to test.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20978
Summary: Quicktime 7.1.6.200 installer fails
Product: Wine
Version: 1.1.34
Platform: PC
URL: http://wsidecar.apple.com/cgi-bin/nph-reg3rdpty2.pl/pr
oduct=13803&cat=59&platform=osx&method=sa/QuickTimeIns
taller.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer, regression
Severity: normal
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
CC: madewokherd(a)gmail.com
Created an attachment (id=25148)
--> (http://bugs.winehq.org/attachment.cgi?id=25148)
wine-1.1.34-194-g09db528 console output
The installer for Quicktime 7.1.6.200 fails very early.
err:msi:call_script Could not find CLSID for Windows Script
err:msidb:TABLE_fetch_stream fetching stream L"Binary.Scripts.vbs", error =
1627
err:msi:ITERATE_Actions Execution halted, action L"FindASUInstalled" returned
13
This is a recent regression.
371f6a4818ee3739282f29a3259f86357e4e47a0 is first bad commit
commit 371f6a4818ee3739282f29a3259f86357e4e47a0
Author: Vincent Povirk <vincent(a)codeweavers.com>
Date: Wed Nov 18 10:38:10 2009 -0600
ole32: Do not allow the same stream to be opened twice.
:040000 040000 4bb7c46b78b29446dc7065e9a91f457f97d3af1c
55fabf4e6e351ea471354e62d51e0a9a562f7bc0 M dlls
http://source.winehq.org/git/wine.git/?a=commitdiff;h=371f6a4818ee3739282f2…
Commit can not be reverted in latest git, but checking out the commit before
fixes the problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17144
Summary: Rise of Nations Unhandled Exception
Product: Wine
Version: 1.1.13
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=19005)
--> (http://bugs.winehq.org/attachment.cgi?id=19005)
Wine 1.1.13 console output WINEDEBUG=fixme-all,+seh
Rise of Nations exits when trying to run the game. Console shows an exception
error.
err:ole:CoGetClassObject class {c1f400a0-3f08-11d3-9f0b-006008039e37} not
registered
err:ole:CoGetClassObject no class object {c1f400a0-3f08-11d3-9f0b-006008039e37}
could be created for context 0x1
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x7d1a9045
Assuming an OLE problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18536
Summary: Slingplayer EU 1.5.1 exits silently
Product: Wine
Version: 1.1.21
Platform: PC
URL: http://download.slingmedia.com/player/pc/SlingPlayer-S
etup-EU-1.5.1.343.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=21197)
--> (http://bugs.winehq.org/attachment.cgi?id=21197)
wine-1.1.21-290-gd4e1d88 +qcap
Slingplayer EU 1.5.1 setup exits silently.
This is a recent regression. Result of bisect:
806ea86be2f2f1bbea09d39b242816624bef2b26 is first bad commit
commit 806ea86be2f2f1bbea09d39b242816624bef2b26
Author: Vitaliy Margolen <wine-patches(a)kievinfo.com>
Date: Sun May 17 16:02:22 2009 -0600
dxdiagn: DirectShowFilters should go under numbered sub-containers.
:040000 040000 36434239e0ac616c3ca1fd4c3f800f1fb6f25ed6
29e5a4952fcd3295bee2e7837fed0a0df98bf683 M dlls
A new message appears in the console:
err:win:DEFWND_SetTextW Not enough memory for window text
Reverting this commit fixes the problem.
Workaround is native qcap.dll
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18990
Summary: Slingplayer 1.5 installer hangs
Product: Wine
Version: unspecified
Platform: PC
URL: http://download.slingmedia.com/player/pc/SlingPlayer-S
etup-EU-1.5.1.343.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer, regression
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
CC: hib(a)hiberis.nl
Created an attachment (id=21879)
--> (http://bugs.winehq.org/attachment.cgi?id=21879)
wine-1.1.23-110-g8fb7fdd console output
In the latest git, Slingplayer 1.5's installer hangs. This is a recent
regression.
Result of bisect:
8fb7fdd0295df22b19bc9ee55431ff54521a6ee8 is first bad commit
commit 8fb7fdd0295df22b19bc9ee55431ff54521a6ee8
Author: Hib Eris <hib(a)hiberis.nl>
Date: Wed Jun 10 17:13:59 2009 +0200
msi: Fix a crash when freeing memory.
:040000 040000 27415426216cbe58558725e5c33debb04a1132e0
3650c3657f54aa27a37c1ce955fb945e73e52ecf M dlls
Reverting this commit fixes the problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21688
Summary: Turbo Lister assertion failure
Product: Wine
Version: 1.1.37
Platform: x86
URL: http://download.ebay.com/turbo_lister2/setupUK.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=26208)
--> (http://bugs.winehq.org/attachment.cgi?id=26208)
Low quality photo - screenshot not possible
When clicking on the very top of an opened file menu (see photo - screenshot
not possible), an assertion failure occurs in eBay's Turbo Lister.
Unable to reproduce under Windows XP.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22017
Summary: LiveUpdate can not connect via proxy
Product: Wine
Version: 1.1.40
Platform: x86
URL: ftp://ftp.symantec.com/public/english_us_canada/liveup
date/1.8/lusetup.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=26761)
--> (http://bugs.winehq.org/attachment.cgi?id=26761)
Wine 1.1.40 console output
LiveUpdate (tested 1.8 but will test others shortly) can not connect to the
Internet via a proxy server (tested Squid 2.7).
Wireshark shows that no attempt is made to connect to the server.
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_DATA_RECEIVE_TIMEOUT
(120000): STUB
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_TIMEOUT
(120000): STUB
Firefox 3.5.6 on the other hand works fine.
Works fine under Windows XP.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19576
Summary: Unimplemented function d3dx9_36.dll.D3DXCreateEffect
Product: Wine
Version: 1.1.26
Platform: PC
URL: ftp://ftp.1cpublishing.eu/demos/menofwar_demo_setup.ex
e
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Men of War demo exits with unimplemented function d3dx9_36.dll.D3DXCreateEffect
Native d3dx9_36.dll is the workaround.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17712
Summary: Monopoly 2 uninstaller fails
Product: Wine
Version: 1.1.16
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=15959
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=19910)
--> (http://bugs.winehq.org/attachment.cgi?id=19910)
Screenshot of error message
Hasbro Interactive's Monopoly fails when trying to uninstall, with message
"Unable to locate the installation log file 'C:\Program'. Uninstallation will
not continue."
The shortcut created during install executes the following command:
env WINEPREFIX="/home/test/.wine" wine "C:\WINDOWS\ISUNINST.EXE" -f"C:\Program
Files\Hasbro Interactive\Monopoly\Uninst.isu"
I'm not sure how to workaround this, but it is a minor bug nonetheless.
Monopoly uses Installshield and I am using GDM/Gnome/Ubuntu 8.10.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18291
Summary: Quicktime 4 uninstaller fails
Product: Wine
Version: 1.1.20
Platform: PC
URL: http://www.oldversion.com/download/quicktime40.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=20821)
--> (http://bugs.winehq.org/attachment.cgi?id=20821)
Screenshot of error
Quicktime 4 uninstaller fails, apparently ignoring \ in the command line
(created by the shortcut).
Command in the shortcut is:
env WINEPREFIX="/home/test/.wine" wine "C:\windows\unvise32qt.exe"
C:\windows\system32\QUIC~EA4\UNIN~2XG.LOG
Whereas this works:
env WINEPREFIX="/home/test/.wine" wine "C:\windows\unvise32qt.exe"
"C:\windows\system32\QUIC~EA4\UNIN~2XG.LOG"
So maybe if everything after wine <app.exe> was passed to <app.exe> "as-is",
this would work?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23171
Summary: Adobe CS4 installer causes a page fault
Product: Wine
Version: 1.1.41
Platform: x86
URL: http://trials.adobe.com/Applications/Photoshop/CS4/Win
/ADBEPHSPCS4_LS1.7z
OS/Version: Linux
Status: NEW
Keywords: download, Installer, regression
Severity: minor
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
CC: jacek(a)codeweavers.com
Created an attachment (id=28824)
--> (http://bugs.winehq.org/attachment.cgi?id=28824)
Wine 1.2-rc3 console output
Working around Bug 18070, Photoshop CS4's installer now causes a page fault in
mshtml.
This is a regression.
da01d8acaf5d955a055d7ea78220cfa8d747ef70 is the first bad commit
commit da01d8acaf5d955a055d7ea78220cfa8d747ef70
Author: Jacek Caban <jacek(a)codeweavers.com>
Date: Thu Mar 18 01:05:10 2010 +0100
mshtml: Moved removing event target to separated function.
:040000 040000 ca78f2f3a6abc7af1e6c33e3ef667fe9dfbb2e78
411a338e71a21795f949c2be145b890b98df2504 M dlls
http://source.winehq.org/git/wine.git/?a=commitdiff;h=da01d8acaf5d955a055d7…
I cannot revert this patch in latest git (1.2-rc3) but checking out the commit
before removes the problem.
winetricks ie6 is the workaround.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19276
Summary: Internet Explorer 1.0 fails to install
Product: Wine
Version: 1.1.0
Platform: PC
URL: http://www.oldversion.com/download/msie10.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=22318)
--> (http://bugs.winehq.org/attachment.cgi?id=22318)
Wine 1.1.25 +file +relay +seh +tid
Internet Explorer 1.0 fails to install, nothing in the console.
The installer seems to be nothing more complicated than a self extractor and
cab extract.
Need to set Windows version to Win95 for installer to start.
Workaround is manual extraction.
Same in Wine 1.1.25.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17969
Summary: Warhammer 40K: DoW demo exits silently
Product: Wine
Version: 1.1.18
Platform: PC
URL: http://download.cnet.com/Warhammer-40-000-Dawn-of-War-
Dark-Crusade-demo/3000-7483_4-10579330.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Warhammer 40,000: Dawn of War Demo exits silently.
Appdb claims this should work on older Wines but I have tried 0.9.51 and 0.9.33
with the exact same result.
Wine 1.1.18 gives no console output at all.
The GraphicsConfig.exe does work though.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19068
Summary: Slingplayer 1.5 installshield error 1628
Product: Wine
Version: 1.1.23
Platform: PC
URL: http://download.slingmedia.com/player/pc/SlingPlayer-S
etup-EU-1.5.1.343.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer, regression
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
CC: hib(a)hiberis.nl
Depends on: 18990
Blocks: 18536
Created an attachment (id=22010)
--> (http://bugs.winehq.org/attachment.cgi?id=22010)
+msi logs and screenshot
Slingplayer 1.5 has another regression.
d9568722aa1c60ae402f18f7a079cb0988dd8c58 is first bad commit
commit d9568722aa1c60ae402f18f7a079cb0988dd8c58
Author: Hib Eris <hib(a)hiberis.nl>
Date: Sun May 24 18:51:58 2009 +0200
msi: Support transforms with binary OBJECTS.
:040000 040000 0843b2732453e265f54c8a52d118aeb9eb39d05a
9fcf49b64bf55349ce6568776904997349a536f0 M dlls
With this commit, Slingplayer 1.5's installer exits with "1628: Failed to
complete installation".
To get this far, native qcap is required to work around Bug 18536.
This is currently blocked by Bug 18990 (reverting
8fb7fdd0295df22b19bc9ee55431ff54521a6ee8 in the latest git brings us back to
this bug).
Reverting d9568722aa1c60ae402f18f7a079cb0988dd8c58 (this bug) and
8fb7fdd0295df22b19bc9ee55431ff54521a6ee8 (Bug 18990) in the latest git takes us
back to Bug 18536, the last bug for which there is a simple workaround.
I am not aware of a workaround for this bug (except reverting this commit
also).
Attached are +msi traces with this commit, and from the commit just before it.
In both cases native qcap is used to workaround Bug 18536.
Screenshot of error also attached.
Note: When testing, you may also come up against Bug 18540.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17863
Summary: Sage Line 50 UK v10 can not launch uninstaller from
shortcut
Product: Wine
Version: 1.1.18
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=16135
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
The shortcut to launch the uninstaller for Sage Line 50 v10 fails, and this is
why:
env WINEPREFIX="/home/test/.wine" wine "C:\windows\command\start.exe"
"C:\Program" Files\Common Files\InstallShield\Driver\7\Intel 32\IDriver.exe
/M{CD442089-F88D-4F46-8E3C-E4B2964B2415}
See the fun mistake? (... "C:\Program" Files\ ...)
Two ways to get around this, run the command correctly
wine "C:\Program Files\Common Files\InstallShield\Driver\7\Intel
32\IDriver.exe" /M{CD442089-F88D-4F46-8E3C-E4B2964B2415}
Or remove it using "uninstall" - both work.
So I guess there's something going a bit wrong when the shortcuts/launchers are
made (winemenubuilder?)
Apologies if this is a duplicate, I could not find the specific problem when
searching.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20128
Summary: MS .Net (dotnet) 4.0 fails to install
Product: Wine
Version: 1.1.29
Platform: PC
URL: http://download.microsoft.com/download/6/B/2/6B20C066-
05D6-4A83-B174-22F9C4BC7AE5/dotNetFx40_Full_x86.exe
OS/Version: Linux
Status: NEW
Keywords: dotnet, download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=23700)
--> (http://bugs.winehq.org/attachment.cgi?id=23700)
MS error dialog
Running the installer for .Net 4.0 (currently Beta 1) fails immediately and
shows the MS error reporting dialog.
>From the attached screenshot, it seems to fail when attempting to run
"VSSETUP".
This is the x86 (i386/32-bit) version.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20061
Summary: wine: Segmentation Fault - all programs under wine
including winecfg
Product: Wine
Version: 1.0.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: brad.k.martin(a)gmail.com
Created an attachment (id=23615)
--> (http://bugs.winehq.org/attachment.cgi?id=23615)
Core file created by running 'winecfg' with no .wine folder
Unable to launch any programs using wine, including the builtin notepad.exe or
winecfg. When run from the terminal, the program causes a segmentation fault
immediately.
I have removed the .wine folder and the problem is still happening. Winecfg
seg faults before re-creating the .wine folder.
Distribution: Ubuntu 8.10 with all patches applied.
uname -a: Linux wine_test 2.6.27-14-generic #1 SMP Mon Aug 31 13:01:41 UTC 2009
i686 GNU/Linux
Wine version: 1.0.1
Core dump attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20385
Summary: Half-Life crash when in-game HEV suit volume setting
too high
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: netfab(a)gmail.com
Step to reproduce :
- run steam, half-life and load a game
- go to options, audio tab
- incrase the HEV suit volume slide to maximum
- go in game, play and take damages until the little voice say something like
:
> automatic medical assistance engaged
If the volume is too high, you come back on your desktop with a dialog box
which say :
> Fatal error
> SV_Startsound: volume = 346
(I don't know the exact volume number)
I don't know if the game really crash, but if the volume is really too high,
maybe the error should be handled differently ? Thanks.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24958
Summary: colormap? problem with internet maps in OziExplorer
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jdoutt(a)whoi.edu
I'm using wine 1.3.6 compiled from source on Ubuntu.
Oziexplorer ( http://www.oziexplorer.com/ ) is mapping software and recently
they have added the capability to use maps from the internet.
To get OziExplorer, go to "http://www.oziexplorer.com/" then click on
oziexplorer in upper left
The latest edition can be downloaded from there.
Finally, to get the new internet mapping capability click on "New click
here for details and downloads" near bottom and then click on internet maps
page. Download "internet maps.map" file.
Most of the internet maps sphw up OK, but images from GoogleSatellite &
GoogleTerrain show up as dots of different colors.
Incidentally, satellites photos from NASA in "MrSid" format are OK.
This looks like a similar problem with OziExplorer that was fixed in bug 21067.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24822
Summary: Word 2007, Excel 2007, etc. open document, crash
Product: Wine
Version: 1.3.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: inverness1(a)gmx.de
After pressing the round office button in the left hand corner, Word / excel
freezes and an error message appears. Word / excel must be closed.
Reverting to the stable 1.2 wine, the problem does no longer appear.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=16035
Summary: Microsoft Office XP can't modify word document
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexis.deruelle(a)laposte.net
Created an attachment (id=17262)
--> (http://bugs.winehq.org/attachment.cgi?id=17262)
+msi,+msidb WINWORD.EXE
MS Office XP installs correctly however :
- MSWORD.EXE displays a popup at startup advising to "repair" the installation.
- MSWORD.EXE does not allow for modification although documents are perfectly
rendered.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9359
Summary: Need for Speed Most Wanted crahshes frequently
Product: Wine
Version: 0.9.43.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mailing_list(a)orange.nl
Created an attachment (id=7649)
--> (http://bugs.winehq.org/attachment.cgi?id=7649)
Terminal_output
I tried running NfS: MW with and without sound. At first it ran great (with
sound), but now it crashes the whole time. I have attached the terminal output.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21476
Summary: Need for Speed Most Wanted - "unload the debugger and
try again"
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robin-angermann-aka-xaviax(a)gmx.net
if i start need for speed most wanted, a message appears: "unload the debugger
and try again".
the game dont start.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21195
Summary: Wine fails to launch Pirates of the Caribean at
World's End
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris(a)cpaulinski.com
I saw the other bugs listed with this app but this bug is new. Whenever I try
to play the game the system switches to 640x480 video mode the disney splash
screen comes up I get about 1 second into the pregame loading and then the
program crashes and I get a message saying that an error has occured and it may
be a defect with wine or the program. Program works under windows. I've tried
updating my wine to no avail.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20936
Summary: Code::Blocks nightly build crashes on closing.
Product: Wine
Version: 1.1.34
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kai.mast(a)gmail.com
When closing Code::Blocks. It crasehs printing out the following in the
console:
fixme:msvcrt:MSVCRT__wsetlocale 0 L"English_United States.1252"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25587
Summary: winejack advertises incorrect supported sample rates
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: patrakov(a)gmail.com
This is a copy-paste from Bug 14717 comment 46 (by Raymond), to keep the
different bugs "zero-order-hold resampler is used" and "winejack advertises
incorrect supported sample rates" discussed in different places.
===
if winejack.drv can only supply only jack server'sample rate
wwo->sample_rate = fp_jack_get_sample_rate(client);
but in waveoutcaps , it incorrectly state that it can support 16bits 11025Hz,
22050Hz and 44100Hz if the jack server is running at 48000Hz
948 /* NOTE: we don't support any 8 bit modes so note that */
949 /* WOutDev[i].caps.dwFormats |= WAVE_FORMAT_4M08;
950 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_4S08; */
951 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_4S16;
952 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_4M16;
953 /* WOutDev[i].caps.dwFormats |= WAVE_FORMAT_2M08;
954 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_2S08; */
955 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_2M16;
956 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_2S16;
957 /* WOutDev[i].caps.dwFormats |= WAVE_FORMAT_1M08;
958 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_1S08;*/
959 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_1M16;
960 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_1S16;
961 }
It only 16bit and WAVE_FORMAT_48M16 | WAVE_FORMAT_48S16 by providing 16bit ->
float conversion
if you start jack server at 96000Hz, winejack.drv should WAVE_FORMAT_96S16 |
WAVE_FORMAT_96M16 in waveoutcaps
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20484
Summary: Audio distortion using Jack
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: p.drezet(a)inx-systems.com
When using Jack as the audio back end for wine low level but significant
distortion is heard and measurable on the output.
The level of distortion is sufficient to make wine jack unuseable for medium
quality audio applications (i.e. quality is rediced to equivelant of 32kbs -
mp3). This occurs on all signal levels and does not appear to be clipping.
This can be reproduced and identified most easily by recording the Jack output
with Audacity (also tested with other jack recording applications) and
comparing the spectrum of the original and recorded signals.
The spectrum indicates that the full bandwidth is present, but additional
frequency content has appeared. This also occurs when dithering is enabled in
jack.
Sounds like re-sampling aliasing issue - or perhaps an internal filter variable
scaling problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21050
Summary: Wine returns an error OLE error 80070057
Product: Wine
Version: 1.0.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew(a)drapper.com
I have instaled WORDsearch under wine and all appeared to go well, on fist
opening the programme it took me to a page asking me to tell it what internet
access I have and then... I can not remember if anything happened then, but it
did not work. Now every tine I try to launch the programme it returns OLE error
80070057.
Thanks
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20815
Summary: MAGIX MOVIE EDIT PRO 11 - Fails to Start.
Product: Wine
Version: 1.1.33
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rmnthr(a)yahoo.com
CC: rmnthr(a)yahoo.com
MAGIX MOVIE EDIT PRO 11 Installs successfully but fails to start.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21389
Summary: Debugger does not start when application crashes
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: winedbg
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ayers(a)fsfe.org
I'm trying to capture trace for bug in a game, yet it seems I'm having issues
creating a useful log. I have followed the instructions:
http://wiki.winehq.org/FAQ#head-a37de3282d447376d2220d20a278ae52258551a4
and obtained a log which ends with:
fixme:cursor:SetSystemCursor (0x1226,00007f02),stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3d0eb54,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3d0ed3c,0x00000000), stub!
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x1644a0,0x1672a0): stub
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x1644a0,0x1672a0): stub
fixme:d3d:WineD3D_ChoosePixelFormat Add OpenGL context recreation support to
SetDepthStencilSurface
fixme:d3d9:Direct3DShaderValidatorCreate9 stub
wine: Unhandled page fault on read access to 0x00000000 at address 0x3f12bd
(thread 0009), starting debugger...
err:seh:start_debugger Couldn't start debugger ("winedbg --auto 8 5752") (2)
Read the Wine Developers Guide on how to set up winedbg or another debugger
So I've read through:
http://www.winehq.org/docs/winedev-guide/dbg-config
and found that my registry entry for [MACHINE\\Software\\Microsoft\\Windows
NT\\CurrentVersion\\AeDebug] contains:
Debugger REG_SZ winedbg --auto %ld %ld
I assume the --auto is expected even though it is not mentioned in the FAQ.
Please advise on how I can get the wine debugger configured correctly.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20487
Summary: CS1.6 - high ping
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: d.okias(a)gmail.com
Ping to servers from console is fine, ping to servers from cs1.6 server list is
fine (20-30) and in-game ping is between 100-900ms. For example native linux
openarena have about 20ms. It's not depend on game server. I tested wine from
1.1.28 - 1.1.32, all version have same issue. wine configuration cleared.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19127
Summary: FlashFXP 2.1 does not show menu bar anymore
Product: Wine
Version: 1.1.24
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: geist1(a)sms.at
Created an attachment (id=22090)
--> (http://bugs.winehq.org/attachment.cgi?id=22090)
Snapshot of FlashFXP udner Wine 1.24
FlashFXP 2.1 does not show a menu bar anymore with Wine 1.24, instead there
come an error
"An internal error has occurred.
A Win32 API function failed
An internal error has occurred.
Access violation at address 7ECE0B33 in module 'gdi32.dll'. Read of address
00000008"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18279
Summary: Unhandled page fault on execute access
Product: Wine
Version: 1.1.20
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dwp.txt.file(a)gmail.com
Created an attachment (id=20812)
--> (http://bugs.winehq.org/attachment.cgi?id=20812)
the output when i run lfs.exe
I wanted to play live for speed on my Debian\sid\amd64 but it won't start.
Instead the debugger showed some information
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20537
Summary: Program loader
Product: Wine
Version: 1.0.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P3
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eaterjolly(a)gmail.com
Installs work perfectly, but when i launch the program it says eith the name of
the program or wine program loader in the task bar and after 20 seconds it
disappears!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20125
Summary: Jane's F/A-18 installer fails "not compatible with NT
4.0"
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: keith_kw_muir(a)blueyonder.co.uk
this worked in 1.1.14 so I'm assuming its a regression can you edit the
setup.ini so it ignores the O/S check? or is their a parameter in setup.exe
that allows that? if so I'll put a comment in the app. tried all wineconfig
options for O/S including NT 4.0 nothing worked.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20321
Summary: The installation of Visma Enskild Firma freezes after
installation-folder is chosen.
Product: Wine
Version: unspecified
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wicing(a)home.se
The installation of Visma Enskild Firma freezes after installation-folder is
chosen.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19715
Summary: SWAT 4 Freezes, loses mouse focus, crashes.
Product: Wine
Version: unspecified
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: webmaster(a)geekstreak.com
Created an attachment (id=23035)
--> (http://bugs.winehq.org/attachment.cgi?id=23035)
Wine Console output.
While playing SWAT 4, in various sections the game will temporarily freeze with
a Critical Section wait timeout. After several seconds the game will unfreeze
but loses all mouse input (and sometimes loses keyboard input). The mouse will
be able to leave the screen, even if it's warped.
Attached is the wine terminal output.
Reproducing this problem:
In the first level - "Food Wall Restaurant" - you can walk into the front door
of the restaurant. After you and your men are inside the dining area, the game
should freeze. Sometimes nobody is in the dining area. Simply restarting the
level should fix this, as the game randomizes the positions of enemies and
civilians.
Note 1:
The game is unplayable due to the well known mouse capture problem that
requires an xorg API fix. To get around this problem, a simple mouse hack was
written using the middle click to switch between warped and non-warped mouse
modes. Without this, menu navigation is impossible, or looking around in the
game is impossible.
I can confirm that this minor hack does not affect this bug - a version of wine
without the hack was used to confirm the loss of mouse input.
Note 2:
dlls/ntdll/critsection.c, line 436, wait_semaphore - changing the 5 second
delay to 300 seconds temporarily alleviates the problem, allowing the player to
usually get through several levels; however, other problems occur that may or
may not be related to this bug (freezes at random intervals, textures load as
garbage in random levels, the error message is slightly different, etc...)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22283
Summary: i cant play
Product: Wine
Version: 1.1.41
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alebbius(a)gmail.com
Created an attachment (id=27226)
--> (http://bugs.winehq.org/attachment.cgi?id=27226)
the error
i did the installation correctly, but when i launch the .exe it doesn't
start...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21213
Summary: Sim Theme Park 2.0: Page fault on read access when
entering username
Product: Wine
Version: 1.1.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gaming4jc2(a)yahoo.com
Created an attachment (id=25480)
--> (http://bugs.winehq.org/attachment.cgi?id=25480)
wine: Unhandled page fault on read access to 0xffff0013 at address 0xffff0013
(thread 0009), starting debugger...
The game works fair, mouse is a bit buggy but gameplay is possible. However at
username screen when you start to type a page fault occurs. Only current work
around is leaving player name as "Enter your player name". Attached is log of
me attempting to type and getting the page fault.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20940
Summary: Macromedia Flash 8 update do not work: it do not copy
the new files.
Product: Wine
Version: 1.1.34
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexyecu(a)gmail.com
In wine 1.1.34 fl8_flashlite2_1_update.exe (an update for Macromedia Flash 8)
works wrong. It backups some old files in .wine/users/user/Local
Settings/Application Data/Macromedia/Flash_8/en/Configuration/Classes but do
not copy the new ones. So, Flash becomes unusable, on any compilation it sais:
**Warning** Scene=Scene 1, layer=action, frame=1:Line 1: The file
'toplevel.as', which is required for typechecking ActionScript 2.0, could not
be found. Please make sure the directory '$(LocalData)/Classes' is listed in
the global classpath of the ActionScript Preferences.
It`s ok with wine 1.1.31.
And one more bug, I do not know where to post it: in any version of wine-1.* I
should kill IDriver.exe, the process starting with Macromedia Flash
installation (оr with an update installation), cause this process do not stop
itself.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20876
Summary: Wine 1.1.33 + Steam + Counter-Strike 1.6 install crach
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: a2525578(a)uggsrock.com
Created an attachment (id=25024)
--> (http://bugs.winehq.org/attachment.cgi?id=25024)
console error when steam crash.
I use Ubuntu 9.10 x64 and Wine 1.1.33. I can install Steam, but i cant install
nothing, it crash. And Steam status icon in "up corner", its very hard use it,
because mouse keep jumping between 3 difference selects: "Games, Store and
Friends".
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20075
Summary: crashes on eMule
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: masterpj(a)ngi.it
After the last update, eMule (0,49c + MorphXT 11.3) is very very often crashing
in the transfer menu: it happens when you use the contestual menu on files in
download (by right click of the mouse). In the previuos version of wine it
didn't happen, it worked perfectly.
Please correct this because its nearly impossible to use emule in this way.
I hope you'll tell me something about the fix.
Thank you a lot and thank you for all Wine is doing!
MasterPJ
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21223
Summary: Installation of Holley Commander 950 Software fails
with Bad File Descriptor error
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: etork(a)neb.rr.com
Created an attachment (id=25495)
--> (http://bugs.winehq.org/attachment.cgi?id=25495)
debuglog created when running SETUP.EXE
Installation of Holley Commander 950 Software (using wine SETUP.EXE on the
commandline) fails with the following:
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x526e6046 wine client error:1e: write: Bad file descriptor
This is on Fedora Core 11, using wine version 1.1.32, installed via rpms. A
test on Fedora Core 12, with wine version 1.1.32 fails in the same way.
Using a fresh install of .wine directory still fails, using as root or
non-root user gives same result.
A small debuglog is attached, (using
WINEDEBUG=+all wine foo.exe > debuglog 2>&1 )
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18988
Summary: Final Fantasy 8: crash with video in background
Product: Wine
Version: 1.1.23
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: puciek(a)gmail.com
Created an attachment (id=21872)
--> (http://bugs.winehq.org/attachment.cgi?id=21872)
Log from the crash
When playing ff8 and there is a video running in background (ie. from first
disc train mission in timber) game will very often crash.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19378
Summary: Quicken 2008 registration displays garbled inoperative
HTML
Product: Wine
Version: unspecified
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: info(a)skierpage.com
Created an attachment (id=22459)
--> (http://bugs.winehq.org/attachment.cgi?id=22459)
garbled Quicken Registration dialog
I installed Wine 1.01 on Kubuntu 9.04 amd-64 and installed Quicken 2008 from
CD-ROM. The installation failed in the online update.
I then installed wine-1.1.26 from the PPA http://wine.budgetdedicated.com/apt
I did not install any of the WineTricks mentioned on the AppDB
When I ran Quicken 2008, I got a prompt about going online to register. When I
followed that, the Quicken Registration dialog appeared, but apart from a
banner
"Welcome to Quicken registration..."
it was full of gibberish characters as if the encoding is wrong. I will attach
a screenshot.
As you can see, the status line of the dialog window contains
file://C:\windows\profiles\All Users\Applicataion
Data\Intuit\Quicken\INET\COMMON\PNF\REG\4A5E9E00.H
This file exists on my drive C: with slightly different capitalization at the
end -- Inet\Common\Pnf\Reg\4A5E9E00.HTM
I can open this file and it appears fine in my Linux Firefox browser and text
editor; not garbled at all, no UTF characters. It seems to hold the HTML for
all the stages of the registration process; in working Quicken you don't see
all of this HTML at once.
This bug sounds like what SpinDr describes in comment 9 of bug 14672. I am
reporting a separate bug because that bug is "I am not presented with the box".
I get the box, but it's garbled.
I'm happy to attempt to debug this further; alas my log with WINEDEBUG=+relay
filled my disk and I had to remove it, and now I don't know how to get back to
the registration dialog because I used the trick of Shift+Ctrl "One Step
Update" to turn off registration!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21237
Summary: Installer for Unreal (original game) crashes on
startup with "Unhandled exception: page fault..."
Product: Wine
Version: 1.1.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: shaun(a)cantab.net
Using Ubuntu 9.10 x86_64, wine 1.1.35:
- Inserted original Unreal disk
- ran "WINEPREFIX=/tmp/wine/unreal wine setup.exe"
- get error: "wine: Unhandled page fault on read access to 0x11ff51ba at
address 0xf74c3c1b (thread 0026), starting debugger" (full trace attached)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20016
Summary: USB audio device only visible to if VirtualBox is
running a virtual machine
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: richardg1952(a)yahoo.com
System: Fedora 11
wine-1.1.23-1.fc11.i586
ION TTUSB05 USB Turntable
VirtualBox-3.0.6_52128_fedora11-1.i586
Acoustica SpinitAgain (LP to CD or mp3)
I purchased the SpinItAgain software to accelerate the process of converting my
+1,000 album collection to mp3. I'd started with Audacity and the USB
turntable, but it is a laborious process. SpinItAgain looked promising since it
could look up album info on the web.My concern was, would wine be able to
access the USB turntable. I installed SpinItAgain and everything worked right
out of the box.
It would crash every few days, but it would restart and I would carry on.
Two days ago the program crashed and could no longer see the USB turntable.
I tried rebooting the Fedora 11 host, re-plugging the USB cable, nothing made
the USB turntable visible in wine. I was invoking winecfg, selecting the audio
tab and checking wave input under ALSA to see if the turntable was visible.
In frustration I started a VirtualBox Windows XP guest with the intention of
moving the SpinItAgain to VB. XP under Virtual Box is horribly slow so while
waiting for XP to boot, I ran winecfg again and to my amazement the USB
turntable was again visible in wave in AlSA. I had been running a Fedora 10
guest in VirtualBox and only shut it down about the time wine lost access to
the USB turntable.
To confirm that VirtualBox is the magic trigger. I shut down the VirtualBox XP
session and checked winecfg - the USB Audio disappears. I then started a Fedora
10 guest under VirtualBox, re-checked winecfg and USB Audio was again under
wave in ALSA. With this setup SpinItAgain is working once more.
If I hadn't already had VirtualBox running when I originally installed
SpinItAgain the USB turntable would not have been visible in wine and I would
have assume the program was unusable through wine with the USB turntable.
It's worrisome that an apparently unrelated application running has such a
major impact wine's ability to access a piece of hardware. As this is audio,
and the weirdness of pulseaudio coming in to replace ALSA is causing a plethora
of problems, I don't feel confident that this workaround will continue to work.
Hopefully this information will be useful to the wine developers.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20959
Summary: eureqa : wine: Unhandled illegal instruction
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: n.wilcox(a)comcast.net
Created an attachment (id=25126)
--> (http://bugs.winehq.org/attachment.cgi?id=25126)
backtrace of eureqa
fatal error when starting Eureqa. Illegal instructions.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21345
Summary: Dreamweaver cs3's installation problem
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: teyssandier.william(a)free.fr
installation dreamweaver cs3 impossible
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21091
Summary: virtualdub mp3 playback error
Product: Wine
Version: 1.0.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehqbugs(a)bugmenot.com
VirtualDub 1.9.7, wine 1.0.1 on Ubuntu 9.10
when trying to playback an AVI with mp3 audio I get an error from virtualdub:
"The operation cannot continue as the target audio codec has jammed and is not
decompressing data. Codec state for driver "Wine MPEG3 decoder": source buffer
size [...etc etc]"
The error occurs when playing (press the space bar in virtualdub):
- a movie, starting somewhere inside the stream
- a clip (i.e. a video that was probably extracted from a movie), starting
anywhere
It seems that the error does not occur when playing movies from the very
beginning of the stream (thus when using an "original" mp3 stream, from the
beginning)
Thanks
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20916
Summary: autocad 2002 crashes on first run after install
Product: Wine
Version: 1.1.34
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wolf550e(a)gmail.com
Created an attachment (id=25078)
--> (http://bugs.winehq.org/attachment.cgi?id=25078)
command line output
Installed fine, when ran it shows splash, then main window with toolbars etc.
If provided file on command line, opens the file and renders it. But before it
finishes and lets me do anything, it crashes.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20740
Summary: yahoo games blood ties will not install or run.
Product: WineHQ Bugzilla
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mikescony1(a)ameritech.net
Created an attachment (id=24807)
--> (http://bugs.winehq.org/attachment.cgi?id=24807)
terminal output of installation bloodties
Hello fellows:
Installed yahoo games blood ties <installer yahoo_bloodties_tm6-3.exe> on wine
vers. 1.1.33. This was done on a fresh prefix.
Game does not install properly. You do get a desktop icon but the application
does not run.
I have enclosed a copy of the terminal output for the installation.
Please let me know if further information is required.
Respectfully
Michael Sconyers
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20292
Summary: Audiosurf: QuestViewer.exe crashes on game startup
Product: Wine
Version: 1.1.30
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: djrbk(a)clearwire.net
Upon clicking the OK button after the program loads, Audiosurf throws an error
and hangs. (The program QuestViewer.exe has encountered a serious problem and
needs to close. We're sorry for the inconvenience)
Clicking Close will not close the window or the program, but by closing the
(now greyed) program window and selecting Force Quit, theprogram closes out
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18999
Summary: Game created with RPG MAKER : some keys are pressed by
the computer when playing.
Product: Wine
Version: 1.1.23
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: generalzarmakuizz(a)hotmail.fr
When playing a game made by RPG MAKER XP, sometimes it looks like some
directional keys are automatically pressed (as if the computer press the key).
For example you don't press any key, and the hero goes left. If the hero goes
left and you press right, the hero don't move left or right.
When you have a choice to do, sometimes the cursor will travel into the
different choices even if you don't press any key.
If you run the game with the console (wine Game.exe), the bug is weaker.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15662
Summary: Jackd crash (winecfg)
Product: Wine
Version: 1.1.6
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: incredible.angst(a)gmail.com
Created an attachment (id=16726)
--> (http://bugs.winehq.org/attachment.cgi?id=16726)
Backtrace (crash of winecfg while trying to test jack sound output)
Wine crashed while trying to test jackd sound output in winecfg (ALSA and OSS
just doesn't work).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20543
Summary: Downgrade Jack not found from fixme to warning
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: scott(a)open-vote.org
Trivial, but this fixme should probably be just a warning since Jack is
generally optional:
fixme:jack:JACK_drvLoad error loading the jack library libjack.so.0, please
install this library to use jack
Observed confusion here:
https://bugs.launchpad.net/ubuntu/+source/wine/+bug/466499
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21554
Summary: i have a "mmap() failed: memory can't be asigned",
then the game starts, but when it's going to main
menu, something fails
Product: Wine
Version: 1.1.37
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jknvv13(a)gmail.com
I have a error with Need for Speed Shift, when I run the game a video starts,
but when the game goes to the menu, it fails!!
on the console I receive
"wine: Unhandled page fault on read access to 0x00000000 at address 0x8304eb
(thread 0009), starting debugger..."
Thanks
jknvv13(a)gmail.com
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.