I am trying to execute a shell command in PHP page.
The command is
convert inputfile.jpg outputfile.ppm
it suppose to generate a outputfile.ppm in the current or desired directory.
what I did was:
exec("convert uploads/dino_gif.gif Pop/dino_gif.ppm"); I also tried system(..); But none of these generate anything. Anybody have any ideas?
Thanks