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 8788259
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:06:42+00:00 2026-06-13T22:06:42+00:00

Here is my PHP code: <?php exec(‘java -jar ~/src/epubcheck-*/epubcheck-*.jar -out /var/www/epubcheck-outputs/output.xml /var/www/AChristmasCarol.epub’); When I

  • 0

Here is my PHP code:

<?php
exec('java -jar ~/src/epubcheck-*/epubcheck-*.jar -out /var/www/epubcheck-outputs/output.xml /var/www/AChristmasCarol.epub');

When I try the command in the terminal it works… But in PHP it does not.

Also I don’t even get the java version. But I do get to see the “hey…” so some commands do work, others don’t.

I am using NGiNX has my server.

  • 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-13T22:06:43+00:00Added an answer on June 13, 2026 at 10:06 pm

    The documentation for exec explains that only the last line of the output is returned by exec, so you need to use a parameter to capture the full output.

    java -version sends its output to STDERR, not STDOUT, so you need to redirect STDERR to STDOUT if you want to capture the output of that command with PHP.
    However, this shouldn’t be necessary when you’re running an ordinary java program.

    $output = array();
    
    exec('java -version 2>&1', $output);
    print_r($output); // contains the correct output
    
    exec('java -jar myfile.jar', $output);
    print_r($output); // should also contain the correct output
    

    If this still doesn’t work, see my comment on Ibu’s answer

    Edit: Actual answer, from question comments:

    ~/src/epubcheck-*/epubcheck-*.jar could be a problem here – ~ is a shortcut for the home directory of the current user – so when you run the command yourself, it means /home/username/src/..., but when you run it as your webserver’s user, it means an entirely different path. Try changing that to the full path of the jar files you want to execute.

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

Sidebar

Related Questions

Here is my PHP code.. $input = zergling-light $output = str_replace('-', ' (', $input).);
I write some code with PHP to backup database. Here my code: exec(mysqldump --opt
I'm trying to replicate PHP's exec function in a Java application. Here's the PHP
As I am new in PHP.Here is my js code var sites = [
i am using php sdk. here is my php code require 'src/facebook.php'; $facebook =
Here's my php code: <?php if($user->uid == '1'){ ?> <h3 class=info>Upcoming Games</h3> <!--MY CHANGE
here is my mysql and php code layout: I have 3 tables tableA stores
So I have some PHP code that looks like: $message = 'Here is the
I am completely stumped. Here is my php (CodeIgniter) code: function mod() { $uid
For example, my goal is to test the code given here: PHP script that

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.