I have set up TesseractOCR for php on my linux server. When i execute code from command line the image gets recognized but i get blank page when i run the same script from web browser.
Any idea how to make this work on web browser also ?
After more than 10 hrs effort i fixed by doint these steps:
This is what i did.
$path = getenv('PATH'); putenv("PATH=$path:/usr/local/bin");
right after
require_once "TesseractOCR/TesseractOCR.php";
Thanks