http://bugs.winehq.org/show_bug.cgi?id=23849
Summary: Hofmann photo album app has access violation dialog
during startup
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A comment on
http://www.linuxhispano.net/2010/07/30/ejecutar-un-programa-windows-en-ubun…
says
"Well I've been wanting to use Wine for a particular program, is software that
provides Hoffman to create photo albums. It is this:
http://www.hofmann.es/include/DescargaFichero.asp
There is, however, required. NET and I can not make it run."
winetricks mono26 doesn't make it anywhere near happy, but winetricks dotnet20
lets it start. The app puts up an exception dialog, and the log shows
fixme:gdiplus:GdipPrivateAddMemoryFont 0x1109e658, 0x110a0698, 352225
2010-07-30 16:42:14,440 [1] ERROR DigitalAlbum - StartPageControl -> Set Font
System.AccessViolationException: Attempted to read or write protected memory.
This is often an indication that other memory is corrupt.
at HofmannDigital.HelperFont.AddFontMemResourceEx(IntPtr pbFont, Int32
cbFont, Int32 pdv, Int32 pcFonts)
at HofmannDigital.HelperFont.GetEmbeddedFonts()
at HofmannDigital.HelperFont.LoadEmbeddedFonts()
at HofmannDigital.HelperFont.GetPrivateFontFamily(String familyName)
at HofmannDigital.HelperFont.CreatePrivateFont(String familyName, Single
emSize, FontStyle style)
at HofmannDigital.StartPageControl..ctor()
fixme:gdiplus:GdipGetRegionScansCount not implemented
You can ignore that and continue.
(If you try to get past it with winetricks gdiplus corefonts, bad things
happen.)
--
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=22277
Summary: Pool Sharks requires implemented
GdipSetImageAttributesWrapMode
Product: Wine
Version: 1.1.42
Platform: x86
URL: http://www.poolsharks.com/PoolSharksInstaller.exe
OS/Version: Linux
Status: NEW
Keywords: dotnet, download
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=27214)
--> (http://bugs.winehq.org/attachment.cgi?id=27214)
Pool Sharks .NET unhandled exception output
After installing dotnet20 from winetricks and installing Pool Sharks, starting
its launcher yields a managed exception:
System.NotImplementedException: Not implemented.
at System.Drawing.Imaging.ImageAttributes.SetWrapMode(WrapMode mode, Color
color, Boolean clamp)
at System.Drawing.Imaging.ImageAttributes.SetWrapMode(WrapMode mode)
at System.Windows.Forms.ControlPaint.DrawBackgroundImage(Graphics g, Image
backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle
bounds, Rectangle clipRect, Point scrollOffset, RightToLeft rightToLeft)
...
Using native gdiplus successfully works around this exception.
--
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=17435
Summary: AntiDupl: crashes when duplicated images founded
Product: Wine
Version: 1.1.15
Platform: PC-x86-64
URL: http://antidupl.narod.ru/files/AntiDupl.NET-1.0.0.0.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bopin(a)mail.com
Created an attachment (id=19516)
--> (http://bugs.winehq.org/attachment.cgi?id=19516)
Two console logs(with or without gdiplus.dll) with comments
if program tries to make a list of duplicated or broken images, crash happens.
If gdiplus.dll not used, no window appears.
--
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=19529
Summary: .NET 2.0: LDAP authorization fails (bug report +
solution)
Product: Wine
Version: 1.1.26
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: a.romanek(a)no.pl
Created an attachment (id=22726)
--> (http://bugs.winehq.org/attachment.cgi?id=22726)
Patched search.c file from wine/dlls/wldap32
In the company where I work we use our own internal software written in .NET
2.0. This software authenticates users using LDAP. When I was trying to run
this software under Ubuntu 9.04 using WINE 1.26 authentication always failed. I
started debugging the problem and I found that a .NET API call to
"System.DirectoryServices.Protocols.LdapConnection.SendRequest(DirectoryRequest
request)" throws an exception. A debug was also printed on the console log says
that "A bad parameter was passed to a routine". According to this website -
http://msdn.microsoft.com/en-us/library/aa367014%28VS.85%29.aspx - it is the
error message representation of the LDAP_PARAM_ERROR return code from WinLDAP
library.
I was digging further and I found that in WINE "SendRequest(DirectoryRequest
request)" method calls "ldap_search_extW()" WINE API function
(http://source.winehq.org/source/dlls/wldap32/search.c#L238). This function
calls ldap_search_ext from OpenLDAP API. A quick look in the source code
(http://www.openldap.org/devel/cvsweb.cgi/~checkout~/libraries/libldap/searc…)
and I got it - see ldap_pvt_search():
if( timeout != NULL ) {
if( timeout->tv_sec == 0 && timeout->tv_usec == 0 ) {
return LDAP_PARAM_ERROR;
}
I went back to 'ldap_search_extW()'. Here it is: the 'tv_sec' member of 'struct
timeval tv' is always filled with the value of timelimit argument, even if this
value is 0. Then the address of the structure is ALWAYS passed to
'ldap_search_ext()'. As a consequence (see above) LDAP_PARAM_ERROR is returned.
If we make a change in call to 'ldap_search_ext()' and pass NULL as timeout
argument when 'timelimit' is 0 instead of passing 'tv' structure address
everything works perfectly. I think this is how this 'timelimit' argument is
handled in WinLDAP library.
And what's the most important, this solves the problem of authentication in my
company's software.
--
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=20001
Summary: Unimplemented function
ntdll.dll.NtQuerySystemEnvironmentValue
Product: Wine
Version: 20050930
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=versi
on&iId=17426
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cdx(a)nerim.net
Created an attachment (id=23540)
--> (http://bugs.winehq.org/attachment.cgi?id=23540)
log file
I have an issue with Game toolset for Neverwinter Nights II.
Im trying to launch the toolset NWN2ToolsetLauncher.exe with wine.
I have all libs installed, as described in the install procedure at
http://appdb.winehq.org/objectManager.php?sClass=version&iId=17426
I had previously succeeded to launch the toolset with some minor issues. So it
seems to be a regression.
I didn't tried it for a while and since had some updates from wine development
packages.
.NET 2.0 is installed
If I try to launch from command line, I get this exception :
wine: Unimplemented function ntdll.dll.NtQuerySystemEnvironmentValue
--
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=23808
Summary: Marmot Project - another bug
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
URL: http://marmot.gruk.org
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: golkran(a)gmail.com
After some searchs about Marmot project I tried to install it think it was ok.
Using winetricks i installed :
- donetfx.exe (microsoft frameworks 2.0)
- MFC42.dll
- Windows script shell 5.6
--> http://bugs.winehq.org/show_bug.cgi?id=5931
And unfortunately i have these logs :
fixme:actctx:parse_manifest_buffer root element is L"asmv1:assembly", not
<assembly>
fixme:sync:CreateMemoryResourceNotification (0) stub
fixme:advapi:LsaOpenPolicy ((null),0x32f154,0x00000800,0x32f0fc) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:advapi:LsaOpenPolicy ((null),0x32f0b0,0x00000800,0x32f058) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:gdiplus:GdipGetFamilyName No support for handling of multiple languages!
fixme:gdiplus:GdipCreateHalftonePalette stub
i have no idea to fix it.
Regards,
Golkran
--
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=16643
Summary: GetSocial fails to start
Product: Wine
Version: 1.1.11
Platform: PC
URL: http://hillelstoler.com/2008/05/18/getsocial-social-
bookmarking-for-wordpresscom/
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: interweiss(a)yahoo.ca
Created an attachment (id=18230)
--> (http://bugs.winehq.org/attachment.cgi?id=18230)
Error log from Terminal
GetSocial is an application that creates linkable icons that are used for
social bookmarking sites that can be placed in Wordpress blogs. I first ran
this application, but I received an error stating that I had to install Mono.
After I installed Mono I received a slew of errors that I have attached in a
file.
http://hillelstoler.com/2008/05/18/getsocial-social-bookmarking-for-wordpre…
--
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=18757
Summary: Albumsoftware_Foto_de_Klijne.exe does not work, it
crashes during installation
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jelledejong(a)powercraft.nl
Hello everybody,
In the Netherlands its very popular by average non expert computer users to use
special software to make photo albums and upload them to a shop that prints
them out. This popular software is build for Microsoft Windows, and is a real
bottleneck for converting people to a Linux distribution.
I tried to get the software to run with Wine, but it does not work with a
standard Wine installation under Debian GNU/Linux unstable branch.
The download location of the executable in question can be found here:
http://www.fotodeklijne.nl/index.php?option=com_phocadownload&view=category…
I would really appreciate it if somebody can get this working out of the box
with a standard wine installation.
Please see the attachments for the complete log.
Thanks in advance,
Jelle de Jong
--
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=18643
Summary: NCSoft Launcher crashes after being run.
Product: Wine
Version: 1.1.22
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: killzenator(a)gmail.com
Created an attachment (id=21348)
--> (http://bugs.winehq.org/attachment.cgi?id=21348)
Terminal output
Installing the Launcher works, then it checks for updates, it then downloads a
patch to self-update itself. Then it crashes after attempting to update.
This is labeled as major because it is used to install and manage multiple
games produced my NCSoft.
Quote from their website
"All of our newer releases have the NCsoft Launcher included and it will be
installed with the game. Once the NCsoft Launcher is installed, you can use it
to launch any NCsoft game."
--
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=21823
Summary: Dragon Unpacker: crash on startup
Product: Wine
Version: 1.1.39
Platform: x86-64
URL: http://www.elberethzone.net/lang-en/dup-download.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: selmi(a)centrum.sk
Created an attachment (id=26415)
--> (http://bugs.winehq.org/attachment.cgi?id=26415)
log with +relay
Dragon unpacker version 5.5.1 beta installs successfuly, but then crashes on
startup. splash screen is shown, then wine dumps error to console (wine:
Unhandled exception 0x0eedfade at address 0x0000:0x7b8366e2 (thread 0009),
starting debugger...) and shows graphical error window. then, when Close is
pressed it shows another small error box with message about unhandled exception
in ntdll.dll
log with +relay is attached
everything was tested with fresh .wine, only things I changed were setting of
virtual desktop to 1024x768, audio to alsa a removed links which point to
desktop etc.
I just added application to AppDB, when it will be commited I will add links
here
--
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.