fbett / le-acme2-php

LetsEncrypt client library for ACME v2 written in PHP.
MIT License
30 stars 15 forks source link

Hanging on 'response received' #6

Closed leemathewbrooks closed 5 years ago

leemathewbrooks commented 5 years ago

Hi there,

I've been using this library for a fair while now (I actually submitted issue #1 !) and have recently started getting some bizarre behaviour.

Running $order->authorize(\LE_ACME2\Order::CHALLENGE_TYPE_HTTP); results in the authorisation process hanging forever and not progressing; my logic hasn't changed and nor has the environment - generating a certificate using the command line tool on the same server works.

Enabling logging yields the following:

08-11-2018 21:14:34: will request from https://acme-v02.api.letsencrypt.org/acme/authz/XXXXXX 08-11-2018 21:14:35: LE_ACME2\Connector\Connector: response received

Any insight would be appreciated!

Thanks, Lee

leemathewbrooks commented 5 years ago

Nevermind - I was being dumb and apparently my timeouts were set ridiculously high which is why I wasn't seeing a failure message!

Lee