dskvr / -Coin

+Coin is a web interface in PHP for Bitcoin based daemons released under the public domain (UNLICENSE)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Preview

(image by xchrix)

What is +Coin?

+Coin is a Web Interface built to run on any PHP web server, it works with any coin based on Bitcoin including Litecoin, Namecoin, and many others - Installation is done by downloading this repo, and placing it on a PHP web server.

(there's a download button on the right to get the .zip, or just clone with git as normal)

WARNING: +Coin does not have its own authentication security system, so I recommend that you secure it with an Apache .htaccess or whatever web server specific security you can use.

Licensing

+Coin is released under UNLICENSE (Public Domain), this allows you to use it, edit and claim it as your own, and even sell it or use it commercially. NOTE: Bootstrap is under the Apache v2 license, and the JSON-RPC class used by +Coin is released under the GPL v3. So please be aware of the restrictions if you do want to use +Coin in any way that may break the GPL v3 or Apache v2 licensing.

Configuring

You should be able to simply place your RPC Information for the daemon you are using in config.php (Please don't fill in the MySQL Details, they aren't needed in this version).

$wallets['wallet 1'] = array("user" => "bitcoinrpc",  
        "pass" =>   "password",      
        "host" =>   "hostname",     
        "port" =>   8332,
		"protocol" => "https"
);   

You can obtain the RPC Information from:

Windows

  • %appdata%\Bitcoin\bitcoin.conf
  • %appdata%\Litecoin\litecoin.conf
  • %appdata%\Namecoin\bitcoin.conf

Linux

  • ~/.bitcoin/bitcoin.conf
  • ~/.litecoin/litecoin.conf
  • ~/.namecoin/bitcoin.conf

OSX

  • ~/Library/Application Support/Bitcoin/bitcoin.conf
  • ~/Library/Application Support/Litecoin/litecoin.conf
  • ~/Library/Application Support/Namecoin/bitcoin.conf

Note: Start the RPC server: open Bitcoin-Qt.app --args -server

DONATIONS

Donations are accepted:

  • BTC: 1SoMGuYknDgyYypJPVVKE2teHBN4HDAh3
  • LTC: LSomguyTSwcw3hZKFts4P453sPfn4Y5Jzv

About

+Coin is a web interface in PHP for Bitcoin based daemons released under the public domain (UNLICENSE)

License:The Unlicense