batch php,Open batch file php

Before everyone starts butting in with "security risks" "cant be done" stop there and read the ENTIRE post

I have a web server set up from a home laptop which is serving as a games web server im trying to create a GUI so its easier for us to maintain the server and im trying to use batch files to do the actions on the computer

So to put this into perspective I have my index file index.php

if(isset($_POST['startServer'])){

exec('batch/startServer.bat');

}

?>

And my startServer.bat will run on the laptop running the server and will do all the actions nesscary to start our game server so there is another directory "Instance" containing an excutable "Server.exe" which the batch file will run

The issue im having is running the web server and testing this it doesnt work if I open the batch file directly it works but it seems the php code doesnt work

For clarification I am using apache and my browser is chrome

And just a quick question for anyone willing to answer the route im going is correct right? Using php would allow everything to run on the machine hosting the server so the end user will only see the GUI and the server would run the batch files and everything on the web server and not the local machine if that makes sense?

EDIT: To be more clear about what's going on the function exec runs but it just hangs like the application is loading I need a solution that will actually open the application are my host computer for example if I wanted to open up notepad I press a button on the Web server and notepad will open on the computer

EDIT 2: I would like to note that I dont exactly need to use the exec function and I have tried all the answers to date 7/19/2017:3:45pm none are working if I do something on the sorts echo exec('start text.bat'); I will get a This is a test to show your batch is working and simply just have echo ..... in the batch file the main issue I am having is the server is not physically showing the opened file like displaying the GUI lets just take notepad for example

I can open notepad and get some return value as long as my batch file closes notepad once its finished running however the GUI for notepad is never displayed and thats very important

I read in a few articles about using apache as a service which im pretty sure I am but I do know that xaammp has suffiecient priveleges and I have checked the box that says "Allow apache to interact with desktop" however no GUI is popping up thats the main point I guess im trying to get across is I need to display the GUI not just open the file as a background service.

If it makes answering easier I am open to switching programming languages if theres one that can do what I want easier

# Answer 1

4d350fd91e33782268f371d7edaa8a76.png

In php manual about exec function, there is a note :

Note: If a program is started with this function, in order for it to

continue running in the background, the output of the program must be

redirected to a file or another output stream. Failing to do so will

cause PHP to hang until the execution of the program ends.

I think "hangs like the application is loading" is your application waiting for the bat file terminated / closed to get the output result

Let's try another approach, i found it here, the concept is to create a scheduler that execute the program you want and call it using command.

hope this help :

shell_exec('SCHTASKS /F /Create /TN _notepad /TR "notepad.exe" /SC DAILY /RU INTERACTIVE');

shell_exec('SCHTASKS /RUN /TN "_notepad"');

shell_exec('SCHTASKS /DELETE /TN "_notepad" /F');

If this doesn't work

Check whether you have declared safe_mode = Off inside php.ini

# Answer 2

Your theory is correct, it will run on the server however you may have issues running applications directly from php (with this method afaik it does not detach from the PHP, and the webapp "hangs" while the application is running).

Make sure: return values are printed / logged. Just an

if(isset($_POST['startServer'])){

echo exec('batch/startServer.bat');

}

?>

Could point you to the right direction. The exec function may have been disabled in your distribution.

Using

instead of

is highly advised, by default short_tags are not enabled in most distributions (wamp, xamp, etc).

Set debug mode and print everything to get information about the problem:

ini_set('display_errors', 1);

ini_set('display_startup_errors', 1);

error_reporting(E_ALL);

if(isset($_POST['startServer'])){

echo exec('batch/startServer.bat');

}

?>

If you don't have any response, try a simple batch file with a "hello world" to test if it works.

Be aware, the rights and limitations are comes from the php environment, the batch file inherits the same rights running the PHP code / Apache (in case of mod_php)

# Answer 3

From here:

Have you tried:

system("cmd /c C:[path to file]"); ?

# Answer 4

You might need to run it via cmd, eg:

system("cmd /c C:[path to file]");

Or Try following options

1.

exec('c:\WINDOWS\system32\cmd.exe /c START C:\Program Files\VideoLAN\VLC\vlc.bat');

?>

2.

When you use the exec() function, it is as though you have a cmd terminal open and are typing commands straight to it.

Use single quotes like this $str = exec('start /B Path\to\batch.bat');

The /B means the bat will be executed in the background so the rest of the php will continue after running that line, as opposed to $str = exec('start /B /C command', $result); where command is executed and then result is stored for later use.

pclose(popen("start /B test.bat", "r")); die();

?>

# Answer 5

i think this is a containment issue.

if you run the app under the process of php run by iiswebuser when php terminates it will close all spawned child processes in windows. there is a very quick way a command to break an application out of the child process containment using the start command.

if(isset($_POST['startServer'])){

exec('start batch/startServer.bat');

}

Diagram of containment as i explained it (simplisticly)

IIS (IIS runs as an IISUser)

php (application)

cmd.exe (batch)

using start bring it to the root of that tree

IIS (IIS runs as an IISUser)

php (application)

cmd.exe (batch)

# Answer 6

Baim Wrong was correct in the first part of the response: you have to redirect output of the script or your PHP code will hang. Also, you have to move process in the background.

This is easy to do on *nix:

system("/usr/local/bin/shell.sh >> /tmp/log.log 2>&1 &");

I know that you can redirect the output on Windows but not sure how to move the process in the background. You should check DOS manual or try with power shell.

# Answer 7

you can use either system or exec php function

$path = __DIR__ . '/batch/startServer.bat';

exec('cmd /c start ' . $path);

or

$path = __DIR__ . '/batch/startServer.bat';

$lastLine = system('cmd /c start ' . $path);

# Answer 8

You are having some issue about running application directly from exec. I was having the same issue of running file using exec. It was solved by passing another parameter 2>&1.

exec('some_command 2>&1', $output);

print_r($output); // to see the response to your command

Check the values printed by output see exec function

ini_set('display_errors', 1);

ini_set('display_startup_errors', 1);

error_reporting(E_ALL);

$output = array();

if(isset($_POST['startServer'])){

exec('batch/startServer.bat 2>&1', $output);

print_r($output);

} else {

echo "Not posted";

}

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值