Bitcoin Hunters
Newbie
Offline
Activity: 13
Merit: 0
|
|
November 04, 2014, 11:13:37 AM |
|
The prob is that the faucet runs the balance-update code once X+10*60 seconds. Where X is 1 by default. This means run once every 10 minutes. You need to change the code wait 10 minutes and refresh the page and give as a feedback Thank you it works now. But I'm a little bit confused why it's so that we need to change it to make it work. Is there a problem with Microwallet or only from my webhost?
|
|
|
|
NeedIfFindIt
|
|
November 04, 2014, 11:31:20 AM |
|
Thank you it works now. But I'm a little bit confused why it's so that we need to change it to make it work. Is there a problem with Microwallet or only from my webhost?
For some reason your web hosting is unable to get the IP by name (it may be firewall or dns caching issue). Create php file "mw-ip-test.php" and put the text below: <?php
$ip = gethostbyname('www.microwallet.org'); echo $ip;
echo '<br />';
$ip = gethostbyname('www.microwallet.org.'); echo $ip;
?>
It works for me: http://bit.makejar.com/mw-ip-test.phpIf it does not output any IP address (or wrong one) for you then contact your hosting sending them a link to this file on your hosting. They should be smart enough to fix the issue
|
|
|
|
BitcoinFuture99
Member
Offline
Activity: 120
Merit: 10
|
|
November 04, 2014, 12:42:03 PM |
|
Thank you it works now. But I'm a little bit confused why it's so that we need to change it to make it work. Is there a problem with Microwallet or only from my webhost?
For some reason your web hosting is unable to get the IP by name (it may be firewall or dns caching issue). Create php file "mw-ip-test.php" and put the text below: <?php
$ip = gethostbyname('www.microwallet.org'); echo $ip;
echo '<br />';
$ip = gethostbyname('www.microwallet.org.'); echo $ip;
?>
It works for me: http://bit.makejar.com/mw-ip-test.phpIf it does not output any IP address (or wrong one) for you then contact your hosting sending them a link to this file on your hosting. They should be smart enough to fix the issue It Outputs the IP But still Showing "Unknown error" also your Microwallet index.php fsockopen PHP function IP tip not works for me. Thanks for helping us. I contacted hosting provider they told me to change the PHP version I checked it with all versions upto latest from 5.2 to 5.6 But not working and now Hosting provider not answering.
|
|
|
|
NeedIfFindIt
|
|
November 04, 2014, 12:55:36 PM |
|
It Outputs the IP But still Showing "Unknown error" also your Microwallet index.php fsockopen PHP function IP tip not works for me.
Thanks for helping us. I contacted hosting provider they told me to change the PHP version I checked it with all versions upto latest from 5.2 to 5.6 But not working and now Hosting provider not answering.
Your issue is different. To make it little bit clear: Find: list($header, $response) = explode("\r\n\r\n", $response);
Add before: Find: 'html' => '<div class="alert alert-danger">Unknown error.</div>',
Replace with: // 'html' => '<div class="alert alert-danger">Unknown error.</div>', 'html' => '<div class="alert alert-danger">Unknown error.'.$response_raw.'</div>',
And the next time you get "Unknown error." there should be some text. Make sure it does not contain your API key and paste it here.
|
|
|
|
BitcoinFuture99
Member
Offline
Activity: 120
Merit: 10
|
|
November 04, 2014, 12:58:46 PM |
|
Thank you it works now. But I'm a little bit confused why it's so that we need to change it to make it work. Is there a problem with Microwallet or only from my webhost?
For some reason your web hosting is unable to get the IP by name (it may be firewall or dns caching issue). Create php file "mw-ip-test.php" and put the text below: <?php
$ip = gethostbyname('www.microwallet.org'); echo $ip;
echo '<br />';
$ip = gethostbyname('www.microwallet.org.'); echo $ip;
?>
It works for me: http://bit.makejar.com/mw-ip-test.phpIf it does not output any IP address (or wrong one) for you then contact your hosting sending them a link to this file on your hosting. They should be smart enough to fix the issue Also please describe this to me when I run this code it redirects me to cloudflare spam filter captcha <?php $fp = fsockopen("www.microwallet.org", 80, $errno, $errstr, 30); if (!$fp) { echo "$errstr ($errno)<br />\n"; } else { $out = "GET / HTTP/1.1\r\n"; $out .= "Host: www.microwallet.org\r\n"; $out .= "Connection: Close\r\n\r\n"; fwrite($fp, $out); while (!feof($fp)) { echo fgets($fp, 128); } fclose($fp); } ?> I think cloudflare does not allow me to access microwallet
|
|
|
|
NeedIfFindIt
|
|
November 04, 2014, 01:05:37 PM |
|
Thank you it works now. But I'm a little bit confused why it's so that we need to change it to make it work. Is there a problem with Microwallet or only from my webhost?
For some reason your web hosting is unable to get the IP by name (it may be firewall or dns caching issue). Create php file "mw-ip-test.php" and put the text below: <?php
$ip = gethostbyname('www.microwallet.org'); echo $ip;
echo '<br />';
$ip = gethostbyname('www.microwallet.org.'); echo $ip;
?>
It works for me: http://bit.makejar.com/mw-ip-test.phpIf it does not output any IP address (or wrong one) for you then contact your hosting sending them a link to this file on your hosting. They should be smart enough to fix the issue Also please describe this to me when I run this code it redirects me to cloudflare spam filter captcha <?php $fp = fsockopen("www.microwallet.org", 80, $errno, $errstr, 30); if (!$fp) { echo "$errstr ($errno)<br />\n"; } else { $out = "GET / HTTP/1.1\r\n"; $out .= "Host: www.microwallet.org\r\n"; $out .= "Connection: Close\r\n\r\n"; fwrite($fp, $out); while (!feof($fp)) { echo fgets($fp, 128); } fclose($fp); } ?> I think cloudflare does not allow me to access microwallet What you try to obtain downloading the microwallet's home page using http (port 80)?
|
|
|
|
BitcoinFuture99
Member
Offline
Activity: 120
Merit: 10
|
|
November 04, 2014, 01:08:29 PM |
|
Thank you it works now. But I'm a little bit confused why it's so that we need to change it to make it work. Is there a problem with Microwallet or only from my webhost?
For some reason your web hosting is unable to get the IP by name (it may be firewall or dns caching issue). Create php file "mw-ip-test.php" and put the text below: <?php
$ip = gethostbyname('www.microwallet.org'); echo $ip;
echo '<br />';
$ip = gethostbyname('www.microwallet.org.'); echo $ip;
?>
It works for me: http://bit.makejar.com/mw-ip-test.phpIf it does not output any IP address (or wrong one) for you then contact your hosting sending them a link to this file on your hosting. They should be smart enough to fix the issue Also please describe this to me when I run this code it redirects me to cloudflare spam filter captcha <?php $fp = fsockopen("www.microwallet.org", 80, $errno, $errstr, 30); if (!$fp) { echo "$errstr ($errno)<br />\n"; } else { $out = "GET / HTTP/1.1\r\n"; $out .= "Host: www.microwallet.org\r\n"; $out .= "Connection: Close\r\n\r\n"; fwrite($fp, $out); while (!feof($fp)) { echo fgets($fp, 128); } fclose($fp); } ?> I think cloudflare does not allow me to access microwallet What you try to obtain downloading the microwallet's home page using http (port 80)? It was for testing and also your tip gives me the same Cloudflare Spam filter here is the output of your method Unknown error.HTTP/1.1 403 Forbidden Server: cloudflare-nginx Date: Tue, 04 Nov 2014 13:04:34 GMT Content-Type: text/html; charset=UTF-8 Connection: close Set-Cookie: __cfduid=##############; expires=Mon, 23-Dec-2019 23:50:00 GMT; path=/; domain=.microwallet.org; HttpOnly Cache-Control: max-age=2 Expires: Tue, 04 Nov 2014 13:04:36 GMT CF-RAY: ######-DFW Please enable cookies. One more step Please complete the security check to access www.microwallet.org
Refresh Announce Info reCAPTCHA challenge image Enter above text Leave a message for the site owner? (100 characters left) Submit Why do I have to complete a CAPTCHA? Completing the CAPTCHA proves you are a human and gives you temporary access to the web property.
What can I do to prevent this in the future? If you are on a personal connection, like at home, you can run an anti-virus scan on your device to make sure it is not infected with malware.
If you are at an office or shared network, you can ask the network administrator to run a scan across the network looking for misconfigured or infected devices.
CloudFlare Ray ID: • Your IP: ####### • Performance & security by CloudFlare
|
|
|
|
NeedIfFindIt
|
|
November 04, 2014, 01:14:29 PM |
|
For some season you probably got in their blacklist. I would suggesting contacting microwallet's owner ... but you know he is busy man.
Maybe changing the host/ip would do the job.
|
|
|
|
f4t4l
Full Member
Offline
Activity: 200
Merit: 100
Presale Starting May 1st
|
|
November 04, 2014, 01:18:41 PM |
|
News from MW Admin: Q: Is Microwallet closing? A: No. Q: Is there a problem with the withdrawals? A: The issue caused by a bug in the Blockchain.info API. We will deploy the workaround today and after that everything back to normal.
|
|
|
|
BitcoinFuture99
Member
Offline
Activity: 120
Merit: 10
|
|
November 04, 2014, 01:19:19 PM |
|
For some season you probably got in their blacklist. I would suggesting contacting microwallet's owner ... but you know he is busy man.
Maybe changing the host/ip would do the job.
Who could have blacklisted me Cloudflare or Microwallet Also I have shared IP that may be the cause of spam. I had to Buy Dedicated IP now. Is there any way to contact cloudflare to remove it from Blacklist
|
|
|
|
BitcoinFuture99
Member
Offline
Activity: 120
Merit: 10
|
|
November 04, 2014, 01:22:09 PM |
|
News from MW Admin: Q: Is Microwallet closing? A: No. Q: Is there a problem with the withdrawals? A: The issue caused by a bug in the Blockchain.info API. We will deploy the workaround today and after that everything back to normal.
What MW admin told about the Error Showing no balance and Claiming problem due to IP
|
|
|
|
Bitcoin Hunters
Newbie
Offline
Activity: 13
Merit: 0
|
|
November 04, 2014, 01:25:34 PM |
|
Thank you it works now. But I'm a little bit confused why it's so that we need to change it to make it work. Is there a problem with Microwallet or only from my webhost?
For some reason your web hosting is unable to get the IP by name (it may be firewall or dns caching issue). Create php file "mw-ip-test.php" and put the text below: <?php
$ip = gethostbyname('www.microwallet.org'); echo $ip;
echo '<br />';
$ip = gethostbyname('www.microwallet.org.'); echo $ip;
?>
It works for me: http://bit.makejar.com/mw-ip-test.phpIf it does not output any IP address (or wrong one) for you then contact your hosting sending them a link to this file on your hosting. They should be smart enough to fix the issue For me it works as well: http://bitcoinhunters.net/mw-ip-test.phpI think MW has problems.
|
|
|
|
NeedIfFindIt
|
|
November 04, 2014, 02:05:04 PM Last edit: November 04, 2014, 02:59:49 PM by NeedIfFindIt |
|
This is interesting. So maybe the fsockopen is us using some type of DNS caching etc. Because getting the address with gethostbyname is slow anyway. I mean: $fp = @fsockopen('ssl://'.gethostbyname('www.microwallet.org'), 443);
is probably a mistake. Maybe fsockopen is trying to use ipv6 instead of ipv4. Or issue with the openssl version. Sorry I'm just a PHP coder, not a sysadmin etc. And it does not bug for me so don't have a playground to test what is wrong. Maybe it is time to replace the fsockopen with curl functions. But I don't know if it will work for you either.
|
|
|
|
ryukamiho
|
|
November 04, 2014, 02:23:36 PM |
|
microwallet seems to working normal for me.
and faucets working good too o.o
|
|
|
|
BitcoinFuture99
Member
Offline
Activity: 120
Merit: 10
|
|
November 04, 2014, 02:50:06 PM |
|
I think and I Tested that Microwallet.org using Cloudflare with extreme Protection which is causing for shared IPs to first pass the Cloudflare Captcha. and thats why API not connecting to Microwallet.org
|
|
|
|
Bitcoin Hunters
Newbie
Offline
Activity: 13
Merit: 0
|
|
November 04, 2014, 03:35:18 PM |
|
This is interesting. So maybe the fsockopen is us using some type of DNS caching etc. Because getting the address with gethostbyname is slow anyway. I mean: $fp = @fsockopen('ssl://'.gethostbyname('www.microwallet.org'), 443);
is a mistake. Sorry I'm just a PHP coder, not a sysadmin etc. And it does not bug for me so don't have a playground to test what is wrong. Maybe it is time to replace the fsockopen with curl functions. But I don't know if it will work for you either. Thanks for your help I really appreciate it. The problem here is that I had no balance issue before the last DDoS attack. That's why I'm confused. We'll see if the admin will give an answer to this problem.
|
|
|
|
sevenz
Newbie
Offline
Activity: 42
Merit: 0
|
|
November 04, 2014, 03:36:01 PM |
|
Yes, I have tried it yet. Still the same problem. Me too. I was not sure if this was an issue on my personal end, or if it was a universal issue. I just did my first depo into my faucet, and in MW it shows as recieved and credited...but on my faucet the balance reads N/A and if I claim coin it says fail to send. Will this clear up by itself...or is there something we will have to code into our faucet to make it work and show up? Thanks
|
|
|
|
BitcoinFuture99
Member
Offline
Activity: 120
Merit: 10
|
|
November 04, 2014, 03:48:15 PM |
|
Yes, I have tried it yet. Still the same problem. Me too. I was not sure if this was an issue on my personal end, or if it was a universal issue. I just did my first depo into my faucet, and in MW it shows as recieved and credited...but on my faucet the balance reads N/A and if I claim coin it says fail to send. Will this clear up by itself...or is there something we will have to code into our faucet to make it work and show up? Thanks Actually we need to Tell MW admin to include our IPs into Trusted List in Cloudflare, after then our APIs will work like before. Cloudflare blocked direct access to some IPs. in https://www.cloudflare.com/threat-control
|
|
|
|
Superhitech
Legendary
Offline
Activity: 1064
Merit: 1000
|
|
November 04, 2014, 04:01:01 PM |
|
Has the faucet balance issue solved yet? Are people still using it as normal? Is it only some people who have the problem?
|
|
|
|
sevenz
Newbie
Offline
Activity: 42
Merit: 0
|
|
November 04, 2014, 04:05:04 PM |
|
I don't have cloudflare, i have godaddy hosting.
|
|
|
|
|