Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Doesn't work without cURL extension
Wilson29thID
New
Just wanted to post this here in case anyone else runs into the same issue - I installed the plugin and users were getting a blank page / 500 error when they clicked the register->submit button. This was because I didn't have the php5-curl extension installed.
I would suggest either adding the requirement to the plugin page or switching to file_get_contents()
instead of cURL.
Thanks!
0
Comments
file_get_contents
is unlikely to work for this under many security setups, it is not advisable. I think curl requirement is reasonable. Only problem is there isn't anything likecomposer.json
to tell of requirement like this.There is a programmatic way to put a check in, but it is deep magic.
grep is your friend.
@x00, I was just thinking of putting it in the plugin description as you would installation instructions