Replies: 1 comment
-
Upon debugging and testing, I discovered that the issue was with the Downloader class not receiving a response, resulting in it never entering the onResponseReceived method. The error message indicated that the guzzle http client request was throwing the following exception: cURL error 60: SSL certificate: unable to get local issuer certificate In order to resolve this, I followed these steps:
After making these changes, the issue was resolved and everything started working as expected. |
Beta Was this translation helpful? Give feedback.
-
I have successfully implemented a project that functions flawlessly on macOS and Linux operating systems. However, I encountered an unexpected issue when attempting to run the same project on Windows. Specifically, after transferring and installing the project using Git, I noticed an unusual behavior.
In detail, the program successfully crawls all the
$startUrls
, but it exits normally without entering theparse
method or any other user-definedparse
method. Consequently, I am unable to proceed with the desired functionality.I would greatly appreciate any assistance or guidance in resolving this issue. It is possible that I might be overlooking something crucial. Thank you in advance for your help.
Beta Was this translation helpful? Give feedback.
All reactions