Page 1 of 1
Trying out a Faucet script - help with errors, please :)
Posted: Sun Jul 26, 2015 11:59 pm
by Callan S.
Hi guys. I'm trying out a bitcoin faucet script I got from faucetbox. I'm testing it on wampserver right now (and I haven't updated wampserver for quite some time - since I first posted here, I think!)
What does the first error mean?
Code: Select all
Warning: fopen() [function.fopen]: Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in C:\wamp\www\Faucet\faucetinabox-r51\libs\faucetbox.php on line 45
The latter errors I suspect are because I have not made an account with faucetbox.com and it's trying to contact them - this means a series of numbers aren't filled in and causes more errors. But am I wrong on that?
Faucet error screenie.png
Re: Trying out a Faucet script - help with errors, please :)
Posted: Mon Jul 27, 2015 3:46 am
by KyleMassacre
You can maybe take a look here and see if it helps you out:
http://community.sitepoint.com/t/unable ... p-5-3/6010
Re: Trying out a Faucet script - help with errors, please :)
Posted: Mon Jul 27, 2015 1:58 pm
by SpiritWebb
just add two lines in your php.ini file:
extension=php_openssl.dll
allow_url_include = On
Re: Trying out a Faucet script - help with errors, please :)
Posted: Tue Jul 28, 2015 12:53 am
by Callan S.
SpiritWebb wrote:just add two lines in your php.ini file:
extension=php_openssl.dll
allow_url_include = On
This replaces the original error message with two new error messages!
Code: Select all
Warning: fopen() [function.fopen]: SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:func(144):reason(134) in C:\wamp\www\Faucet\faucetinabox-r51\libs\faucetbox.php on line 45
Warning: fopen() [function.fopen]: Failed to enable crypto in C:\wamp\www\Faucet\faucetinabox-r51\libs\faucetbox.php on line 45
Re: Trying out a Faucet script - help with errors, please :)
Posted: Tue Jul 28, 2015 2:05 pm
by SpiritWebb
Re: Trying out a Faucet script - help with errors, please :)
Posted: Wed Jul 29, 2015 2:28 am
by Callan S.
Curiously it worked out better to install it on the free webhost I'm using - no errors with that, even though I haven't signed up with faucetbox yet. I guess I have to work with this thing out in the wild instead of on wampserver.
Thanks for the help, guys.