Bitcoin Forum
April 24, 2024, 11:53:46 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2]  All
  Print  
Author Topic: [ANNOUNCE] +Coin Web UI for Bitcoin and its forks.  (Read 6200 times)
ziomik
Legendary
*
Offline Offline

Activity: 1946
Merit: 1009


SELL bitcoinmarket.net | bitcoinitalia.com SELL


View Profile WWW
October 22, 2012, 06:38:26 PM
 #21

There are no updates? Too bad it was a good GUI for bitcoind!

DOMINI IN VENDITA/NOLEGGIO
bitcoinmarket.net | bitcoinitalia.com

Contattatemi pure per info.
---- +++ ----
"Se domani senti due massaie che parlano di bitcoin tra di loro dal macellaio, forse e' il momento di vendere.. se pero' le sentirai fra 10 anni forse staranno solo pagando il conto" GBianchi
---- +++ ----
1714002826
Hero Member
*
Offline Offline

Posts: 1714002826

View Profile Personal Message (Offline)

Ignore
1714002826
Reply with quote  #2

1714002826
Report to moderator
1714002826
Hero Member
*
Offline Offline

Posts: 1714002826

View Profile Personal Message (Offline)

Ignore
1714002826
Reply with quote  #2

1714002826
Report to moderator
"This isn't the kind of software where we can leave so many unresolved bugs that we need a tracker for them." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714002826
Hero Member
*
Offline Offline

Posts: 1714002826

View Profile Personal Message (Offline)

Ignore
1714002826
Reply with quote  #2

1714002826
Report to moderator
HostFat
Staff
Legendary
*
Offline Offline

Activity: 4214
Merit: 1203


I support freedom of choice


View Profile WWW
October 23, 2012, 08:35:35 PM
 #22

I'm also interested on it! Can you upload it somewhere? ( maybe on git )

NON DO ASSISTENZA PRIVATA - http://hostfatmind.com
rini17
Sr. Member
****
Offline Offline

Activity: 340
Merit: 250


GO http://bitcointa.lk !!! My new nick: jurov


View Profile WWW
October 23, 2012, 10:30:00 PM
 #23

I'm also interested on it! Can you upload it somewhere? ( maybe on git )

It is on git: https://github.com/Someguy123/-Coin/branches , but last change is 6 months ago.

hey

i am using your great +coin for a while now and i have modified it a little bit

- added addressbook
- select from which account to send coins from
- getinfo output on startpage
- support for multiple wallets!
- https connection to wallets

is someone interested in this features? Smiley

Does it support encrypted wallets? Without that whole thing isn't viable, I'm not putting unencrypted wallet on live server...
Did you publish your version of code?

CoinBr.com: First online MPEx brokerage launched beta! Easy to use interface and reasonable fees. Charts for MPEx stocks: live.coinbr.com * My Blog *
someguy123 (OP)
Sr. Member
****
Offline Offline

Activity: 336
Merit: 254


CEO of Privex Inc. (www.privex.io)


View Profile WWW
October 30, 2012, 02:23:45 AM
 #24

There are no updates? Too bad it was a good GUI for bitcoind!

For now it works, I haven't had any time to work on it, and nobody has reported any problems so far really.

I'm also interested on it! Can you upload it somewhere? ( maybe on git )

My version is already on github, check the first post. If you mean xchrix's version, he hasn't replied since I've been contacting him for months, so I'm unable to grab the source from him.

Does it support encrypted wallets? Without that whole thing isn't viable, I'm not putting unencrypted wallet on live server...

If I have time, I'll add encryption support to +Coin sometime soon.

BCB
CTG
VIP
Legendary
*
Offline Offline

Activity: 1078
Merit: 1002


BCJ


View Profile
October 30, 2012, 04:27:20 AM
Last edit: October 30, 2012, 04:44:21 AM by BCB
 #25

Hey this is slick.

I've added support to enter wallet passphrase.

Why are you using the GET method for the send form?  This will post your rpc user name and password to the https access_log.  Not a good Idea. The Method every time you call the rpc through a FORM should be "POST".  You should  open up all the file and change all the METHOD from GET to POST then change all of the $_GET to $_POST.

it's pretty simple.

add the following under "amount" input  in index.php

Code:
<input type='password' placeholder='Wallet Passphrase' name='walletpassphrase'><br/>

then in send.php  about line 16 (just after the first "try" open bracket{

Code:
$nmc->walletpassphrase($_POST['walletpassphrase'], 1); 

the number "1" in the second value it the timeout so your wallet is decrypted for one second which in plenty of time to send.


Also if you are accessing your bitcoind from a second box over a public network be sure you bitcoin.conf file includes

Code:
rpcssl=1

otherwise  your rpc username and password will be sent in clear text each time you make a call.


ziomik
Legendary
*
Offline Offline

Activity: 1946
Merit: 1009


SELL bitcoinmarket.net | bitcoinitalia.com SELL


View Profile WWW
October 30, 2012, 07:13:37 AM
 #26

to make a small donation, but your work has any further updates. I do not know if the creator intent to leave it as is or will have to update it over time.
Lacking the creation of btc addresses, address book, maybe the link blockchain when you send btc ... in short, the work is really well done I love it and I would like

DOMINI IN VENDITA/NOLEGGIO
bitcoinmarket.net | bitcoinitalia.com

Contattatemi pure per info.
---- +++ ----
"Se domani senti due massaie che parlano di bitcoin tra di loro dal macellaio, forse e' il momento di vendere.. se pero' le sentirai fra 10 anni forse staranno solo pagando il conto" GBianchi
---- +++ ----
xchrix
Hero Member
*****
Offline Offline

Activity: 905
Merit: 1001



View Profile
November 04, 2012, 10:08:49 PM
 #27

as promised a while ago i am sending you my source code with the changes for addressbook, many wallets and so on..
please integrate it in github. i am only working with subversion..
download: http://www.ltc-charts.com/wallet-admin-clean.zip
i hope its useful for somebody Wink
P_Shep
Legendary
*
Offline Offline

Activity: 1795
Merit: 1198


This is not OK.


View Profile
March 20, 2013, 01:38:06 PM
 #28

I've updated it and submitted a pull request for a bunch of updates.

It's poorly written, probably buggy, and you could possibly loose all your coins, but hey, it works for me Smiley

I highly recommend using is with a secure web server (https://) you have to log into so that the data transfers are encrypted. Otherwise your passphrase for the wallet would be transmitted in plain text.
someguy123 (OP)
Sr. Member
****
Offline Offline

Activity: 336
Merit: 254


CEO of Privex Inc. (www.privex.io)


View Profile WWW
November 09, 2013, 12:09:31 PM
 #29

I've updated it and submitted a pull request for a bunch of updates.

It's poorly written, probably buggy, and you could possibly loose all your coins, but hey, it works for me Smiley

I highly recommend using is with a secure web server (https://) you have to log into so that the data transfers are encrypted. Otherwise your passphrase for the wallet would be transmitted in plain text.

The point was originally to run it on a personal web server, (e.g. namecoin used to only have namecoind on windows, so webui = much better). I don't have too much time myself right now, but it shouldn't be too hard for someone to implement a login system.

ALSO - I donated 0.01 to tip4commit for -Coin. So anyone who adds new features or fixes them will get a small payment ( the small number in the tip4commit image below )


someguy123 (OP)
Sr. Member
****
Offline Offline

Activity: 336
Merit: 254


CEO of Privex Inc. (www.privex.io)


View Profile WWW
October 07, 2014, 12:27:41 PM
 #30

Old thread is old, but +Coin is still alive and working.

Has just been updated to Bootstrap 3 so it looks a little nicer (thanks to X-NicON)


hagie
Hero Member
*****
Offline Offline

Activity: 792
Merit: 501



View Profile
February 15, 2016, 10:54:33 AM
 #31

Hi,

will this Frontend also work for coin daemons of PoS Coins like Hyper or Audiocoin ?

Regards
Pages: « 1 [2]  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!