When I try this plugin locally (xampp), I get the following error in the testing conversion window:
Path of source is not within a valid image root
I'm not the only one: Wordpress Plugin Support Forum
The culprit is that your isPathWithinExistingDirPath function does not respect the windows path separator. For example,
should return "true" while it actually returns "false".
I was able to fix this by adding two lines at the beginning of the isPathWithinExistingDirPath function in PathHelper.php. But there may be better ways to solve that.
You can also setup the ewww conversion method. To use it, you need to purchase an api key. They do not charge credits for webp conversions, so all you ever have to pay is the one dollar start-up fee š (unless they change their pricing ā I have no control over that).
They have changed there pricing, seems like they don't do it for less than $7 every month (!)... You should update the plugin description ;-)
When I try this plugin locally (xampp), I get the following error in the testing conversion window: Path of source is not within a valid image root I'm not the only one: Wordpress Plugin Support Forum
The culprit is that your isPathWithinExistingDirPath function does not respect the windows path separator. For example,
should return "true" while it actually returns "false".
I was able to fix this by adding two lines at the beginning of the isPathWithinExistingDirPath function in PathHelper.php. But there may be better ways to solve that.
Ahh, and one more thing:
They have changed there pricing, seems like they don't do it for less than $7 every month (!)... You should update the plugin description ;-)