http://bugs.winehq.org/show_bug.cgi?id=15347
Summary: Lexware: Installation fails with "Systemprüfung konnte
nicht erfolgreich abgeschlossen werden"
Product: Wine
Version: 1.1.5
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: koesterreich(a)gmx.net
Created an attachment (id=16179)
--> (http://bugs.winehq.org/attachment.cgi?id=16179)
wine output
I am trying to install Lexware financial office pro[1], Version "2008 Juli" on
Ubuntu 8.04.1 with wine 1.1.5 from APT-repo.
For starting the installer various libraries need to be installed. I did that
using winetricks from 2008-08-25: winetricks msxml3 jet40 mdac28 winxp
The installation fails with a message-box saying "Systemprüfung konnte nicht
erfolgreich abgeschlossen werden" ("The system-check could not be completed
sucessfully. Aborting installation") [2].
Unfortunately there is now demo-version available for download (as far as I
know) but you can order a 4-week-trial on DVD [3].
I append the output of wine using (WINEDEBUG=+relay,+msgbox) and the following
debug parameters in user.reg:
[Software\\Wine\\Debug] 1221939180
"RelayExclude"="ntdll.RtlEnterCriticalSection;ntdll.RtlLeaveCriticalSection;kernel32.94;kernel32.95;kernel32.96;kernel32.97;kernel32.98;RtlEnterCriticalSect$
"RelayFromExclude"="winex11.drv;user32;gdi32;advapi32;kernel32"
I extracted a 1000-line section around the msgbox using tail and head. Hope the
log is helpful.
Regards,
Fabian
[1] AppDB entry:
http://appdb.winehq.org/objectManager.php?sClass=application&iId=5505
[2] Screenshot of error:
http://appdb.winehq.org/appimage.php?iId=20158
[3] 4-Week-Trial:
http://www.lexware.de/SID141.WXWPbkjL394/shop/productDetails?orderNo=A09018…
--
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=11710
Summary: wineprefixcreate does not create a color folder
Product: Wine
Version: unspecified
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: enhancement
Priority: P4
Component: tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lars.tore(a)mulebakken.net
In a normal windows directory tree there should be a color folder.
Unfortunately different windows version use different placement.
According to Real World Digital Photography, 2nd Edition, which I found after
some googling this is the proper places.
"For Windows 98 and earlier profiles should be saved in Windows\System\Color
directory.
For Windows XP, Windows 2000, and Windows ME, profiles should be saved to
Windows\System32\Spool\Drivers\Color.
For Windows NT, the profiles should belong in Windows\System32\Color
Some application like Picture Window Pro require this folder for a functionally
color management.
There are some discussion about this here
http://bugs.winehq.org/show_bug.cgi?id=11532
--
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=9345
Summary: SecureCRT - Scroll fails on any connection
Product: Wine
Version: 0.9.43.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P5
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: franziskaner.fan(a)gmail.com
Created an attachment (id=7632)
--> (http://bugs.winehq.org/attachment.cgi?id=7632)
image of the buggy scroll
Secure crt does not display correctly scroll.
When you connect anywhere and execute a long command (long ps, read a log...)
and scroll "run" fast it doesn't refresh correctly, mix old lines with new
ones.
If you select the lines (as shown in screenshot) it display new ones (actual
ones) but still display old ones too if it was longer.
I had test my version (SecureCRT 5.5.1 with enterprise license) since wine
0.9.38 (allways compiled, not rpm nor binarys) in Mandriva.
Other work companions has the same problem in Ubuntu and debian with
pre-compiled versions.
I too proved other versions with demo version and same problem appear.
Thanks for all
--
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=10649
Summary: Regression in RegQueryValueExA when called in unorthodox
manner
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: trivial
Priority: P5
Component: wine-advapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: samuel.howard.dennis(a)gmail.com
commit bc590e87a6f9c7421ec3386a7c09a63a3e55dead (16/08/2006, Robert Shearman,
affects advapi) caused a regression in one of my own programs in which I'd used
an unusual calling convention for RegQueryValueEx, being this:
char buf[16]; /* or 1 in the particular call that was failing */
DWORD count = sizeof buf;
LONG ret;
ret = RegQueryValueEx(hkey, "ValueName", NULL, &count, buf, &count); /* value
left in count is never checked */
This works under real windows (9x at least, I never ran the program on installs
of later Windows versions), but WINE does this before retrieving the value:
if (type) *type = REG_NONE;
...which sets count to 0 since I pass the same address for both type and count
in the call; this value is later used to determine the buffer size and triggers
an overflow error.
I am having trouble understanding the precise intent of the troublesome line
(when is *type supposed to be set to REG_NONE? On any error? On any error other
than buffer overflow? (This is the current WINE behaviour, as *type is
unconditionally set again after copying the data)), but clearly assignments
happen only after all processing in genuine Windows or *count is read early and
that value is used throughout the function.
I don't know which fix is appropriate, and am not sure how this case behaves
across different versions of Windows so I'm submitting this bug instead of a
patch. It is trivial to fix either way.
There is also the issue of which value (type or count) is left in the single
variable after the call, but calling this way and then checking that is even
more perverse and nobody has probably ever done it.
--
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=12416
Summary: Deus Ex and Syberia2 both have corrupted graphics in
0.9.59
Product: Wine
Version: 0.9.58.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eekfrank(a)hotmail.com
Both of these games worked gold for me in .58 and were unplayable in .59. I
have tried a different machine with a different os and an Nvidia video card,
and they work perfectly in .59 so it must be something that is affecting the
ATI card specificaly on this machine. I am using the prop. ATI driver 8.471,
currrent AFAIK. my video card is an ATI X1950pro.
I have tried 0.9.59 both as provided by my distro,(pclinuxos) and built wine
from source with the exact same results, graphic corruption so bad as to make
it impossible to run the games.
--
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=13166
Summary: Regression since Wine 0.9.60 : Wine System Tray window
always shown for PopTray 3.2 under Ubuntu 8.04
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: administrator(a)tcedi.com
Since Wine 0.9.60, a regression appeared with PopTray 3.2 : the system tray
icon is shown at the right place on GNOME desktop, but a Wine System Tray
window is also displayed all the time. Tray animations are only displayed on
the Wine System Tray window. The tray icon at the right place on GNOME desktop
stays with the icon from the launch of PopTray 3.2. Right click works on the
tray icon at both locations. Please note that I only tested PopTray with GNOME.
The problem may not appear with KDE. With Wine 0.9.61 and 1.0-rc1 the problem
is still present. The problem appeared with the tray improvements of Wine
0.9.60.
When launching PopTray from the shell, no error is displayed.
My Wine OS is "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=14003
Summary: Civilization 4 City progress bar doesn't display
Product: Wine
Version: 1.0.0
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: trivial
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jens.goldberg(a)gmail.com
When playing Civilization IV, you have growth & production bars showing what
progress a city is doing. In Wine, they are empty - forcing you to
"close-examine" a city to see how it's doing.
--
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=15374
Summary: The Witcher - Game cannot be registered
Product: Wine
Version: 1.1.5
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mcflow-forum(a)gmx.net
Created an attachment (id=16223)
--> (http://bugs.winehq.org/attachment.cgi?id=16223)
Output of wine during the reigstering process
I tried to register the game using the launcher. It did not work. Things that
you have to do to register it:
1. Log into the website (http://thewitcher.com)
2. Log into the launcher with the same account
At step 2 the process fails. After loggin in and entering the CD key the
application complains that you should log into the website, if you are you
should make sure that Internet Explorer has cookies enabled and redo the
procedure. I double checked that I was logged in and that FireFox had cookies
enabled. Still the same failure.
Now I took ies4linux and did it with this. It did not work. Same for Opera
(native and wine).
The terminal provided a bit of output but I don't think that it can be of some
importance:
When entering a key into a textfield the following line is displayed once per
keypress:
>err:x11drv:X11DRV_CreateBitmap Trying to make bitmap with planes=1, bpp=24
At the end, when the failed message pops up the following lines are displayed:
>fixme:wininet:INET_QueryOption INTERNET_OPTION_SECURITY_FLAGS: Stub
>fixme:wininet:InternetSetOptionExW Flags 00000000 ignored
>fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_SECURITY_FLAGS; STUB
The lines beneath this mentioned appeared by closing the launcher.
The whole error output is attached to this report.
--
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=11426
Summary: Cryptographic exception in .NET Framework application
Product: Wine
Version: 0.9.54.
Platform: PC
URL: http://www.aisto.com/roeder/dotnet/Download.aspx?File=Re
flector
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: crypt32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nodisgod(a)yahoo.com
Created an attachment (id=10555)
--> (http://bugs.winehq.org/attachment.cgi?id=10555)
Terminal output and backtraces.
After configuring Wine and installing the .NET Framework as per AppDb
instructions, I attempted to execute Reflector, a .NET class browser under
Wine. After a failed attempt to launch the .NET CLR optimization service, the
application throws a managed CLR exception, followed then by a native page
fault. To obtain Reflector, it is simply necessary to provide any random
information to download it.
--
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=9297
Summary: all screen resolutions but 600x480 crash PES4 demo
Product: Wine
Version: 0.9.43.
Platform: PC
URL: http://www.fileshack.com/file_download.x/5863
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeremielapuree(a)yahoo.fr
With PES4 demo, the screen resolution 600x480 works almost fine.
But all other screen resolutions make wine crashe
I attached the console output
Joaopa
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.