Jump to content

php exec crashing the launched program


phoenixx

Recommended Posts

I'm using a program called Do It Again which is a mouse recorder. I am trying to launch a shortcut to it from my php script. Seems all is okay when I run it as a stand alone program, and is not set to have to be run by the administrator - still when I launch it from my php page I get the windows popup saying the program has crashed. "DoItAgain.exe has encountered a problem and needs to close. We are sorry for the inconvenience."

 

It's not the program, but something in my code:

 

$command= 'C:\\xampp\htdocs\poster\dia\\Monty_20.dia';
exec($command);

 

I also tried the following but get the windows popup error: "The Application Failed to Initiate Properly"

 

$command= ('START C:\\xampp\\htdocs\\poster\\dia\\Monty_20.dia');

 

Any help would be greatly appreciated. I've been at it for 3 hours now and I'm pulling out what little hair I have left.

Link to comment
Share on other sites

If your using apache as a system service, then it won't be able to interact with the desktop (nor will anything launched via it).  My guess is your program is crashing because it is assuming some system call worked which did not in this restricted environment.

 

To fix it you'd have to allow apache to interact with the desktop.  You do this in the group policy editor somewhere, but I am not sure where.  Google can give you better instructions.

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.