-
|
Hello; First thank you for the great work that you did. My issue is related to installation via composer, I'm getting errors about ssl certificate. The install process crashes. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi @abyasoft, Thanks for reporting this! Looking at the error message, "curl error 60 while downloading... SSL certificate problem: unable to get local issuer certificate", it indicates a problem with your local PHP/Composer environment's ability to verify SSL certificates when connecting to This error is not related to the Here's how you can usually resolve this: 1. Update your CA (Certificate Authority) Certificates:
2. Configure Composer's composer config -g cafile "C:\path\to\cacert.pem" # On Windows, replace with your actual pathOr for Linux (adjust path as needed, e.g., composer config -g cafile "/path/to/your/ca-certificates.crt"3. Check for Please try these steps, starting with updating your CA certificates, and let me know if you're still encountering issues. Hope this helps! Best regards, |
Beta Was this translation helpful? Give feedback.

Hi @abyasoft,
Thanks for reporting this!
Looking at the error message, "curl error 60 while downloading... SSL certificate problem: unable to get local issuer certificate", it indicates a problem with your local PHP/Composer environment's ability to verify SSL certificates when connecting to
repo.packagist.org.This error is not related to the
piteurstudio/satim-phppackage itself. It's a common environment issue that affects how Composer can download any package from Packagist or other secure repositories. Essentially, your system isn't able to trust the connection to Packagist, preventing Composer from fetching the package information.Here's how you can usually resolve this:
1. Update …