Problem with running the Nutch command from PHP exec()
- by Annibigi
My Nutch directory lies in /home/myserv/nutch/nutch-1.0/
My php applictaion is in the diretcory /home/myserv/www/
Theres a a php file in my /home/myserv/www/ diretcory that runs a exec command to run a nutch command.PHP code is like :
$output = exec("bin/nutch all");
When I run the command from the command line I need to be in the "/home/myserv/nutch/nutch-1.0/" directory
When i'm trying to run it through the php exec() ,I just can seems to make it execute.
I have tried giving the ful path like (below) but nothing works :(
$output =
exec("/home/myserv/nutch/nutch-1.0/bin/nutch
all");
Desperately looking for help