Bitcoin Forum
May 14, 2024, 12:00:53 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 [55]
1081  Economy / Micro Earnings / Re: ►Best Bitcoin Faucetlist!◄ SmexyCoin ► Up to 0.001 BTC Per day!◄ on: October 30, 2016, 05:01:30 PM
Hi,

Can you add my faucet in your faucet list. My faucet is http://rosecoins.net

Thanks in advance.
1082  Economy / Micro Earnings / Re: Best bitcoin and dogecoin faucet rotator and sortable list (high payouts) on: October 30, 2016, 04:53:41 PM
Can you please add my faucet to your faucet list. My faucet is http://rosecoins.net

Thanks in advance.
1083  Economy / Micro Earnings / Re: BTC Faucet List on: October 30, 2016, 04:38:28 PM
hi,

 Can you please add my faucet to your faucets list. My faucet is http://rosecoins.net

Thanks in advance.
1084  Economy / Micro Earnings / Re: BitCoin Faucet List & 10,000sat Per Hour Faucet on: October 30, 2016, 10:30:40 AM
Can you please add my faucet to your faucetlist. My faucet is http://rosecoins.net

Thanks in advance.
1085  Economy / Micro Earnings / Re: [b]Can anybody help me by testing my faucet[/b] on: October 29, 2016, 09:07:47 PM
Thankyou all for the kind reply. If possible please visit the faucet http://rosecoins.net once again. I have fixed the issues. If their is anything please let me know.
1086  Economy / Micro Earnings / Re: [b]Can anybody help me by testing my faucet[/b] on: October 28, 2016, 09:43:19 PM
Thankyou for your kind reply
1087  Economy / Micro Earnings / [b]Can anybody help me by testing my faucet[/b] on: October 28, 2016, 09:34:26 PM
Today I just modified my faucet to protect from bots and proxies. I just want to check whether its working . Can anybody claim from my faucet and tell me whether its working. I tried to do it from my computer but its not working may be because of the proxy software.
My faucet is this http://rosecoins.net


Please give me feedback so that i can know whether its working.

 Thankyou.
1088  Economy / Services / New Bitcoin Faucets that pays insteadly to faucetbox on: October 20, 2016, 06:15:47 AM
I just found some new bitcoin faucets that pay hourly. i will take total 5 minutes to check all the links.  payment goes directly to faucet box.

check out these links.

http://roccosbitcoin.faucetfly.com

http://rosebitcoins.faucetfly.com

http://diamond.faucetfly.com

http://kathybitcoins.faucetfly.com

http://silver.faucetfly.com

http://saviobitcoins.faucetfly.com

rosecoins.net



1089  Economy / Micro Earnings / epay faucet installation on: October 13, 2016, 05:52:15 AM
what all things i have to change in epay faucet script to install it?.i have already changed database username, database name , password and host name. Still i am unable to connect to the database.can somebody who installed epay faucet script please tell me what all i have tto modify in the script?
1090  Economy / Services / creating a new faucet -- help on: October 11, 2016, 10:33:54 AM
Can anybody help me in creating a new epay faucet. i am not a programmer. i downloaded the script in the hosting website after creating mysql database. when i open the browser i am getting error. its showing Unable to connect to database. please somebody can help me?
This is the script . please ttell me if i have to do any other changes to this install.php file. thanks in advance

<?php
session_start();
ob_start();
?>
<!DOCTYPE html>
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <meta name="viewport" content="width=device-width">
   <title>Faucet Installer</title>
   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
   <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
   <link href="//cdn.epay.info/css/flipclock.css" rel="stylesheet">
   <link rel="stylesheet" type="text/css" href="templates/style/css/style.css">
   <script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
</head>
<body>
<div class="container" style="padding-top:50px;">



<?php if(!isset($_GET['step'])){ ?>
<div class="panel panel-primary">
  <div class="panel-heading">Faucet Installer</div>
  <div class="panel-body">
   Hi<br>
Thank you for using this installer to begin a your new faucet with <a href="http://epay.info" target="_blank">ePay.info</a> <br>
We aim to improve the quality of this script over time, so remember to check the repository <a href="https://github.com/epayinfo/simple_faucet" target="_blank">here</a> on regular basis to get the last updates.<br>
Begin installing by clicking on the next step.
</div>
<div class="panel-footer">
<a href="?step=2" class="btn btn-success pull-right">Next</a>
<div class="clearfix"></div>
</div>
</div>
<?php }elseif($_GET['step']==2){
if(isset($_POST['dbname'])){

class SystemComponent{
   private $settings;
   function getSetting(){
      $settings['dbhost']=$_POST['dbhost'];
      $settings['dbusername']=$_POST['uname'];
      $settings['dbpassword']=$_POST['pwd'];
      $settings['dbname']=$_POST['dbname'];
      return $settings;
   }
}
require_once "includes/dbconnector.class.php";

$db=new DbConnector;
if($db->check_connection()){
   $dbhost=$_POST['dbhost'];
   $dbusername=$_POST['uname'];
   $dbpassword=$_POST['pwd'];
   $dbname=$_POST['dbname'];
   function generateRandomString($length = 25) {
      $characters = 'abcdefghijklmnopqrstuvwxyz123456789';
      $charactersLength = strlen($characters);
      $randomString = '';
      for ($i = 0; $i < $length; $i++) {
         $randomString .= $characters[rand(0, $charactersLength - 1)];
      }
      return $randomString;
   }
   $_SESSION['info']['admin']=generateRandomString();
   $adminpass=hash('SHA256',$_SESSION['info']['admin']);   
$content = <<<END
<?php
class SystemComponent{
   private \$settings;
   function getSetting(){
      \$settings['dbhost']='$dbhost';
      \$settings['dbusername']='$dbusername';
      \$settings['dbpassword']='$dbpassword';
      \$settings['dbname']='$dbname';
      \$settings['adminpass']='$adminpass';
      return \$settings;
   }
}
END;
   chmod( 'templates_c', 0777 );
   chmod( 'configs/dbinfo.php', 0666 );
   $fp = fopen('configs/dbinfo.php',"w");
   fwrite($fp,$content);
   fclose($fp);
   $sql=fopen('install.sql','r');
   $schema=fread($sql,filesize("install.sql"));
   $queries = explode( ';', $schema );
   $queries = array_filter( $queries );
   array_pop($queries);
   foreach($queries as $q)
      $db->query($q);
     
   fclose($sql);
   header('Location: install.php?step=3');
   die();
}else{
   $_SESSION['error']['db']=true;
   header('Location: install.php?step=2');
   die();
}
}else{
?>

<div class="panel panel-primary">
   <div class="panel-heading">Faucet Installer - Database</div>
<form action="" method="post"> 
 
  <div class="panel-body">
   
   Below you should enter your database connection details. If you’re not sure about these, contact your host.
   
   
   
   
<?php if(isset($_SESSION['error']['db'])){ ?>

<div class="alert alert-danger">
Unable to connect to database.

</div>
<?php unset($_SESSION['error']); } ?>   
   
   
   
   <div class="form-group">
       <label for="dbname">Database Name</label>
       <input class="form-control" name="dbname" type="text" size="25" value="u996812304_qwert." />
       <small>u996812304_qwert</small>
   </div>
   
   
   <div class="form-group">
       <label for="uname">Database Username</label>
       <input class="form-control" name="uname" type="text" size="25" placeholder="u996812304_asdfg." />
       <small>u996812304_asdfg</small>
   </div>
   
   
   
   <div class="form-group">
       <label for="pwd">Database Password</label>
       <input class="form-control" name="pwd" type="text" size="25" placeholder="1234567" />
       <small>1234567</small>
   </div>
   
   
   <div class="form-group">
       <label for="dbhost">Database Host</label>
       <input class="form-control" name="dbhost" type="text" size="25" value="mysql.1freehosting.com." />
       <small>You should be able to get this info from your web host, if <code>mysql.1freehosting.com</code> does not work.</small>
   </div>
   
     
   
   
</div>
<div class="panel-footer">
<button type="submit" class="btn btn-success pull-right">Next</button>
<div class="clearfix"></div>
</div>

</form>

</div>
<?php
}
}elseif($_GET['step']==3){ 

@unlink('install.php');
@unlink('install.sql');

?>


<div class="panel panel-primary">


  <div class="panel-heading">Faucet Installer - Finish</div>
  <div class="panel-body">
   
   Your installation has just been completed.
   
   <br>
   
<center>

  This is your administartion passphare:<br><br>

  <strong><code style="font-size:24px"><?php echo $_SESSION['info']['admin'];?></code></strong>
  <br><br>

  <div class="col-md-4 col-md-push-4">
  <a href="adm/" class="btn btn-success btn-block">Go to Administartion</a>

 
  </div>
 
 
 
 
 
</center>
   <br>

   <div class="clearfix"></div>
 
<strong>Make sure install.php and install.sql are deleted from you host.<br>
Admin passpharse will not be shown again even if you refresh this page. Save it somewhere safe. 
</strong> 
 
     
</div>
</div>



<?php session_destroy(); } ?>



</div>
</body>
</html>
1091  Economy / Micro Earnings / Re: epay faucet on: October 11, 2016, 10:12:34 AM
Thanks i will try my luck there
1092  Economy / Micro Earnings / epay faucet on: October 11, 2016, 07:27:37 AM
Can anybody help me in creating a new epay faucet. i am not a programmer. i downloaded the script in the hosting website after creating mysql database. when i open the browser i am getting error. its showing Unable to connect to database. please somebody can help me?
This is the script . please ttell me if i have to do any other changes to this install.php file. thanks in advance

<?php
session_start();
ob_start();
?>
<!DOCTYPE html>
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <meta name="viewport" content="width=device-width">
   <title>Faucet Installer</title>
   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
   <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
   <link href="//cdn.epay.info/css/flipclock.css" rel="stylesheet">
   <link rel="stylesheet" type="text/css" href="templates/style/css/style.css">
   <script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
</head>
<body>
<div class="container" style="padding-top:50px;">



<?php if(!isset($_GET['step'])){ ?>
<div class="panel panel-primary">
  <div class="panel-heading">Faucet Installer</div>
  <div class="panel-body">
   Hi<br>
Thank you for using this installer to begin a your new faucet with <a href="http://epay.info" target="_blank">ePay.info</a> <br>
We aim to improve the quality of this script over time, so remember to check the repository <a href="https://github.com/epayinfo/simple_faucet" target="_blank">here</a> on regular basis to get the last updates.<br>
Begin installing by clicking on the next step.
</div>
<div class="panel-footer">
<a href="?step=2" class="btn btn-success pull-right">Next</a>
<div class="clearfix"></div>
</div>
</div>
<?php }elseif($_GET['step']==2){
if(isset($_POST['dbname'])){

class SystemComponent{
   private $settings;
   function getSetting(){
      $settings['dbhost']=$_POST['dbhost'];
      $settings['dbusername']=$_POST['uname'];
      $settings['dbpassword']=$_POST['pwd'];
      $settings['dbname']=$_POST['dbname'];
      return $settings;
   }
}
require_once "includes/dbconnector.class.php";

$db=new DbConnector;
if($db->check_connection()){
   $dbhost=$_POST['dbhost'];
   $dbusername=$_POST['uname'];
   $dbpassword=$_POST['pwd'];
   $dbname=$_POST['dbname'];
   function generateRandomString($length = 25) {
      $characters = 'abcdefghijklmnopqrstuvwxyz123456789';
      $charactersLength = strlen($characters);
      $randomString = '';
      for ($i = 0; $i < $length; $i++) {
         $randomString .= $characters[rand(0, $charactersLength - 1)];
      }
      return $randomString;
   }
   $_SESSION['info']['admin']=generateRandomString();
   $adminpass=hash('SHA256',$_SESSION['info']['admin']);   
$content = <<<END
<?php
class SystemComponent{
   private \$settings;
   function getSetting(){
      \$settings['dbhost']='$dbhost';
      \$settings['dbusername']='$dbusername';
      \$settings['dbpassword']='$dbpassword';
      \$settings['dbname']='$dbname';
      \$settings['adminpass']='$adminpass';
      return \$settings;
   }
}
END;
   chmod( 'templates_c', 0777 );
   chmod( 'configs/dbinfo.php', 0666 );
   $fp = fopen('configs/dbinfo.php',"w");
   fwrite($fp,$content);
   fclose($fp);
   $sql=fopen('install.sql','r');
   $schema=fread($sql,filesize("install.sql"));
   $queries = explode( ';', $schema );
   $queries = array_filter( $queries );
   array_pop($queries);
   foreach($queries as $q)
      $db->query($q);
      
   fclose($sql);
   header('Location: install.php?step=3');
   die();
}else{
   $_SESSION['error']['db']=true;
   header('Location: install.php?step=2');
   die();
}
}else{
?>

<div class="panel panel-primary">
   <div class="panel-heading">Faucet Installer - Database</div>
<form action="" method="post"> 
 
  <div class="panel-body">
   
   Below you should enter your database connection details. If you’re not sure about these, contact your host.
   
   
   
   
<?php if(isset($_SESSION['error']['db'])){ ?>

<div class="alert alert-danger">
Unable to connect to database.

</div>
<?php unset($_SESSION['error']); } ?>   
   
   
   
   <div class="form-group">
       <label for="dbname">Database Name</label>
       <input class="form-control" name="dbname" type="text" size="25" value="u996812304_qwert." />
       <small>u996812304_qwert</small>
   </div>
   
   
   <div class="form-group">
       <label for="uname">Database Username</label>
       <input class="form-control" name="uname" type="text" size="25" placeholder="u996812304_asdfg." />
       <small>u996812304_asdfg</small>
   </div>
   
   
   
   <div class="form-group">
       <label for="pwd">Database Password</label>
       <input class="form-control" name="pwd" type="text" size="25" placeholder="1234567" />
       <small>1234567</small>
   </div>
   
   
   <div class="form-group">
       <label for="dbhost">Database Host</label>
       <input class="form-control" name="dbhost" type="text" size="25" value="mysql.1freehosting.com." />
       <small>You should be able to get this info from your web host, if <code>mysql.1freehosting.com</code> does not work.</small>
   </div>
   
     
   
   
</div>
<div class="panel-footer">
<button type="submit" class="btn btn-success pull-right">Next</button>
<div class="clearfix"></div>
</div>

</form>

</div>
<?php
}
}elseif($_GET['step']==3){ 

@unlink('install.php');
@unlink('install.sql');

?>


<div class="panel panel-primary">


  <div class="panel-heading">Faucet Installer - Finish</div>
  <div class="panel-body">
   
   Your installation has just been completed.
   
   <br>
   
<center>

  This is your administartion passphare:<br><br>

  <strong><code style="font-size:24px"><?php echo $_SESSION['info']['admin'];?></code></strong>
  <br><br>

  <div class="col-md-4 col-md-push-4">
  <a href="adm/" class="btn btn-success btn-block">Go to Administartion</a>

 
  </div>
 
 
 
 
 
</center>
   <br>

   <div class="clearfix"></div>
 
<strong>Make sure install.php and install.sql are deleted from you host.<br>
Admin passpharse will not be shown again even if you refresh this page. Save it somewhere safe. 
</strong> 
 
     
</div>
</div>



<?php session_destroy(); } ?>



</div>
</body>
</html>
Pages: « 1 ... 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 [55]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!