up vote 5 down vote favorite
4
share [g+] share [fb]

Has anyone found a good class, or other file that will convert a .doc file into html or something that I can read and turn into html?

I have been looking around for a couple hours now and have only found ones that require msword on the server in order to convert the file. I am pretty sure that is not an option but I have not actually talked to my hosting provider about it.

The goal is for a user to be able to upload the file to my server and the server handle the conversion and then display it as html, much like googles view as html feature.

link|improve this question

feedback

6 Answers

intall and use abiword, like this:

AbiWord --to=html archivo.doc

you can call this command from php.

link|improve this answer
feedback

A project called phpLiveDocx does what you want. It is a SOAP based service, but can be used free of charge. For a basic introduction, please see: http://www.phplivedocx.org/articles/brief-introduction-to-phplivedocx/

link|improve this answer
feedback

Install open office on your system and run this on the command line:

/usr/bin/soffice -headless "macro:///Standard.Convert.SaveAsHtml(test.doc)"

link|improve this answer
thanks Anthony, but i could not find any documentation about that. could you provide a reference? – takpar Dec 13 '10 at 14:16
feedback

You can do it through openoffice with unoconv http://dag.wieers.com/home-made/unoconv/ Really great tool.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.