Bitcoin Forum
October 02, 2025, 03:40:07 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Crypti | XCR | Launch August | 100% POS | New Source | Trading has begun! on: August 12, 2014, 05:36:02 PM
PilotofBTC: In https://crypti.me:7040/account its not correctly ?

kelvng105: i use https://crypti.me:7040/account or http://crypti.me:6040/
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Crypti | XCR | Launch August | 100% POS | New Source | Trading has begun! on: August 12, 2014, 10:30:53 AM
Hello guy

I have in my account Balance: 3000; unconfirmed: 3000; effective: 3000, i have wait 40 confirmation but always in unconfirmed why plz ?
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Qora | Released 16 May | 100% POS | New Source on: August 03, 2014, 12:56:04 PM
Hello all i have bug with wallet v13 i have this message and wallet dont start

Code:
at a.a.start <unknow source>
at start.main <unknow source>
... 5 mores

if i delete all data what is time for recover plz ?
4  Economy / Service Discussion / Re: How to wait for confirmations blockchain.info API PHP on: July 18, 2014, 06:00:57 PM
Up  Smiley
5  Economy / Service Discussion / How to wait for confirmations blockchain.info API PHP on: July 14, 2014, 01:06:24 AM
Hello everybody

I am use blockchain in my shop for accept bitcoin but i need to wait for 2 block confirmation in php

Now i use a simple copy past in tutorial for test balance

Code:
$cc = @file_get_contents('https://blockchain.info/q/address/'.$address.'/?api_code='.$api_code);
$cc = $cc / 100000000;

if($do['balance'] > $cc) // if balance in blockchain change to 0
{
update
}
else // if deposit
{
                update
        }

Who to use like https://blockchain.info/q/address/'.$address.'/?api_code='.$api_code.'&confirmations=2 ?

Thanks you  Smiley
6  Economy / Service Discussion / Re: Problem with blockchain.info api php on: July 06, 2014, 03:11:27 PM
Hello thanks for your reply

This night is work, and now not working... I dont have other module, i use file get content and cURL with google.com its work

Code:
$url = 'https://blockchain.info/';

function urlExists($url=NULL)
{
if($url == NULL) return false;
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$data = curl_exec($ch);
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if($httpcode>=200 && $httpcode<=303){
return true;
} else {
return false;
}
}

if(urlExists($url))
{
   echo "ok blockchain";
}
else
{
  echo "switch coinbase";
}


@M3 u use api ? U dont have problem with this ? This night all work and this morning not... lol
7  Economy / Service Discussion / Problem with blockchain.info api php on: July 05, 2014, 05:45:22 PM
Hello all

I have problem for generat new deposit address with PHP. In browser is ok

https://blockchain.info/api/receive?method=create&address=1Mt8WDeuLd9s1eyzRZcdFy79m1cPvCR5YC
With this link in my browser its work i have
Code:
{"input_address":"1GaoqyHB9FzKksTxqFs74WXVrvuzsU16XY","fee_percent":0,"destination":"1Mt8WDeuLd9s1eyzRZcdFy79m1cPvCR5YC"}


In php with file_get_contents not working... i have always empty response
Code:
$response = @file_get_contents('https://blockchain.info/api/receive?method=create&address=1Mt8WDeuLd9s1eyzRZcdFy79m1cPvCR5YC');

The last week all work, today no...

With coinbase is ok

Is my code the problem or blockchain ?

Thanks you  Smiley
8  Bitcoin / Development & Technical Discussion / Php and daemon on: February 27, 2014, 08:58:14 PM
Hi all i need to run litecoind and bitcoind with php in localhost (sorry for my little english  Grin)

Iam use this litecoin.conf

Code:
 server=1
daemon=1
rpcuser=litecoinrpc
rpcpassword=8u1EEMnoeBRTZu3ZYbYtNWSEQPp7QUPSW5z
rpcport=8332

And this class https://github.com/aceat64/EasyBitcoin-PHP/blob/master/easybitcoin.php

And in my index i have

Code:
<?php
require_once('easybitcoin.php');
$bitcoin = new Bitcoin('litecoinrpc','8u1EEMnoeBRTZu3ZYbYtNWSEQPp7QUPSW5z','localhost','8332');
$bitcoin->getinfo();
?>

But not work and in my cmd.exe its ok

Code:
c:\Program Files\Litecoin\daemon>litecoind getinfo
{
    "version" : 80601,
    "protocolversion" : 70002,
    "walletversion" : 60000,
    "balance" : 0.00000000,
    "blocks" : 36119,
    "timeoffset" : -1,
    "connections" : 8,
    "proxy" : "",
    "difficulty" : 0.63768610,
    "testnet" : false,
    "keypoololdest" : 1388892634,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "mininput" : 0.00001000,
    "errors" : ""
}

Thanks for all  Smiley
9  Bitcoin / Bitcoin Discussion / Re: Wallet multi coin on: February 26, 2014, 02:09:50 PM
Thanks for reply but cryptsy and cryptorush is just notification system no ? For generat new address and make withdraw in php like blockchain.info its possible ?
10  Bitcoin / Bitcoin Discussion / Wallet multi coin on: February 25, 2014, 12:13:03 PM
Hello everybody,

I need wallet for btc,ltc,doge,... with api like blockchain I seek in google but not found

U have a link please ? Thanks you  Smiley
11  Bitcoin / Development & Technical Discussion / Re: Run deamon in dedicated server ? on: February 24, 2014, 07:44:05 PM
thanks for reply Darth i view for kimsufi, im need to run bitcoind, litecoind, and dogecoin

Not existe multi wallet like blockchain ?
12  Bitcoin / Development & Technical Discussion / Run deamon in dedicated server ? on: February 24, 2014, 02:45:06 PM
Hello all, its possible to run deamon in HOST-32 http://www.ovh.co.uk/dedicated_servers/hosting/ ?

I use wallet coinpayment.net for multi coin but im new in rpc how to use this in php ?

Sorry for my english, thanks
13  Bitcoin / Bitcoin Technical Support / Probleme withdraw blockchain api PHP on: January 25, 2014, 12:50:31 PM
Hello all

I have big probléme with withdraw systeme, for déposit its ok i use this https://blockchain.info/fr/api/blockchain_wallet_api
i'am new in blockchain

Code:
	$montant = $_POST['wiSold'];
$addr = $_POST['wiAddr'];

// BTC TO SATOSHI
$amount = ($montant * 100000000);

// BLOCKCHAIN LOGIN
$guid = "xxxxx";
$main_password = "xxxx";

// TO
$address = $addr;
$note = "Withdraw";
$shared = "false";

// SUBMIT
$op = "https://blockchain.info/fr/merchant/$guid/payment?password=$main_password&to=$address&amount=$amount&shared=$shared";

$op= file_get_contents($op);
$op = json_decode($op);

// OK
if(empty($op->error))
{
$re = mysql_query("SELECT * FROM account WHERE id_account='".$id_playerSession."' ORDER BY id ASC LIMIT 1");
$do = mysql_fetch_array($re);

$sold_last = $do['sold'];
$sold_new = $sold_last - $montant;
$type = "withdraw";
$id_type = "";
$gain = "-".$montant;
$info = $op->tx_hash;

newTransaction(newHashMd5(), $id_playerSession, $sold_last, $sold_new, $type, $id_type, $gain, $info);

// MESSAGE
$messageTxt = "ID: <a href='https://blockchain.info/address/".$op->tx_hash."' target='_blank'>".$op->tx_hash."</a> | ".$op->message;
$messageColor = $messageColorGreen;

// SON
$loadSound = "buy";
}
else // ERROR
{
// MESSAGE
$messageTxt = "Error: ".$op->error;
$messageColor = $messageColorRed;

// SON
$loadSound = "error";
}

But the btc no comme to my wallet  Huh  Its probleme with blockchain or in my code
Thanks you
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!