Bitcoin Forum

Economy => Services => Topic started by: sobitcoin on February 18, 2015, 06:53:48 PM



Title: Searching for someone with WP and MySQL wizardry
Post by: sobitcoin on February 18, 2015, 06:53:48 PM
Hey guys!


I am trying to put a faucet on my Wordpress site.   More specifically, this faucet https://github.com/Kafkamorph/Simple-Open-Source-BitCoin-Faucet

As a complete newb to this, I am lost at the MySQL part.  Looking for someone who can join me in a slack or skype chat and help me through the process as I would like to understand this for the future.

I am working with a very limited budget, let me know your cost in a PM or however you feel fit. I do marketing/design/socialmedia work, willing to offer services in exchange as well.  Thanks for your time looking forward to hearing from some MYSQL gurus!


Title: Re: Searching for someone with WP and MySQL wizardry
Post by: Skyenet on February 18, 2015, 08:46:44 PM
I can help you set it all up for $100. Just hit me a pm.

I am well experienced in PHP, MYSQL, and Linux Server Management.


Title: Re: Searching for someone with WP and MySQL wizardry
Post by: sobitcoin on February 18, 2015, 09:08:42 PM
I can help you set it all up for $100. Just hit me a pm.

I am well experienced in PHP, MYSQL, and Linux Server Management.

PM


Title: Re: Searching for someone with WP and MySQL wizardry
Post by: bitcoinstarter on February 19, 2015, 03:39:13 AM
I can help you set it all up for $100. Just hit me a pm.

I am well experienced in PHP, MYSQL, and Linux Server Management.

PM

Don't agree to any pre-deposit I've been ripped off twice in one week to scammers. Its amazing!


Title: Re: Searching for someone with WP and MySQL wizardry
Post by: sobitcoin on February 19, 2015, 04:27:12 AM
I can help you set it all up for $100. Just hit me a pm.

I am well experienced in PHP, MYSQL, and Linux Server Management.

PM

Don't agree to any pre-deposit I've been ripped off twice in one week to scammers. Its amazing!

Thanks, will be smart.  This place is crawling with them.


Title: Re: Searching for someone with WP and MySQL wizardry
Post by: azguard on February 19, 2015, 10:36:35 AM
Advice use trusted escrow you have then here


Title: Re: Searching for someone with WP and MySQL wizardry
Post by: coinableS on February 19, 2015, 09:56:52 PM
PSA: Don't use that script. Even really basic security steps not taken.

Address input form inserted straight into database using deprecated mysql_query without escaping  ::)


Code:
<form method="post" action="faucet.php">

<label for="email">Bitcoin address:</label>
<input type="text" name="address" id="address" size="32" maxlength="128">
</tr></td>

Code:
$run = mysql_query("INSERT INTO ".MYSQLBTCTABLE."(id, address, ip, date, time) VALUES('','" . $_POST['address'] . "','" . $_SERVER['REMOTE_ADDR'] . "', '".date("Y-m-d")."', '".date("H")."')"); 
if ($run !== true) {


Title: Re: Searching for someone with WP and MySQL wizardry
Post by: sobitcoin on February 19, 2015, 10:34:58 PM
PSA: Don't use that script. Even really basic security steps not taken.

Address input form inserted straight into database using deprecated mysql_query without escaping  ::)


Code:
<form method="post" action="faucet.php">

<label for="email">Bitcoin address:</label>
<input type="text" name="address" id="address" size="32" maxlength="128">
</tr></td>

Code:
$run = mysql_query("INSERT INTO ".MYSQLBTCTABLE."(id, address, ip, date, time) VALUES('','" . $_POST['address'] . "','" . $_SERVER['REMOTE_ADDR'] . "', '".date("Y-m-d")."', '".date("H")."')"); 
if ($run !== true) {



Wow see, I really don't know much of this.  Actually, had a hard time downloading mySQL  :D  Whole new world, i better start reading.


Title: Re: Searching for someone with WP and MySQL wizardry
Post by: mintmoney on February 20, 2015, 12:04:17 AM
Are you hosting this yourself? On a LAMP server? Why not save yourself the security & maintenance and get hosted for cheap?

Free AWS LAMP micro instance for the first year of AWS membership... Might be worth looking in to.

Just my 2 cents :)

-Minty


Title: Re: Searching for someone with WP and MySQL wizardry
Post by: Vortex20000 on February 20, 2015, 03:54:34 AM
PSA: Don't use that script. Even really basic security steps not taken.

Address input form inserted straight into database using deprecated mysql_query without escaping  ::)


Code:
<form method="post" action="faucet.php">

<label for="email">Bitcoin address:</label>
<input type="text" name="address" id="address" size="32" maxlength="128">
</tr></td>

Code:
$run = mysql_query("INSERT INTO ".MYSQLBTCTABLE."(id, address, ip, date, time) VALUES('','" . $_POST['address'] . "','" . $_SERVER['REMOTE_ADDR'] . "', '".date("Y-m-d")."', '".date("H")."')"); 
if ($run !== true) {

Wow, haha.

@OP, use mysqli. If you don't know how to, it's worth the money hiring someone to do it for you.


Title: Re: Searching for someone with WP and MySQL wizardry
Post by: sobitcoin on February 20, 2015, 06:30:22 AM
PSA: Don't use that script. Even really basic security steps not taken.

Address input form inserted straight into database using deprecated mysql_query without escaping  ::)


Code:
<form method="post" action="faucet.php">

<label for="email">Bitcoin address:</label>
<input type="text" name="address" id="address" size="32" maxlength="128">
</tr></td>

Code:
$run = mysql_query("INSERT INTO ".MYSQLBTCTABLE."(id, address, ip, date, time) VALUES('','" . $_POST['address'] . "','" . $_SERVER['REMOTE_ADDR'] . "', '".date("Y-m-d")."', '".date("H")."')"); 
if ($run !== true) {

Wow, haha.

@OP, use mysqli. If you don't know how to, it's worth the money hiring someone to do it for you.



Looking like that's going to be the route, this stuff is way over my head.  Got some learning to do. 


Title: Re: Searching for someone with WP and MySQL wizardry
Post by: Vortex20000 on February 20, 2015, 07:05:26 AM
PSA: Don't use that script. Even really basic security steps not taken.

Address input form inserted straight into database using deprecated mysql_query without escaping  ::)


Code:
<form method="post" action="faucet.php">

<label for="email">Bitcoin address:</label>
<input type="text" name="address" id="address" size="32" maxlength="128">
</tr></td>

Code:
$run = mysql_query("INSERT INTO ".MYSQLBTCTABLE."(id, address, ip, date, time) VALUES('','" . $_POST['address'] . "','" . $_SERVER['REMOTE_ADDR'] . "', '".date("Y-m-d")."', '".date("H")."')"); 
if ($run !== true) {

Wow, haha.

@OP, use mysqli. If you don't know how to, it's worth the money hiring someone to do it for you.



Looking like that's going to be the route, this stuff is way over my head.  Got some learning to do. 
:P I'm free if you need. I mean - time permits me to work on this.

I'll do it for free in exchange for a permanent banner slot :p