vote up 1 vote down star

Hi!

I need to run a windows command line tool from a php script on my Debian server. For that, I'm trying Wine. Invoking wine and the tool via terminal works fine: "$ wine tool.exe"

But when running the same from my php script...

exec("wine tool.exe");

...I get the following in my Apache error log: wine: '/var/www' is not owned by you, refusing to create a configuration directory there

I guess this is a simple fundamental linux user rights problem... Should I change the user rights for Wine to www-data? How?

flag

78% accept rate

3 Answers

vote up 0 vote down check

You should create a separate home directory for running Wine. Create a directory which is owned by www-data, set the HOME variable, su www-data, and run winecfg once; then run tool.exe (as that user). In the exec call, make sure that HOME is set (try exec("HOME=/tmp/wine wine tool.exe"))

link|flag
Thank you Martin, Mathieu and Mike! Quick prototype: by creating a /var/www/.wine/ directory, and setting it's rights to www-data, it works! I will try your solution, Martin, moving it out of /var/www/ – Cambiata Sep 4 at 8:48
vote up 0 vote down

Seems harmless, as long as wine can function without configuration directory.

Try and find out if wine can run with a specified configuration directory on the commandline. If not there's two things you can do: either you copy an existing (from your user for instance) wine config directory into /var/www or you just ignore this warning and redirect STDERR output somewhere else:

exec ("wine tool.exe 2>/dev/null");
link|flag
vote up 0 vote down

You're going to want to use chown to modify the ownership of wine and tool.exe.

Be advised that this could potentially open up some security concerns.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.