Instead of use the Akamai console, I wrote a script to translate the error code into human readable language. It can be downloaded from here To run the script, you need to get the API token, secret ... from your Akamai admin first. It is under Configure/ Manage API in the console. How it looks … Continue reading Akamai Error Reference Translator
Category: WWW
Akamai Pragma Header
Adding the Pragma header in http request is very helpful when troubleshooting Akamai caching. The Pragma header can be:"akamai-x-cache-on, akamai-x-cache-remote-on, akamai-x-check-cacheable, akamai-x-get-cache-key, akamai-x-get-extracted-values, akamai-x-get-nonces, akamai-x-get-ssl-client-session-id, akamai-x-get-true-cache-key, akamai-x-serial-no" In the http response, the following value can tell us whether the URL is cached by Akamai, and how long it is cached. X-Check-Cacheable: It shows whether the … Continue reading Akamai Pragma Header
Incomplete certificate chain
There are 3 methods to test the incomplete certificate chain: 1) https://www.ssllabs.com/ssltest/analyze.html?d=example.com The error is: Chain issues Incomplete 2) curl -v -o /dev/null https://example.com The error is: * NSS error -8179 (SEC_ERROR_UNKNOWN_ISSUER) * Peer's Certificate issuer is not recognized. 3) openssl s_client -showcerts -verify 10 -connect example.com:443 The error is: Verify return code: 21 (unable … Continue reading Incomplete certificate chain