Ryan Kaldari <[email protected]> wrote: > I tried shell_exec() and exec() instead of system() and it gives the same > resullt - a zero byte file with no error. Any idea why it would work from > the command line but not from PHP?
Are you sure there is no error? STDERR is usually discarded by shell_exec () and similar functions. Try redirecting it to STDOUT with "rsvg some thing 2>&1". Tim _______________________________________________ Toolserver-l mailing list ([email protected]) https://lists.wikimedia.org/mailman/listinfo/toolserver-l Posting guidelines for this list: https://wiki.toolserver.org/view/Mailing_list_etiquette
