I am using ubuntu with libreOffice. I have installed unoconv for convert a *.odp file to *.pdf. When i run the command unoconv -f pdf myfile.odp from terminal then it works very fine. I want to do the same thing with using PHP shell_exec() method. So, I wrote the following code:

$output = shell_exec('unoconv -f pdf test.odp 2>&1');
echo $output;

But it shows the following error:

/usr/bin/python: /opt/lampp/lib/libz.so.1: no version information available (required by /usr/bin/python) 
Traceback (most recent call last): File "/usr/bin/unoconv", line 24, in import uno,
unohelper File "/usr/lib/python2.7/dist-packages/uno.py", line 34, in import pyuno SystemError: dynamic module not initialized properly

How can I solve this problem?

Thanks in advance.

link|improve this question

When you run unoconv -f pdf test.odp 2>&1 in your terminal, does it throw the same error? – Eduard Luca Jan 18 at 13:01
Please do $output = shell_exec('env && unoconv -f pdf test.odp 2>&1'); echo $output; and compare to your shell's env – Eugen Rieck Jan 18 at 13:01
@EduardLuca no but unoconv -f pdf test.odp works well in terminal. and doesn't show anything with unoconv -f pdf test.odp in php. – Arif Jan 18 at 13:04
2>&1 redirects stderr to stdout. May be this command produces some errors that are not shown when running without redirection of stderr. Furthermore, it is better to use absolute paths when executing commands with exec/shell_exec/etc – Timur Jan 18 at 13:11
@Timur I did the change as you told but still it shows the same error. – Arif Jan 18 at 13:24
show 4 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.