PhpDig.net

PhpDig.net (http://www.phpdig.net/forum/index.php)
-   Troubleshooting (http://www.phpdig.net/forum/forumdisplay.php?f=22)
-   -   RTF never parse... (http://www.phpdig.net/forum/showthread.php?t=1074)

Ross 07-13-2004 05:23 AM

RTF never parse...
 
Hello folks !

I have a problem : Everything works perfectly with phpdig 1.8.2 and catdoc 0.93.3-2 exept the fact that phpdig never sees any .rtf document.

I've already checked the config file and it seems to be correct. rtf is not an excluded extension.

...any idea ?

lolodev 07-13-2004 06:13 AM

hello
do you parse MS WORD ??

Ross 07-13-2004 06:35 AM

Yes, I parse : .doc .xls .txt .htm .pdf and all plain text documents. As I read in phpdig documentation, it is expected with catdoc to parse .rtf documents isnt'it ? I don't know how parseing works... does phpdig check the mime-type of each document in order to parse ? what is the mime-type for a rtf document ?...

:o/

lolodev 07-13-2004 07:00 AM

ahaha
i ve the same question ??? do you have a msn account to chat ???

Ross 07-13-2004 07:19 AM

Unfortunatly our firewall did not pass the instant messenger stuff...

lolodev 07-13-2004 07:21 AM

ok
do you have an url for your site ?

Ross 07-13-2004 07:30 AM

I've just send you an e-mail... via phpdig.net 'got it ?

lolodev 07-13-2004 07:32 AM

ok

Ross 07-13-2004 08:58 AM

The solution
 
in //Parse content-type header replace :

switch ($regs[2]) {
case 'plain':
$status = 'PLAINTEXT';
break;
case 'html':
$status = 'HTML';
break;
default :
$status = "NOFILE";
$stop = true;

with :

switch ($regs[2]) {
case 'plain':
$status = 'PLAINTEXT';
break;
case 'rtf':
$status = 'MSWORD';
break;
case 'html':
$status = 'HTML';
break;
default :
$status = "NOFILE";
$stop = true;


All times are GMT -8. The time now is 05:42 PM.

Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright © 2001 - 2005, ThinkDing LLC. All Rights Reserved.