I threw together a quick PHP interface so I could view recent transactions, addresses, etc. without SSHing in every time. I noticed that nginx had prepared a nice 14GB error log file for me, consisting of this:
Quote
2012/06/09 19:03:44 [error] 4455#0: *22 FastCGI sent in stderr: "PHP Notice: Use of undefined constant paytxfee - assumed 'paytxfee' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on $
PHP Notice: Use of undefined constant balance - assumed 'balance' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 49
PHP Notice: Use of undefined constant blocks - assumed 'blocks' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 49
PHP Notice: Use of undefined constant connections - assumed 'connections' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 49
PHP Notice: Use of undefined constant category - assumed 'category' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 67
PHP Notice: Use of undefined constant time - assumed 'time' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 73
PHP Notice: Use of undefined constant amount - assumed 'amount' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 74
PHP Notice: Use of undefined constant confirmations - assumed 'confirmations' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 75
PHP Notice: Use of undefined constant address - assumed 'address' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 76
PHP Notice: Use of undefined constant txid - assumed 'txid' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 77
PHP Notice: Use of undefined constant category - assumed 'category' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 67
PHP Notice: Use of undefined constant time - assumed 'time' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 73
PHP Notice: Use of undefined constant amount - assumed 'amount' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 74
PHP Notice: Use of undefined constant confirmations - assumed 'confirmations' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 75
PHP Notice: Use of undefined consta
You get the idea. Here's my code, can anybody tell me what is wrong?PHP Notice: Use of undefined constant balance - assumed 'balance' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 49
PHP Notice: Use of undefined constant blocks - assumed 'blocks' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 49
PHP Notice: Use of undefined constant connections - assumed 'connections' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 49
PHP Notice: Use of undefined constant category - assumed 'category' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 67
PHP Notice: Use of undefined constant time - assumed 'time' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 73
PHP Notice: Use of undefined constant amount - assumed 'amount' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 74
PHP Notice: Use of undefined constant confirmations - assumed 'confirmations' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 75
PHP Notice: Use of undefined constant address - assumed 'address' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 76
PHP Notice: Use of undefined constant txid - assumed 'txid' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 77
PHP Notice: Use of undefined constant category - assumed 'category' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 67
PHP Notice: Use of undefined constant time - assumed 'time' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 73
PHP Notice: Use of undefined constant amount - assumed 'amount' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 74
PHP Notice: Use of undefined constant confirmations - assumed 'confirmations' in /srv/www/www.tehzomb.info/public_html/bitcoind/index.php on line 75
PHP Notice: Use of undefined consta
Thanks a million.