3

When used below command on the command line it working file

libreoffice --headless -convert-to pdf ".$sourse." -outdir outputolder/

but, if use in php script nothing happen. Can anybody provide explanation on what is the exact issue with

blade19899
  • 26,496
  • 21
  • 113
  • 177

2 Answers2

4

Well, I can see that you typed "-convert-to pdf" instead of "--convert-to-pdf". Maybe you did a similar typo in your php script? Hard to say without seeing the PHP code, though.

Please provide details: how do you call libreoffice from PHP, what do the error logs say etc.

Finally, if you are running SElinux and not Ubuntu, please take the question to a SELinux forum.

January
  • 35,223
  • 15
  • 82
  • 101
1

you are missing the filter name

This is the general format of convert-to (noting that on windows the parameter is :

-convert-to not --convert-to

soffice --headless --convert-to <TargetFileExtension>:<NameOfFilter> file_to_convert.xxx

Use the link to look for the filter names in the .xcu files.

For example, I wanted to convert to Excel 95 format so I found the MS_Excel_95.xcu filter and inside it has a name:

<node oor:name="MS Excel 95" oor:op="replace">
     ...

I could then try it out:

soffice --headless --convert-to xls:"MS Excel 95" filename.xlsx

(I needed this to get a non-xml version of an excel file)

Copied from : ask.libreOffice.org

Suhaib
  • 4,048
  • 7
  • 36
  • 47
  • 1
    Please provide your answer in terms of steps and then try to refer a link, because links can expire or move to different location. – VRU Jan 28 '13 at 09:29