forked from mrwhalebones/blipWW
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from mrtremendous/mr-t-ideas
Mr t ideas
- Loading branch information
Showing
6 changed files
with
37 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
settings.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,10 @@ piWallet is a secure opensource online altcoin wallet that works with practicall | |
|
||
Setup: https://github.com/johnathanmartin/piWallet/wiki/Installation | ||
|
||
TODO: Add a step in the wiki explaining to copy settings-example.php into a new file settings.php and then change the values. | ||
|
||
TODO: Add a step in the wiki explaining to delete users.sql. | ||
|
||
Bitcoin Talk: https://bitcointalk.org/index.php?topic=911212 | ||
|
||
Please be cautious when paying others to install piWallet for you, I'd be willing to install for a negotiable fee. Please send me an email. [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,26 +22,7 @@ function satoshitrim($satoshitrim) { | |
return rtrim(rtrim($satoshitrim, "0"), "."); | ||
} | ||
|
||
$server_url = "/"; // ENTER WEBSITE URL ALONG WITH A TRAILING SLASH | ||
|
||
$db_host = "localhost"; | ||
$db_user = "root"; | ||
$db_pass = "password"; | ||
$db_name = "wallet"; | ||
|
||
$rpc_host = "127.0.0.1"; | ||
$rpc_port = "8332"; | ||
$rpc_user = "bitcoinrpc"; | ||
$rpc_pass = "Cp68nBkCAADKkskaKSskaDKdmSYLtLJ"; | ||
|
||
$fullname = "Bitcoin"; //Website Title (Do Not include 'wallet') | ||
$short = "BTC"; //Coin Short (BTC) | ||
$blockchain_url = "http://blockchain.info/tx/"; //Blockchain Url | ||
$support = "[email protected]"; //Your support eMail | ||
$hide_ids = array(1); //Hide account from admin dashboard | ||
$donation_address = "13jy6rHB7HMgQBoYxQQXSM7TFTZZ6CDAAZ"; //Donation Address | ||
|
||
$reserve = "0"; //This fee acts as a reserve. The users balance will display as the balance in the daemon minus the reserve. We don't reccomend setting this more than the Fee the daemon charges. | ||
require('settings.php'); | ||
|
||
if(isSet($_GET['lang'])) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
$server_url = "/"; // ENTER WEBSITE URL ALONG WITH A TRAILING SLASH | ||
|
||
$db_host = "localhost"; | ||
$db_user = "root"; | ||
$db_pass = "password"; | ||
$db_name = "wallet"; | ||
|
||
$rpc_host = "127.0.0.1"; | ||
$rpc_port = "8332"; | ||
$rpc_user = "bitcoinrpc"; | ||
$rpc_pass = "Cp68nBkCAADKkskaKSskaDKdmSYLtLJ"; | ||
|
||
$fullname = "Bitcoin"; //Website Title (Do Not include 'wallet') | ||
$short = "BTC"; //Coin Short (BTC) | ||
$blockchain_tx_url = "http://blockchain.info/tx/"; //Blockchain Url | ||
$support = "[email protected]"; //Your support eMail | ||
$hide_ids = array(1); //Hide account from admin dashboard | ||
$donation_address = "13jy6rHB7HMgQBoYxQQXSM7TFTZZ6CDAAZ"; //Donation Address | ||
|
||
$reserve = "0"; //This fee acts as a reserve. The users balance will display as the balance in the daemon minus the reserve. We don't reccomend setting this more than the Fee the daemon charges. | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters