You should be able to do that now. If the 2-pass that you are trying to run requires two different command executions, all you need to do is modify your conversion settings to run both commands back to back. The easiest way to do this is to separate the commands out with a semicolon (;). So, for example (note that this is an example of how to use the semicolon):
Code:
$variable = "/path/to/converter first_pass_variables_here; /path/to/converter second_pass_variables_here";
Everything inside of the quotes gets executed from the command prompt in vShare and not through PHP, which is why that works.
Bookmarks