-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build(composer.json) remove unused dev req. * fix(ChromedriverInstaller) correctly detect Chrome version on Windows * fix(ChromedriverInstaller) Windows support * doc(docs) add troubleshooting guide first entry * refactor(src) use Syphony process in Loop * fix(ChromedriverInstaller) command on Windows * fix(ChromedriverInstaller) version detection
- Loading branch information
Showing
9 changed files
with
186 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## Troubleshooting common issues | ||
|
||
### Downloads fail in Windows | ||
|
||
If you're using code or commands, e.g. [the `chromedriver:update` one](commands.md#chromedriverupdate), that download files and those keep failing with a message like the following: | ||
|
||
``` | ||
File ... download failed: SSL certificate problem: unable to get local issuer certificate | ||
``` | ||
|
||
It's likely the issue originates from PHP not having access to the system certificate store. | ||
|
||
You can fix this by downloading the [certificates](https://curl.haxx.se/docs/caextract.html) file and setting the `curl.cainfo` and `openssl.cafile` PHP configuration options to point to it: | ||
|
||
```ini | ||
curl.cainfo = "C:\path\to\cacert.pem" | ||
openssl.cafile = "C:\path\to\cacert.pem" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.