Well, you cannot really track the progress of a single conversion. but you can do something like the following for exmaple when you want to convert multiple documents:
- number of pages = 100%
- current page number / number of pages * 100 = progress in percent
therefore, after each processed page, you can update the course. you can write information to a file or database (associated with a user session for multi-user software) and query the status using ajax reqeust for a php script that reads this / db file.
source share