Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8414589
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T01:12:19+00:00 2026-06-10T01:12:19+00:00

I have user submitted java files that the server runs. With the possibility of

  • 0

I have user submitted java files that the server runs. With the possibility of an infinite loop, I run a timeout countdown in the PHP. The problem is, the proc_get_status seems to update before javaw.exe is actually finished (since it never will be with an infinite loop); procStatus["running"] == false after the first iteration in this:

$javaCmd = "javaw -cp \"$home/$target_dir\" $fl  2>&1 < ". $fileIn;
$proc = proc_open('exec '.$javaCmd, array(array("pipe", "r"), array("pipe", "w"), array("pipe", "w")), $pipes);

$procStatus = proc_get_status($proc);

if($procStatus["pid"] === false)
{
    echo 'PRocess is not running... something is wrong';
}
else
{
    if($procStatus["running"] == true)
    {
        $timeOut = 0;
        while($timeOut < $timeLimit)
        {
            echo 'timeout...'.$timeOut.' while timelimit is '.$timeLimit.'<br/>';
            sleep(1);
            $timeOut = $timeOut +1;
            if( $procStatus["running"] == false) 
            {
                echo 'broke before timeout...<br/>';
                break;  // Exited before the timeout.   
            }
            $procStatus = proc_get_status($proc);
        }
        var_dump($procStatus);  
    }
    echo 'killing process<br/>';

    var_dump(proc_terminate($proc));
}

I have tried to do proc_terminate, proc_close, fcloses on $proc and $pipes, but nothing seems to work in killing the javaw.exe process. Would exec("kill -9 ".$procStatus['pid']) kill successfully? I am testing on windows, but the server is on unix.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T01:12:20+00:00Added an answer on June 10, 2026 at 1:12 am

    Executing exec(“kill -9 “.$procStatus[‘pid’]) should definitely kill that process.
    You could firstly try kill without the ‘-9’ parameter to allow a nicer killing and then
    maxbe check again if the process is still there, ‘-9’ parameter is to force the kill.

    Under Windows (at least Version 7) you could use exec(“taskkill /PID “.$procStatus[‘pid’])
    for testing, it should do quite the same.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an each method that is run on some user-submitted data. Sometimes it
I have created a piece of code that checks files for a user-submitted string
I have some user-submitted variables that I want to display in a different part
I have a Flash web app which displays user submitted PNG files. Files are
So I have a form that the user fills out, when submitted an new
I have user submitted tags that can be any type of (valid) UTF-8 string.
I have this function that takes some user-submitted HTML code from the database: function
So I'm building a website in php codeigniter, and I have user submitted articles...
I have user submitted content that is loaded into c# winform in our office
I have user-submitted text via form that could have multiple blocks of text in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.