Bitcoin Forum
October 01, 2025, 09:03:25 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Other / Beginners & Help / New bitcoins are mined? on: July 02, 2017, 05:59:55 PM
When the circulating supply increases, we can say "new bitcoins were mined"?


To have it clear, new bitcoins are created or we "discover/found" it?
2  Alternate cryptocurrencies / Mining (Altcoins) / Re: sgminer v5.6.1 not mining on AMD GPU on: June 03, 2017, 04:33:38 AM
I downgraded to 13.12 but I still can't mine, I tried with a lot of versions.
3  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] sgminer v5 - optimized X11/X13/NeoScrypt/Lyra2RE/etc. kernel-switch miner on: June 02, 2017, 06:30:56 PM
I was mining DGB on my pc using sgminer 5.6.1 and everything was fine, but I decided to install Crimson 15.12 driver and now the miner doesn't send any share to pool.
http://imgur.com/a/K86jY

Screenshot
http://imgur.com/a/K86jY

I noticed that WU is 0.000/m all time, It was on 0.05 before.

I'm using an AMD Radeon R7 Series

How I can fix it?
4  Alternate cryptocurrencies / Mining (Altcoins) / sgminer v5.6.1 not mining on AMD GPU on: June 02, 2017, 06:03:05 PM
Hello, I was mining DGB on my pc and everything was fine, but I decided to install Crimson 15.12 driver and now the miner doesn't send any share to pool.
http://imgur.com/a/K86jY

Screenshot
http://imgur.com/a/K86jY

I noticed that WU is 0.000/m all time, It was on 0.05 before.

I'm using an AMD Radeon R7 Series

How I can fix it?
5  Alternate cryptocurrencies / Mining (Altcoins) / sgminer v5.6.1 not mining on AMD GPU on: June 02, 2017, 05:55:18 PM
Hello, I was mining DGB on my pc and everything was fine, but I decided to install Crimson 15.12 driver and now the miner doesn't send any share to pool.


Screenshot
http://imgur.com/a/K86jY

I noticed that WU is 0.000/m all time, It was on 0.05 before.

I'm using an AMD Radeon R7 Series

How I can fix it?





6  Bitcoin / Project Development / Re: JSON RPC API call from webpage on: January 29, 2017, 06:51:58 AM
You need to log the actual error, probably a setting in PHP so you see what the 'internal error' is, not just that one exists. From there it'll make it a lot easier to find what's going wrong.

The error says

Quote
Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.
7  Bitcoin / Project Development / Re: JSON RPC API call from webpage on: January 29, 2017, 06:09:23 AM
have you unblock ip or port address?

I have opened my port.

I tested it on http://www.whatsmyip.org/port-scanner/

8  Bitcoin / Project Development / JSON RPC API call from webpage on: January 28, 2017, 05:54:46 AM
Hello, I want to make API calls to my Bitcoin Core wallet from my webpage but when I try to connect it gives me Internal Server Error

I'm using easybitcoin.php JSON from https://github.com/aceat64/EasyBitcoin-PHP

I'm trying with this JSON RPC call:

Code:
<?php
require_once(
'easybitcoin.php');
        
$bitcoin = new Bitcoin('myusername','mypassword','myip','8332');
        
$bitcoin->getinfo();
?>


My bitcoin.conf file has:

Code:
listen=1
maxconnections=15
server=1
daemon=1
rpcuser=myusername
rpcpassword=mypassword
rpcclienttimeout=60
rpcport=8332
rpcallowip=0.0.0.0/0 (Before I put my IP address here but it didn't solve too)

When I use bitcoin-cli.exe client to send commands to my Bitcoin Core server via 127.0.0.1 (localhost) it works perfectly.

What I'm doing wrong?
9  Bitcoin / Bitcoin Discussion / Re: Who is Satoshi? Why did he hide his identity? on: January 24, 2017, 08:48:19 AM
If Satoshi is just one person I'm not surprised that he doesn't want to reveal his identity. Besides some fame and glory this would probably give him a lot of troubles. So, we will probably never know his true identity and he will enjoy the fortune and fruits of his work in secrecy. Good for him.

By being one of the first people to think about a crypto-currency concept it doesn't mean he will make a fortune with that.

It's like if we will call China as a "paper potency" only because they invented the paper.

Satoshi Nakamoto are all the Bitcoin developers. But if you want names Dorian Nakamoto and Hal Finney are the possible ones.

If he reveals his identity he would be the Tesla of the 21st Century (Government would be against him).
10  Bitcoin / Project Development / Re: [OpenSource | Github] Cryptocurrency ponzi script on: January 24, 2017, 07:18:25 AM
how can I setup and where can i found this cryptocoin daemon?

I don't know how can I do it:
Download your cryptocoin daemon, setup JSON RPC values in your config and add:
txindex = 1
Run your daemon with -reindex and -server arguments

it must be on serwer together with this scrpit??
any help ?Smiley

txindex = 1 is literaly a config found in your bitcoin.conf (by default it's not added and you have to add it)

Quote
By default, Bitcoin Core builds a database containing only the transactions related to the user’s wallet. If you want to be able to access any transaction with commands like gettransaction, you need to configure Bitcoin Core to build a complete transaction index, which can be achieved with the txindex option. Set txindex=1 in the Bitcoin Core configuration file (usually found in your home directory under .bitcoin/bitcoin.conf). Once you change this parameter, you need to restart bitcoind and wait for it to rebuild the index.

When you add txindex = 1, automatically the next time that you open Bitcoin Core (or the daemon client that you're using) it will ask for a reindex wich will take a lot of time but you will be able to use txindex.
11  Economy / Web Wallets / Re: Blockchain.info RPC JSON API on: January 23, 2017, 07:22:59 AM
Of course, my config.php is fine, sorry I forgot to put the
Code:
);
ending on the post.

Code:
<?php
      $rpc 
= array(
'login' => 'mywalletID',
'password' => 'mypassword',
'ip' => 'rpc.blockchain.info',
'port' => '80'
      
);
?>

I have tried with:

Code:
<?php
  $ip 
gethostbyname('rpc.blockchain.info');

echo 
$ip;

?>

to get the DNS from the rpc.blockchain.info domain, but it doesn't solve it either.

I'm using this jsonRPCClient.php version:
Code:
<?php
/*
COPYRIGHT
Copyright 2007 Sergio Vaccaro <sergio@inservibile.org>
This file is part of JSON-RPC PHP.
JSON-RPC PHP is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
JSON-RPC PHP is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with JSON-RPC PHP; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/
/**
 * The object of this class are generic jsonRPC 1.0 clients
 * http://json-rpc.org/wiki/specification
 *
 * @author sergio <jsonrpcphp@inservibile.org>
 */
class jsonRPCClient {

/**
 * Debug state
 *
 * @var boolean
 */
private $debug;

/**
 * The server URL
 *
 * @var string
 */
private $url;
/**
 * The request id
 *
 * @var integer
 */
private $id;
/**
 * If true, notifications are performed instead of requests
 *
 * @var boolean
 */
private $notification false;

/**
 * Takes the connection parameters
 *
 * @param string $url
 * @param boolean $debug
 */
public function __construct($url,$debug false) {
// server URL
$this->url $url;
// proxy
empty($proxy) ? $this->proxy '' $this->proxy $proxy;
// debug state
empty($debug) ? $this->debug false $this->debug true;
// message id
$this->id 1;
}

/**
 * Sets the notification state of the object. In this state, notifications are performed, instead of requests.
 *
 * @param boolean $notification
 */
public function setRPCNotification($notification) {
empty($notification) ?
$this->notification false
:
$this->notification true;
}

/**
 * Performs a jsonRCP request and gets the results as an array
 *
 * @param string $method
 * @param array $params
 * @return array
 */
public function __call($method,$params) {

// check
if (!is_scalar($method)) {
throw new Exception('Method name has no scalar value');
}

// check
if (is_array($params)) {
// no keys
$params array_values($params);
} else {
throw new Exception('Params must be given as array');
}

// sets notification or request task
if ($this->notification) {
$currentId NULL;
} else {
$currentId $this->id;
}

// prepares the request
$request = array(
'method' => $method,
'params' => $params,
'id' => $currentId
);
$request json_encode($request);
$this->debug && $this->debug.='***** Request *****'."\n".$request."\n".'***** End Of request *****'."\n\n";

// performs the HTTP POST
$opts = array ('http' => array (
'method'  => 'POST',
'header'  => 'Content-type: application/json',
'content' => $request
));
$context  stream_context_create($opts);
if ($fp fopen($this->url'r'false$context)) {
$response '';
while($row fgets($fp)) {
$response.= trim($row)."\n";
}
$this->debug && $this->debug.='***** Server response *****'."\n".$response.'***** End of server response *****'."\n";
$response json_decode($response,true);
} else {
throw new Exception('Unable to connect to '.$this->url);
}

// debug output
if ($this->debug) {
echo nl2br($debug);
}

// final checks and return
if (!$this->notification) {
// check
if ($response['id'] != $currentId) {
throw new Exception('Incorrect response id (request id: '.$currentId.', response id: '.$response['id'].')');
}
if (!is_null($response['error'])) {
throw new Exception('Request error: '.$response['error']);
}

return $response['result'];

} else {
return true;
}
}
}
?>
12  Local / Servicios / Re: Faucet que paga 40 a 70 satoshis cada 5 minutos en ePay.info + 15% en referidos. on: January 23, 2017, 02:10:29 AM
Fijate que no, no me ha cobrado ningún fee en lo absoluto. La recomiendo.
13  Economy / Web Wallets / Blockchain.info RPC JSON API on: January 23, 2017, 02:01:59 AM
When I make a API call to my wallet on Blockchain.info it gives me the error:

Warning:  fopen(): php_network_getaddresses: getaddrinfo failed: No address associated with hostname in /home/u2485/public_html/jsonRPCClient.php on line 132

Unable to connect to http://mywalletID:mypassword@rpc.blockchain.info:80/' in /home/u2485/public_html/jsonRPCClient.php:140


I'm using the jsonRPCClient.php to communicate to bitcoin server.

I have my config.php file where I specify login, pass, ip, port, etc.

Code:
<?php
      $rpc 
= array(
'login' => 'mywalletID',
'password' => 'mypassword',
'ip' => 'rpc.blockchain.info',
'port' => '80'
?>

And here is the file where I'm connecting with blockchain.info

Code:
<?php
include(
'config.php');

require_once 'jsonRPCClient.php';
$client = new jsonRPCClient('http://' $rpc['login'] . ':' $rpc['password'] . '@' $rpc['ip'] . ':' $rpc['port'] . '/') or die('Error: could not connect to RPC server.');
echo 'Done.';
?>

source: http://blockchain.info/es/api/json_rpc_api
14  Economy / Micro Earnings / Re: FreeBitco.in - Win free Bitcoins every hour! on: January 12, 2017, 07:30:05 AM
2nd price


15  Bitcoin / Project Development / Re: Faucet "Cookie" on: January 09, 2017, 09:55:26 AM
I'm using JavaScript.
16  Bitcoin / Project Development / Faucet "Cookie" on: January 08, 2017, 07:40:58 AM
Hello,  I have a faucet and I'm wondering...

What's the way to "save" the addresses from your faucet users?

I mean, every time that they enter to my faucet they have to "write" their addresses, so I want to save them that job.
17  Local / Esquina Libre / Re: quien me dice donde puedo conseguir el scripts antibot v5.50 on: January 07, 2017, 06:57:57 AM
A mi me aparece normal, tal vez es tu navegador.
18  Local / Servicios / Faucet que paga 40 a 70 satoshis cada 5 minutos en ePay.info + 15% en referidos. on: January 07, 2017, 06:47:52 AM
Hola a todos.

Si son de los que utilizan faucets a menudo les paso a dejar la mía.

40 (90%), 50 (9%) y 70 (1%) satoshis cada 5 minutos.

http://freesatoshis.esy.es/

Las transacciones son instantáneas tu micro-monedero http://epay.info/


Saludos.

19  Economy / Economics / Re: Tell me a secret: any way to earn 0.1 BTC per week? on: January 07, 2017, 06:21:05 AM
PTC, Faucets with a lot of referrals, Freelance is a good option too. I don't recommend HYIPs.
20  Economy / Micro Earnings / Re: FAUCET FREESATOSHIS.ESY.ES (Payments through ePay.info) on: January 07, 2017, 04:33:29 AM
Hello I'm glad you like it. Thanks.
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!