Jump to content

PHP and ANT


ak87

Recommended Posts

Hi,

 

I have to develop a test automation application. For this i need to run the command "ant cucumber" through php. This works when I do it on command line but when i use exec(), system(), pass_thru(), shell_exec() it doesnt execute it. Anyone encountered this yet? Is there any other way for me to run the command?

 

Also is there a way to run a batch file from php?

 

Thanks,

Link to comment
Share on other sites

Another possibility is that there are open basedir restrictions in place.  Are you in full sysadmin controll of this server?  Check the phpinfo() page to see if anything like that is indicated.  Restrictions can be put in place that disable execs or restrict the directories or specific commands you can run.

 

You can also run it using the backtick operator and capture the output and display it to see if there are any messages being returned and of course check the logs.

 

$return = `your ant script`;
echo $return;

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.