Hi there,
we are operating
www.pinktussy.com and
www.mezzacap.com and both sites are still not working because the API doesn't work. We've contacted the guys from microwallet.org but got no answer yet.
I am pretty sure that they are very busy anyway with repairing the DDoS but they should inform about the situation. A lot of people depend on them - faucet sites are not working, referal systems are out of order (at least for the microwallet faucets). In one word - a large part of the ecosphere is down.
I think it would be a good idea if @landofbicoin would drop a few words here and we all know a bit more, thx in advance.
Cheers
Bluechipper
Did you try to temporary replace:
$fp = @fsockopen('ssl://www.microwallet.org', 443);
if (!$fp) {
return array(
'success' => false,
'message' => 'Failed to send.',
'html' => '
Failed to send.
',
'response' => null,
);
}
@fputs($fp, $request);
with
$fp = @fsockopen('ssl://www.microwallet.org', 443, $errno, $errstr, 3);
if (!$fp) {
return array(
'success' => false,
'message' => 'Failed to send.',
'html' => '
Failed to send. ('.$errno.') '.$errstr.'
',
'response' => null,
);
}
@fputs($fp, $request);
in the code. Please paste the error message you get after "Failed to send." here.
Hi, I have changed the code and got the error message: "Failed to send. (0)"
You can try it with our test site
http://bexxpal.com.
Cheers Bluechipper
Looks for some reason your hosting is unable to resolve the microwallet's IP address.
As a temp measure you can ping locally:
ping
www.microwallet.orgthis will give you the IP 104.28.0.112, or 104.28.1.112 or something else ...
Then replace
$fp = @fsockopen('ssl://www.microwallet.org', 443);
$fp = @fsockopen('ssl://104.28.0.112', 443);
Then you will probably need to buy me a beer
just kidding, I'm not sure if it will work.