It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
2013-05-12 2:57:03 - PHP Notice: Undefined variable: bitcoin_send_address in /home/*****/public_html/catalog/view/theme/default/template/payment/bitcoin.tpl on line 55
Notice: Error: Table 'opencart2btc.oc_bitcoind_bill' doesn't exist
Error No: 1146
Error in: C:\_websites\YourikBTCOpencartPlugin\admin\model\payment\bitcoind.php line 67
SELECT order_id,total,status,deadline,sent,payment_address,refund_address,IF(deadline,TIMESTAMPDIFF(SECOND,NOW(),deadline),NULL)AS time_left FROM oc_bitcoind_bill LIMIT 0,20 in C:\_websites\YourikBTCOpencartPlugin\system\database\mysql.php on line 54
CREATE TABLE`oc_bitcoind_bill`(`order_id`INT NOT NULL,`total`DECIMAL(16,8)NOT NULL,`status`ENUM('wait', 'timeout','receive','reverse','confirm','complete','cancel')COLLATE ascii_bin NOT NULL DEFAULT'wait',`deadline`DATETIME NOT NULL DEFAULT'0000-00-00 00:00:00',`sen
t`DECIMAL(16,8)NOT NULL DEFAULT 0,`payment_address`CHAR(34)COLLATE ascii_bin NOT NULL,`refund_address`CHAR(34)COLLATE ascii_bin NOT NULL,PRIMARY KEY(`order_id`),UNIQUE KEY(`payment_address`),INDEX(`status`));
Notice: bitcoind: RPC getinfo failed:curl_exec () failed: The requested URL returned error: 401 in C:\_websites\YourikBTCOpencartPlugin\admin\controller\payment\bitcoind.php on line 595Notice: bitcoind: RPC getaddressesbyaccount failed:curl_exec () failed: The requested URL returned error: 401 in C:\_websites\YourikBTCOpencartPlugin\admin\controller\payment\bitcoind.php on line 595
Notice: Error: Table 'opencart2btc.oc_bitcoind_bill' doesn't exist
Error No: 1146
Error in: C:\_websites\YourikBTCOpencartPlugin\admin\model\payment\bitcoind.php line 67
SELECT order_id,total,status,deadline,sent,payment_address,refund_address,IF(deadline,TIMESTAMPDIFF(SECOND,NOW(),deadline),NULL)AS time_left FROM oc_bitcoind_bill LIMIT 0,20 in C:\_websites\YourikBTCOpencartPlugin\system\database\mysql.php on line 54
JSON error: 4
Raw Response
Error 405 (Method Not Allowed)!!1
405. That’s an error.
The request method
POST
is inappropriate for the URL/
. That’s all we know.
CURL Info
array (
'url' => 'http://google.com:80',
'content_type' => 'text/html; charset=UTF-8',
'http_code' => 405,
'header_size' => 226,
'request_size' => 256,
'filetime' => -1,
'ssl_verify_result' => 0,
'redirect_count' => 0,
'total_time' => 0.164868,
'namelookup_time' => 0.134401,
'connect_time' => 0.144327,
'pretransfer_time' => 0.144334,
'size_upload' => 50,
'size_download' => 959,
'speed_download' => 5816,
'speed_upload' => 303,
'download_content_length' => 959,
'upload_content_length' => 0,
'starttransfer_time' => 0.16483,
'redirect_time' => 0,
'certinfo' =>
array (
),
)
curl_exec failed: Failed to connect to 127.0.0.1: Permission denied
CURL Info
array (
'url' => 'http://localhost:8332',
'content_type' => NULL,
'http_code' => 0,
'header_size' => 0,
'request_size' => 0,
'filetime' => -1,
'ssl_verify_result' => 0,
'redirect_count' => 0,
'total_time' => 0,
'namelookup_time' => 0.00074,
'connect_time' => 0,
'pretransfer_time' => 0,
'size_upload' => 0,
'size_download' => 0,
'speed_download' => 0,
'speed_upload' => 0,
'download_content_length' => -1,
'upload_content_length' => -1,
'starttransfer_time' => 0,
'redirect_time' => 0,
'certinfo' =>
array (
),
)
error_reporting (E_ALL);';
ini_set ('display_errors', true);
ini_set ('html_errors', true);
echo '';
?>Bitcoin RPC Test
function rpc ($url, $userpwd) {
$curl = curl_init ($url);
if (! $curl) {
echo 'curl_init failed
';
return;
}
$id = (string) rand ();
if (! curl_setopt ($curl, CURLOPT_RETURNTRANSFER, true)) {
echo 'curl_setopt (CURLOPT_RETURNTRANSFER) failed: '
, htmlspecialchars (curl_error ($curl)), '';
return;
}
if (strlen ($userpwd) > 1)
if (! curl_setopt ($curl, CURLOPT_USERPWD, $userpwd)) {
echo 'curl_setopt (CURLOPT_USERPWD) failed: '
, htmlspecialchars (curl_error ($curl)), '';
return;
}
if (! curl_setopt ($curl, CURLOPT_POSTFIELDS, json_encode (array ('method' => 'getinfo', 'params' => array (), 'id' => $id)))) {
echo 'curl_setopt (CURLOPT_POSTFIELDS) failed: '
, htmlspecialchars (curl_error ($curl)), '';
return;
}
$r = curl_exec ($curl);
if (curl_errno ($curl)) echo 'curl_exec failed: '
, htmlspecialchars (curl_error ($curl)), '';
if (is_string ($r)) {
$d = json_decode ($r, true);
$e = json_last_error ();
if ($e) echo "JSON error:
$e";
if (is_array ($d)) {
if (array_key_exists ('id', $d)) {
if ($d ['id'] != $id) echo 'ID mismatch:
, $id, '
request: '
response: ', $d ['id'], '';
} else echo 'Response lacks ID.
';
if (array_key_exists ('result', $d)) echo 'Result
', htmlspecialchars (var_export ($d ['result'], true)), '
Response lacks result.
';', htmlspecialchars (var_export ($d ['error'], true)), '';
', htmlspecialchars ($r), '';
', htmlspecialchars (var_export (curl_getinfo ($curl), true)), '';
Warning: username contains a semicolon.
';keypool=10000