PHP Classes

convert rtf to html through abiword

Recommend this page to a friend!

      Top level forums  >  PHP Specialists  >  General  >  convert rtf to html through abiword  
Subject:convert rtf to html through abiword
Summary:I am using the below code for converting a rtf file to html.
Messages:2
Author:karthik
Date:2010-09-03 07:14:48
Update:2010-09-18 06:54:10
 

  1. convert rtf to html through abiword   Reply   Report abuse  
Picture of karthik karthik - 2010-09-03 07:40:32
The below code is not working, not giving any error also.
<?php
$handle = popen("/usr/bin/abiword --plugin AbiCommand 2>&1", "w");
fputs($handle, "server");
fputs($handle, "load /var/www/abiword/test.rtf");
fputs($handle, "save /var/www/abiword/test.html");
?>

when i execute through terminal with the below command, its working fine and converting.
abiword --to=rtftohtml.html test.rtf

But through php page its not converting, please suggest me the right way to convert from php page.

There is 1 reply in this thread, which is not being displayed.
Browsing this forum thread replies is available only to premium subscribers.


Go to the premium subscriptions page to learn how to become a premium subscriber and have full access to this forum.