hi:
my project is: indexing all kind of files for simple search engine in php,
as I mentioned before: I'm working in winXP,apache server with php
my problem is when I'm trying to call a converter program called "ABC Amber PDF converter" within my script using system().
this program support Command Line as follows:
"C:\Program Files\ABC Amber PDF Converter\abcpdf.exe" ["SourceFile"] ["DestinationFile"] [DestinationIndex]
but when I called it throgh my script,it doesn't work
$pdf="d:\AppServ\www\moodel\CLEF.pdf";
$text="d:\AppSev\www\clef.txt ";
$type=4;//for text
system(" $arg $pdf $text $type");
I'm wondering why and how can i come over this problem, is there anything in my php.ini file that I must change... please help me