http://bugs.winehq.org/show_bug.cgi?id=5920
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |vitaliy(a)kievinfo.com
Status|ASSIGNED |NEW
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5920
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
Status|NEW |ASSIGNED
------- Additional Comments From vitaliy(a)kievinfo.com 2007-11-07 23:55 -------
Patch sent
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=6900
------- Additional Comments From malganisz(a)yahoo.com.br 2007-11-07 23:55 -------
I have the same trouble in my WoW, i was reading posts and texts from here
(winehq) and everywhere but i could not find a solution for it! =(
My WoW runs in d3d mode with a poor quality, when i try run it in OpenGl mode it
crashes dreadly making me close the game only with the System Monitor by killing
the process.
Ubuntu (recent version)
Nvidia MX 4000 64MB
RAM 1GB DDR 400
PS: I can run other games such as Quake 3 and others under wine
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3921
------- Additional Comments From winehq(a)richardneill.org 2007-11-07 20:49 -------
Good news. In a clean install, fresh ~/.wine, wine-0.9.40, no winetools,
everything works :-)
One snag, when installing Office97, I get the error message "Accwiz.dll was
unable to register itself in the system registry". This made the installer say
it had failed. Running the installed programs seems to be OK though.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8919
thestig(a)google.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.highdots.com/css-
| |tab-designer/
Severity|major |normal
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Keywords| |download
Priority|P1 |P2
------- Additional Comments From thestig(a)google.com 2007-11-07 19:53 -------
Tried it with wine-git, same problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8925
Summary: automated Adobe Photoshop CS2 install only works in the
directory containing the msi file
Product: Wine
Version: CVS
Platform: PC
URL: http://download.adobe.com/pub/adobe/photoshop/win/cs2/Ph
otoshop_CS2.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
On Windows, I can do an automated Photoshop CS 2 install as follows:
msiexec /qb /i "path\to\Adobe Photoshop CS2.msi"
With Wine, it only works if the current working directory is the directory
containing the .msi file.
If I run msiexec from some other directory, I get a dialog box that says
"error." After I click ok, I get:
err:msi:ITERATE_Actions Execution halted, action L"CA_CheckPersErr" returned 1627
For the automated install to work, Abcpy.ini needs to have a serial number for
the line that starts with SERIALNUMBER= in the [OEM Install] section.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8924
Summary: values returned by getenv() are not persistent!
Product: Wine
Version: 0.9.40.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmda(a)yandex.ru
some applications, including php.exe/php-cgi.exe rely on persistence of the
environment variable values returned by getenv(). In other words, if I set
str=getenv("OS"), it is expected to remain pointing to "Windows_NT" if I
change any other variables in the environment, add new one or remove any
other, except "OS" itself.
With WINE something happens to _environ and it reallocates _all_ the variables
if only one is changed with _putenv.
Unfortunately, I could not replicate it in a simple application I created, but
in the real one (php-cgi.exe) I added some print statements and got an
evidence that all the variables are re-allocated at once.
Code:
char **sstr, *str;
sstr = _environ;
while (1) {
str = *sstr;
if (!str) break;
printf("%p %s\n", str, str);
sstr++;
}
_sapi_cgibin_putenv("ORIG_SCRIPT_FILENAME", orig_script_filename); // it calls
_putenv("ORIG_SCRIPT_FILENAME=blah blah blah")
sstr = _environ;
while (1) {
str = *sstr;
if (!str) break;
printf("%p %s\n", str, str);
sstr++;
}
0015DE00 SSH_AGENT_PID=2432
0015DE13 HOSTNAME=xd.localdomain
0015DE2B DESKTOP_STARTUP_ID=
0015DE3F TERM=xterm
0015DE4A SHELL=/bin/bash
0015DE5A XDG_SESSION_COOKIE=b2c74538c7d7db193de3650046928200-1184171678.822200-
436245997
0015DEAA HISTSIZE=1000
...
<< call to _putenv()
0101D914 SSH_AGENT_PID=2432
0101D927 HOSTNAME=xd.localdomain
0101D93F DESKTOP_STARTUP_ID=
0101D953 TERM=xterm
0101D95E SHELL=/bin/bash
0101D96E XDG_SESSION_COOKIE=b2c74538c7d7db193de3650046928200-1184171678.822200-
436245997
0101D9BE HISTSIZE=1000
...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8923
Summary: Adobe Photoshop CS2 Help Center does not install
Product: Wine
Version: CVS
Platform: PC
URL: http://download.adobe.com/pub/adobe/photoshop/win/cs2/Ph
otoshop_CS2.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
When I tried to install the Adobe Help Center that comes with Photoshop CS2 I
got the following message:
err:msi:ITERATE_Actions Execution halted, action L"RegisterFOrAUM40" returned 1603
If you unzip the photoshop installer, the msi file is in Photoshop CS2/Adobe(R)
Photoshop(R) CS2/help center/
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8922
Summary: Dreamweaver 8: redraw problems
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Symptom 1:
In the Site menu, choose New Site, and the
pop up window is drawn correctly but then redrawn blank;
you have to hide and expose it (or whatever) to get it to draw.
Symptom 2:
In many dialogs with input fields, e.g. inserting an image or table,
the input fields with their values are not drawn until
you move or click the mouse on them.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8921
Summary: Dreamweaver 8: macros don't play back?
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Macros record, but playback doesn't seem to do anything
(I recorded inserting a link, but playing back doesn't insert a link)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.