Bitcoin Forum
May 30, 2024, 12:10:02 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: fix code get a tip  (Read 485 times)
daGr4m (OP)
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
April 24, 2015, 12:13:15 AM
 #1

Guys I was looking for self hosted gateway solution and found this, but isnt working, its dont generating a qr code.
help me to fix and the cronjob too. ill tip anyone who help me.

https://github.com/bensonsamuel/bitcoinweblibraries/tree/master/blockchain

thank you guys
Vortex20000
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500

sucker got hacked and screwed --Toad


View Profile WWW
April 24, 2015, 12:17:38 AM
 #2

1) Brand new account
2) English is horrible.
3) Weird, unheard-of GitHub script
4) Trying to create a gateway solution
5) Almost forgot this... promising to "tip" people.
5b) Maybe he means send them 0.1 mBTC... (0.0001 BTC)

Trustworthiness assessment (do I even have to say what everyone is thinking): 0/infinity

daGr4m (OP)
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
April 24, 2015, 12:27:54 AM
 #3

1) Brand new account
2) English is horrible.
3) Weird, unheard-of GitHub script
4) Trying to create a gateway solution
5) Almost forgot this... promising to "tip" people.
5b) Maybe he means send them 0.1 mBTC... (0.0001 BTC)

Trustworthiness assessment (do I even have to say what everyone is thinking): 0/infinity

1) yes, cause, have rules for brand new accounts cant ask or post for help tipped?
2) sorry, im not english native, have rules for this too?
3) ...
4) eureka!
5) mooonster kill!
5b) have rules for minimun or maximun tips too? hey wheres all this rules?

Vortex, im looking for a coder help not a post critic. But thanks. thanks for make me laught! send me your btc addres for receive a tip.
Vortex20000
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500

sucker got hacked and screwed --Toad


View Profile WWW
April 24, 2015, 12:40:28 AM
 #4

1) Brand new account
2) English is horrible.
3) Weird, unheard-of GitHub script
4) Trying to create a gateway solution
5) Almost forgot this... promising to "tip" people.
5b) Maybe he means send them 0.1 mBTC... (0.0001 BTC)

Trustworthiness assessment (do I even have to say what everyone is thinking): 0/infinity

1) yes, cause, have rules for brand new accounts cant ask or post for help tipped?
2) sorry, im not english native, have rules for this too?
3) ...
4) eureka!
5) mooonster kill!
5b) have rules for minimun or maximun tips too? hey wheres all this rules?

Vortex, im looking for a coder help not a post critic. But thanks. thanks for make me laught! send me your btc addres for receive a tip.
Haha the "eureka" made me laugh too. Sorry if I sounded a bit over-critical. I'm not looking for a tip though.

From what I read of the code, it is not trying to generate a QR code.

Code:
<p>Please pay <b><?php echo number_format($_GET['amount'],8); ?></b> to this address:&nbps;<?php echo $_GET['address']; ?></p>

There is no code that attempts to generate a QR code.

I recommend using this site because it is simple:

https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=$data

where $data is what you want to QR code to link to or open.

Edit: $data would be "bitcoin:$address" where $address is the address you want to use to send funds to. It could also be "bitcoin:$address?amount=$amount", I do believe, where $amount is the amount you want the user to send.

Edit #2: To implement this, just use this code:

Code:
<?php $address $_GET['address'];?>
<p><?php echo "<iframe height=150 width=150 src=\"https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=".urlencode("bitcoin:$address")."\">"?></p>

where $address is the generated BTC address.

daGr4m (OP)
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
April 24, 2015, 12:58:59 AM
 #5

1) Brand new account
2) English is horrible.
3) Weird, unheard-of GitHub script
4) Trying to create a gateway solution
5) Almost forgot this... promising to "tip" people.
5b) Maybe he means send them 0.1 mBTC... (0.0001 BTC)

Trustworthiness assessment (do I even have to say what everyone is thinking): 0/infinity

1) yes, cause, have rules for brand new accounts cant ask or post for help tipped?
2) sorry, im not english native, have rules for this too?
3) ...
4) eureka!
5) mooonster kill!
5b) have rules for minimun or maximun tips too? hey wheres all this rules?

Vortex, im looking for a coder help not a post critic. But thanks. thanks for make me laught! send me your btc addres for receive a tip.
Haha the "eureka" made me laugh too. Sorry if I sounded a bit over-critical. I'm not looking for a tip though.

From what I read of the code, it is not trying to generate a QR code.

Code:
<p>Please pay <b><?php echo number_format($_GET['amount'],8); ?></b> to this address:&nbps;<?php echo $_GET['address']; ?></p>

There is no code that attempts to generate a QR code.

I recommend using this site because it is simple:

https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=$data

where $data is what you want to QR code to link to or open.

Edit: $data would be "bitcoin:$address" where $address is the address you want to use to send funds to. It could also be "bitcoin:$address?amount=$amount", I do believe, where $amount is the amount you want the user to send.

Edit #2: To implement this, just use this code:

Code:
<?php $address $_GET['address'];?>
<p><?php echo "<iframe height=150 width=150 src=\"https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=".urlencode("bitcoin:$address")."\">"?></p>

where $address is the generated BTC address.

hahahahahaha you crazy.

thank you for dont be a dick just a post critic.

if you have a server for test this script, please do it. when you submit it dont generate anything.
ive tested another scripts and this scripts request for api authorization my account in blockchain, but this script dont do it.

Ill change the code and report you.
when it works Ill be glad for tip for this help.

keep in touch!
daGr4m (OP)
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
April 24, 2015, 02:59:16 AM
 #6

1) Brand new account
2) English is horrible.
3) Weird, unheard-of GitHub script
4) Trying to create a gateway solution
5) Almost forgot this... promising to "tip" people.
5b) Maybe he means send them 0.1 mBTC... (0.0001 BTC)

Trustworthiness assessment (do I even have to say what everyone is thinking): 0/infinity

1) yes, cause, have rules for brand new accounts cant ask or post for help tipped?
2) sorry, im not english native, have rules for this too?
3) ...
4) eureka!
5) mooonster kill!
5b) have rules for minimun or maximun tips too? hey wheres all this rules?

Vortex, im looking for a coder help not a post critic. But thanks. thanks for make me laught! send me your btc addres for receive a tip.
Haha the "eureka" made me laugh too. Sorry if I sounded a bit over-critical. I'm not looking for a tip though.

From what I read of the code, it is not trying to generate a QR code.

Code:
<p>Please pay <b><?php echo number_format($_GET['amount'],8); ?></b> to this address:&nbps;<?php echo $_GET['address']; ?></p>

There is no code that attempts to generate a QR code.

I recommend using this site because it is simple:

https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=$data

where $data is what you want to QR code to link to or open.

Edit: $data would be "bitcoin:$address" where $address is the address you want to use to send funds to. It could also be "bitcoin:$address?amount=$amount", I do believe, where $amount is the amount you want the user to send.

Edit #2: To implement this, just use this code:

Code:
<?php $address $_GET['address'];?>
<p><?php echo "<iframe height=150 width=150 src=\"https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=".urlencode("bitcoin:$address")."\">"?></p>

where $address is the generated BTC address.

hahahahahaha you crazy.

thank you for dont be a dick just a post critic.

if you have a server for test this script, please do it. when you submit it dont generate anything.
ive tested another scripts and this scripts request for api authorization my account in blockchain, but this script dont do it.

Ill change the code and report you.
when it works Ill be glad for tip for this help.

keep in touch!

Vortex Ive tried in two diferents servers and localhost too, its not working. dont generate a adress, qrcode, nothing. any sugestion? could you test it please. I dont know if have some difference betwen merchant api and wallet api in this code.

thanks in advanced
Vortex20000
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500

sucker got hacked and screwed --Toad


View Profile WWW
April 24, 2015, 04:08:55 AM
 #7

1) Brand new account
2) English is horrible.
3) Weird, unheard-of GitHub script
4) Trying to create a gateway solution
5) Almost forgot this... promising to "tip" people.
5b) Maybe he means send them 0.1 mBTC... (0.0001 BTC)

Trustworthiness assessment (do I even have to say what everyone is thinking): 0/infinity

1) yes, cause, have rules for brand new accounts cant ask or post for help tipped?
2) sorry, im not english native, have rules for this too?
3) ...
4) eureka!
5) mooonster kill!
5b) have rules for minimun or maximun tips too? hey wheres all this rules?

Vortex, im looking for a coder help not a post critic. But thanks. thanks for make me laught! send me your btc addres for receive a tip.
Haha the "eureka" made me laugh too. Sorry if I sounded a bit over-critical. I'm not looking for a tip though.

From what I read of the code, it is not trying to generate a QR code.

Code:
<p>Please pay <b><?php echo number_format($_GET['amount'],8); ?></b> to this address:&nbps;<?php echo $_GET['address']; ?></p>

There is no code that attempts to generate a QR code.

I recommend using this site because it is simple:

https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=$data

where $data is what you want to QR code to link to or open.

Edit: $data would be "bitcoin:$address" where $address is the address you want to use to send funds to. It could also be "bitcoin:$address?amount=$amount", I do believe, where $amount is the amount you want the user to send.

Edit #2: To implement this, just use this code:

Code:
<?php $address $_GET['address'];?>
<p><?php echo "<iframe height=150 width=150 src=\"https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=".urlencode("bitcoin:$address")."\">"?></p>

where $address is the generated BTC address.

hahahahahaha you crazy.

thank you for dont be a dick just a post critic.

if you have a server for test this script, please do it. when you submit it dont generate anything.
ive tested another scripts and this scripts request for api authorization my account in blockchain, but this script dont do it.

Ill change the code and report you.
when it works Ill be glad for tip for this help.

keep in touch!

Vortex Ive tried in two diferents servers and localhost too, its not working. dont generate a adress, qrcode, nothing. any sugestion? could you test it please. I dont know if have some difference betwen merchant api and wallet api in this code.

thanks in advanced
It's a problem with the script, then. I'm at lunch now but when I get back I'll see what I can do to help.

daGr4m (OP)
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
April 24, 2015, 12:05:02 PM
 #8

1) Brand new account
2) English is horrible.
3) Weird, unheard-of GitHub script
4) Trying to create a gateway solution
5) Almost forgot this... promising to "tip" people.
5b) Maybe he means send them 0.1 mBTC... (0.0001 BTC)

Trustworthiness assessment (do I even have to say what everyone is thinking): 0/infinity

1) yes, cause, have rules for brand new accounts cant ask or post for help tipped?
2) sorry, im not english native, have rules for this too?
3) ...
4) eureka!
5) mooonster kill!
5b) have rules for minimun or maximun tips too? hey wheres all this rules?

Vortex, im looking for a coder help not a post critic. But thanks. thanks for make me laught! send me your btc addres for receive a tip.
Haha the "eureka" made me laugh too. Sorry if I sounded a bit over-critical. I'm not looking for a tip though.

From what I read of the code, it is not trying to generate a QR code.

Code:
<p>Please pay <b><?php echo number_format($_GET['amount'],8); ?></b> to this address:&nbps;<?php echo $_GET['address']; ?></p>

There is no code that attempts to generate a QR code.

I recommend using this site because it is simple:

https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=$data

where $data is what you want to QR code to link to or open.

Edit: $data would be "bitcoin:$address" where $address is the address you want to use to send funds to. It could also be "bitcoin:$address?amount=$amount", I do believe, where $amount is the amount you want the user to send.

Edit #2: To implement this, just use this code:

Code:
<?php $address $_GET['address'];?>
<p><?php echo "<iframe height=150 width=150 src=\"https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=".urlencode("bitcoin:$address")."\">"?></p>

where $address is the generated BTC address.

hahahahahaha you crazy.

thank you for dont be a dick just a post critic.

if you have a server for test this script, please do it. when you submit it dont generate anything.
ive tested another scripts and this scripts request for api authorization my account in blockchain, but this script dont do it.

Ill change the code and report you.
when it works Ill be glad for tip for this help.

keep in touch!

Vortex Ive tried in two diferents servers and localhost too, its not working. dont generate a adress, qrcode, nothing. any sugestion? could you test it please. I dont know if have some difference betwen merchant api and wallet api in this code.

thanks in advanced
It's a problem with the script, then. I'm at lunch now but when I get back I'll see what I can do to help.

ok, ill be waiting.
thanks for the api qr code, its working fine, ill use this for another projects!
chronicsky
Legendary
*
Offline Offline

Activity: 2786
Merit: 1222

Just looking for peace


View Profile WWW
April 24, 2015, 05:43:03 PM
 #9

1) Brand new account
2) English is horrible.
3) Weird, unheard-of GitHub script
4) Trying to create a gateway solution
5) Almost forgot this... promising to "tip" people.
5b) Maybe he means send them 0.1 mBTC... (0.0001 BTC)

Trustworthiness assessment (do I even have to say what everyone is thinking): 0/infinity

1) yes, cause, have rules for brand new accounts cant ask or post for help tipped?
2) sorry, im not english native, have rules for this too?
3) ...
4) eureka!
5) mooonster kill!
5b) have rules for minimun or maximun tips too? hey wheres all this rules?

Vortex, im looking for a coder help not a post critic. But thanks. thanks for make me laught! send me your btc addres for receive a tip.
Haha the "eureka" made me laugh too. Sorry if I sounded a bit over-critical. I'm not looking for a tip though.

From what I read of the code, it is not trying to generate a QR code.

Code:
<p>Please pay <b><?php echo number_format($_GET['amount'],8); ?></b> to this address:&nbps;<?php echo $_GET['address']; ?></p>

There is no code that attempts to generate a QR code.

I recommend using this site because it is simple:

https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=$data

where $data is what you want to QR code to link to or open.

Edit: $data would be "bitcoin:$address" where $address is the address you want to use to send funds to. It could also be "bitcoin:$address?amount=$amount", I do believe, where $amount is the amount you want the user to send.

Edit #2: To implement this, just use this code:

Code:
<?php $address $_GET['address'];?>
<p><?php echo "<iframe height=150 width=150 src=\"https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=".urlencode("bitcoin:$address")."\">"?></p>

where $address is the generated BTC address.

hahahahahaha you crazy.

thank you for dont be a dick just a post critic.

if you have a server for test this script, please do it. when you submit it dont generate anything.
ive tested another scripts and this scripts request for api authorization my account in blockchain, but this script dont do it.

Ill change the code and report you.
when it works Ill be glad for tip for this help.

keep in touch!

Vortex Ive tried in two diferents servers and localhost too, its not working. dont generate a adress, qrcode, nothing. any sugestion? could you test it please. I dont know if have some difference betwen merchant api and wallet api in this code.

thanks in advanced
It's a problem with the script, then. I'm at lunch now but when I get back I'll see what I can do to help.

ok, ill be waiting.
thanks for the api qr code, its working fine, ill use this for another projects!
I don't really know much of this coding stuff but if you're unable to find any solution , you can contact the guy whose github gateway files you're trying , he's busy guy but he might help you out : Benson  Samuel
daGr4m (OP)
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
April 24, 2015, 08:01:18 PM
 #10

1) Brand new account
2) English is horrible.
3) Weird, unheard-of GitHub script
4) Trying to create a gateway solution
5) Almost forgot this... promising to "tip" people.
5b) Maybe he means send them 0.1 mBTC... (0.0001 BTC)

Trustworthiness assessment (do I even have to say what everyone is thinking): 0/infinity

1) yes, cause, have rules for brand new accounts cant ask or post for help tipped?
2) sorry, im not english native, have rules for this too?
3) ...
4) eureka!
5) mooonster kill!
5b) have rules for minimun or maximun tips too? hey wheres all this rules?

Vortex, im looking for a coder help not a post critic. But thanks. thanks for make me laught! send me your btc addres for receive a tip.
Haha the "eureka" made me laugh too. Sorry if I sounded a bit over-critical. I'm not looking for a tip though.

From what I read of the code, it is not trying to generate a QR code.

Code:
<p>Please pay <b><?php echo number_format($_GET['amount'],8); ?></b> to this address:&nbps;<?php echo $_GET['address']; ?></p>

There is no code that attempts to generate a QR code.

I recommend using this site because it is simple:

https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=$data

where $data is what you want to QR code to link to or open.

Edit: $data would be "bitcoin:$address" where $address is the address you want to use to send funds to. It could also be "bitcoin:$address?amount=$amount", I do believe, where $amount is the amount you want the user to send.

Edit #2: To implement this, just use this code:

Code:
<?php $address $_GET['address'];?>
<p><?php echo "<iframe height=150 width=150 src=\"https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=".urlencode("bitcoin:$address")."\">"?></p>

where $address is the generated BTC address.

hahahahahaha you crazy.

thank you for dont be a dick just a post critic.

if you have a server for test this script, please do it. when you submit it dont generate anything.
ive tested another scripts and this scripts request for api authorization my account in blockchain, but this script dont do it.

Ill change the code and report you.
when it works Ill be glad for tip for this help.

keep in touch!

Vortex Ive tried in two diferents servers and localhost too, its not working. dont generate a adress, qrcode, nothing. any sugestion? could you test it please. I dont know if have some difference betwen merchant api and wallet api in this code.

thanks in advanced
It's a problem with the script, then. I'm at lunch now but when I get back I'll see what I can do to help.

ok, ill be waiting.
thanks for the api qr code, its working fine, ill use this for another projects!
I don't really know much of this coding stuff but if you're unable to find any solution , you can contact the guy whose github gateway files you're trying , he's busy guy but he might help you out : Benson  Samuel

Thank you chronicsky, im contacting him right now.
waiting for help from vortex too.
Benson Samuel
Legendary
*
Offline Offline

Activity: 1890
Merit: 1000


Landscaping Bitcoin for India!


View Profile WWW
April 25, 2015, 11:07:24 AM
 #11

Guys I was looking for self hosted gateway solution and found this, but isnt working, its dont generating a qr code.
help me to fix and the cronjob too. ill tip anyone who help me.

https://github.com/bensonsamuel/bitcoinweblibraries/tree/master/blockchain

thank you guys

Hope you are modifying before using! Have never maintained this.
Should have a coinsecure.in api up soon, so most focus is on that at the moment.

Vortex20000
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500

sucker got hacked and screwed --Toad


View Profile WWW
April 26, 2015, 05:10:48 PM
 #12

Hey! Sorry, I ate, walked home, then got on CS:GO completely forgetting this. It's now 1:10AM  few days later and I'm going to sleep Roll Eyes

Pages: [1]
  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!