Here is my php code
$command = "C:\Program Files\ClustalW2>clustalw2 -INFILE=seq.txt -TYPE=Protein -OUTFILE=res.aln";
exec($command);
When i run the command using the cmd, it generates the desired file. However when i try passing the same command via my php code it generates no result. How do i fix this problem?
cmd. Doing so required user privileges from the operating systems. Are you sure you can run this command from your web app in the host machine? Does the web app have sufficient privileges granted to it?