Michael Härtl
Michael Härtl
I will have a close look later. But could you give some more details? E.g. how did you call the method, what was the expected command and what did you...
Hmm, this is really tricky. `escapeshellarg()` is neccessary to not get problems with special characters. And the reason why it's replacing `%` with spaces on Windows is to prevent expansion...
Probably related issue: #41
Errors like this are extremely hard to fix. We already refactored the execution of wkhtmltopdf a lot to fix hanging issues (see https://github.com/mikehaertl/php-shellcommand/issues/20). But this only affects Linux systems. So...
The main logic is probably best explained in my comment here: https://github.com/mikehaertl/php-shellcommand/issues/20#issuecomment-521752406 You can try to edit the main loop in `mikehaertl/php-shellcommand/src/Command.php` and e.g. write something to a log file....
Do you get an error message from `getError()`? The most likely cause is a permission problem. I can not really help you much as this is specific to your OS,...
@IsmaelMartinez Before I open another issue: When this is implemented it should also be ensured, that the window is visible on all workspaces. I have the teams client running on...
@kohlerdominik While I see your point I'm a bit unsure if we really should include this. It somehow doesn't fit well with the existing interface and adds too much "magic"...
I would prefer something like your second example because it's really a choice between 3 options. The interface should clearly reflect that. Having 2 methods here somehow obfuscates this. It's...
> I can agree with that. But i'm not a big fan of text-based input for methods with only a few parameters. Maybe we can use constants like brick/math does?...