Author

Topic: fix my php - blockchain.info ticker call (Read 1056 times)

ebx
newbie
Activity: 27
Merit: 0
December 17, 2014, 02:35:57 AM
#7
the following code was working to retrieve the usd price, now for some reason its not

    require 'Mysql.php';
    require 'Util.php';
    $file = file_get_contents("http://blockchain.info/ticker");
    $vars = json_decode($file, true);
    $usd = $vars['USD']['15m'];
    $net_usd = number_format((($usd) * (100 - Settings::fee)) / 100, 2);

echo $net_usd returns zero when should be the price. offering 0.1 btc to someone who can fix.

Try changing the url in file_get_contents to be https://

Code:
$file = file_get_contents("https://blockchain.info/ticker");

Blockchain.info recently changed some things around, and maybe you're not getting the file through redirect.

winner, updating to https worked - strange it doesn't redirect.

send me your btc address Smiley

1LyFGwVPJKD1P7fAn686q5Y8yQnHzuF6ZM

Thanks!
legendary
Activity: 2214
Merit: 1057
December 17, 2014, 02:31:05 AM
#6
the following code was working to retrieve the usd price, now for some reason its not

    require 'Mysql.php';
    require 'Util.php';
    $file = file_get_contents("http://blockchain.info/ticker");
    $vars = json_decode($file, true);
    $usd = $vars['USD']['15m'];
    $net_usd = number_format((($usd) * (100 - Settings::fee)) / 100, 2);

echo $net_usd returns zero when should be the price. offering 0.1 btc to someone who can fix.

Try changing the url in file_get_contents to be https://

Code:
$file = file_get_contents("https://blockchain.info/ticker");

Blockchain.info recently changed some things around, and maybe you're not getting the file through redirect.

winner, updating to https worked - strange it doesn't redirect.

send me your btc address Smiley
member
Activity: 97
Merit: 10
December 17, 2014, 02:24:17 AM
#5
the following code was working to retrieve the usd price, now for some reason its not

    require 'Mysql.php';
    require 'Util.php';
    $file = file_get_contents("http://blockchain.info/ticker");
    $vars = json_decode($file, true);
    $usd = $vars['USD']['15m'];
    $net_usd = number_format((($usd) * (100 - Settings::fee)) / 100, 2);

echo $net_usd returns zero when should be the price. offering 0.1 btc to someone who can fix.

You left out where Settings::fee is coming from. If the class Settings isn't found, you'd get a fatal error. The fact that you aren't indicates that it's mis-defined somewhere. You'll need to either post more code, or do digging with that lead yourself. Smiley

Probably in Util.php, but I doubt that would be an area of concern as it seems to have just 'stopped working'.

the following code was working to retrieve the usd price, now for some reason its not

    require 'Mysql.php';
    require 'Util.php';
    $file = file_get_contents("http://blockchain.info/ticker");
    $vars = json_decode($file, true);
    $usd = $vars['USD']['15m'];
    $net_usd = number_format((($usd) * (100 - Settings::fee)) / 100, 2);

echo $net_usd returns zero when should be the price. offering 0.1 btc to someone who can fix.

Try changing the url in file_get_contents to be https://

Code:
$file = file_get_contents("https://blockchain.info/ticker");

Blockchain.info recently changed some things around, and maybe you're not getting the file through redirect.

I was able to use http and it seems that there is no redirects without https. Blockchain is behind cloudflare which could be causing blocking issues (I've had it various times before).
ebx
newbie
Activity: 27
Merit: 0
December 17, 2014, 02:17:47 AM
#4
the following code was working to retrieve the usd price, now for some reason its not

    require 'Mysql.php';
    require 'Util.php';
    $file = file_get_contents("http://blockchain.info/ticker");
    $vars = json_decode($file, true);
    $usd = $vars['USD']['15m'];
    $net_usd = number_format((($usd) * (100 - Settings::fee)) / 100, 2);

echo $net_usd returns zero when should be the price. offering 0.1 btc to someone who can fix.

Try changing the url in file_get_contents to be https://

Code:
$file = file_get_contents("https://blockchain.info/ticker");

Blockchain.info recently changed some things around, and maybe you're not getting the file through redirect.
newbie
Activity: 26
Merit: 0
December 17, 2014, 02:16:57 AM
#3
the following code was working to retrieve the usd price, now for some reason its not

    require 'Mysql.php';
    require 'Util.php';
    $file = file_get_contents("http://blockchain.info/ticker");
    $vars = json_decode($file, true);
    $usd = $vars['USD']['15m'];
    $net_usd = number_format((($usd) * (100 - Settings::fee)) / 100, 2);

echo $net_usd returns zero when should be the price. offering 0.1 btc to someone who can fix.

You left out where Settings::fee is coming from. If the class Settings isn't found, you'd get a fatal error. The fact that you aren't indicates that it's mis-defined somewhere. You'll need to either post more code, or do digging with that lead yourself. Smiley
member
Activity: 97
Merit: 10
December 17, 2014, 02:12:13 AM
#2
That code does work, it seems to be your server with the issue unless Settings::fee is 100 or cannot be found. Try

Code:
require 'Mysql.php';
    require 'Util.php';
    $file = file_get_contents("http://blockchain.info/ticker");
    $vars = json_decode($file, true);
    $usd = $vars['USD']['15m'];
    echo $usd;
    $net_usd = number_format((($usd) * (100 - Settings::fee)) / 100, 2);

See what that returns. If it doesn't return the correct value, then your server is unable to connect to the blockchain ticker.
legendary
Activity: 2214
Merit: 1057
December 17, 2014, 02:01:56 AM
#1
the following code was working to retrieve the usd price, now for some reason its not

    require 'Mysql.php';
    require 'Util.php';
    $file = file_get_contents("http://blockchain.info/ticker");
    $vars = json_decode($file, true);
    $usd = $vars['USD']['15m'];
    $net_usd = number_format((($usd) * (100 - Settings::fee)) / 100, 2);

echo $net_usd returns zero when should be the price. offering 0.1 btc to someone who can fix.
Jump to: