Hello,
i tried to install QuickGV on windows system. Unfortunetely I encountered some issues.
I digged into the problem and found an issue in QuickGV.body.php
In line 73: $phpcmd = self::findExecutable('php', self::PHP_PATH);
the php.exe should be searched. But the method findExecutable ignores the first parameter on windows systems.
The method always searches for dot.exe.
I changed line 73 to:
$phpcmd = PHP_BINARY;
Kind regards,
Thomas