Bitcoin Forum
June 23, 2024, 01:36:41 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Searching for someone with WP and MySQL wizardry  (Read 1635 times)
sobitcoin (OP)
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
February 18, 2015, 06:53:48 PM
 #1

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!
Skyenet
Full Member
***
Offline Offline

Activity: 280
Merit: 100



View Profile
February 18, 2015, 08:46:44 PM
 #2

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.
sobitcoin (OP)
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
February 18, 2015, 09:08:42 PM
 #3

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
bitcoinstarter
Hero Member
*****
Offline Offline

Activity: 484
Merit: 500



View Profile
February 19, 2015, 03:39:13 AM
 #4

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!
sobitcoin (OP)
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
February 19, 2015, 04:27:12 AM
 #5

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.
azguard
Legendary
*
Offline Offline

Activity: 1484
Merit: 1001


Crypto-News.net: News from Crypto World


View Profile
February 19, 2015, 10:36:35 AM
 #6

Advice use trusted escrow you have then here



              ▄▄▄██████▄▄▄
          ▄██████████████████▄
       ▄████████████████████████▄
 ▄▄  ▄████████████████████████████▄
███████████████████████████████████▄
 ▀▀█████████████████████████████████▄
   ██████████████████████████████████
   ██████████████████████████████████
   ██████████████████████████████████
   ██████████████████████████████████
   ▀████████████████████████████████▀
    ▀██████████████████████████████▀
     ▀▀██████████████████████████▀
        ▀██████████████████████▀
           ▀▀▀████████████▀▀▀
.
.....
.....
.....
.....
.....
.....





coinableS
Legendary
*
Offline Offline

Activity: 1442
Merit: 1180



View Profile WWW
February 19, 2015, 09:56:52 PM
 #7

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  Roll Eyes


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) {

sobitcoin (OP)
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
February 19, 2015, 10:34:58 PM
 #8

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  Roll Eyes


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  Cheesy  Whole new world, i better start reading.
mintmoney
Newbie
*
Offline Offline

Activity: 22
Merit: 0



View Profile
February 20, 2015, 12:04:17 AM
 #9

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 Smiley

-Minty
Vortex20000
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500

sucker got hacked and screwed --Toad


View Profile WWW
February 20, 2015, 03:54:34 AM
 #10

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  Roll Eyes


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.

sobitcoin (OP)
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
February 20, 2015, 06:30:22 AM
 #11

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  Roll Eyes


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. 
Vortex20000
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500

sucker got hacked and screwed --Toad


View Profile WWW
February 20, 2015, 07:05:26 AM
 #12

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  Roll Eyes


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. 
Tongue 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

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!