Pages:
Author

Topic: MiniFaucet Script (a MyFaucet replacement) - page 12. (Read 51971 times)

full member
Activity: 196
Merit: 100
this script need adblock detecter and logo system Smiley
legendary
Activity: 1050
Merit: 1004
000webhost not support php 5.3 Sad my site down Sad

You could buy a Raspberry pi for $25 and host your faucet on it.

Faucet's have a tendency of being added too lists and rotators, after which u will usually get around 10k/20k pageviews a day, i dont think my Pi will handle that..
Altho i might try it cus it's an cool idea  Grin

http://www.btcking.tk/

now it's working thanks all Smiley
but i have only 85,232 satoshis for faucet. Cheesy
looking some sponsors Smiley

I can give direct link in my site...

30 satoshi , 2 times a day thats 60 satoshi a day and a 20k payout, people are not gonna be bothered doing that..

If u want to use lower payout i suggest using Microwallet.

I hosted DevFaucet at one time on a Pi. Had about 20k dispenses/day.
newbie
Activity: 16
Merit: 0
EDITED

Show Users Info and Pending Payments (balance >= $cashout) on Admin Panel (Primitive Way)

templates/admin.php @ line 28
Code:
        
  • Users

  •         
  • Payments

  • templates/admin.php @ line 65
    Code:
            

                

    Users


                

                    
                        
                        
                       
                           
                           
                           
                           
                           
                           
                       
                       
                                                    while ($users fetch_assoc($getUsersData_query)): 
                                
    $userReferrals_query sql_query("SELECT COUNT(*) AS referrals FROM balances WHERE referredby = '".$users['id']."'");
                                
    $referrals fetch_assoc($userReferrals_query); ?>

                               
                                   
                                   
                                   
                                   
                                   
                               
                            endwhile; ?>
                   

                    
    Users
    IDAddressBalanceReferralsReferred by
    echo $users["id"]; ?>echo $users["email"]; ?>echo $users["balance"]; ?>echo $referrals["referrals"]; ?>echo $users["referredby"]; ?>

                

            

            
            

                

    Payments


                

                    
                        
                        
                            
                                
                                
                            
                            while ($usersPayment fetch_assoc($usersPaymentData_query)): ?>
                                

                                    
                                    
                                    
                                    
                                    
                                    
                                
                            endwhile; ?>
                    

                    
    Payments Pending
    Number of addressesecho $paymentAddresses["num_addresses"]; ?>
    ID echo $usersPayment["id"]; ?>Address echo $usersPayment["email"]; ?>Balance echo $usersPayment["balance"]; ?>

                

            

        

    index.php @ line 147
    Code:
    			$sql = "SELECT * FROM balances WHERE email <> 'SERVERBALANCE' ORDER BY balance DESC";
    $getUsersData_query = sql_query($sql);

    $app->view()->setData('getUsersData_query', $getUsersData_query);

    $sql = "SELECT COUNT(*) AS num_addresses FROM balances WHERE email <> 'SERVERBALANCE' AND balance >= '10000'";
    $paymentAddresses_query = sql_query($sql);
    $paymentAddresses = fetch_assoc($paymentAddresses_query);

    $app->view()->setData('paymentAddresses', $paymentAddresses);

    $sql = "SELECT * FROM balances WHERE email <> 'SERVERBALANCE' AND balance >= '10000'";
    $usersPaymentData_query = sql_query($sql);

    $app->view()->setData('usersPaymentData_query', $usersPaymentData_query);

    Still somethings to do... In index.php the $cashout isn't accepted, meanwhile I changed to the actual value.

    EDIT

    templates/faucet @line 35 (?)

    Code:
            

    When timer was set, the button was clickable even with the time counting. $("#claimbtn").attr("disabled", true); will manage disable attribute for the input button.
    full member
    Activity: 168
    Merit: 100
    000webhost not support php 5.3 Sad my site down Sad

    You could buy a Raspberry pi for $25 and host your faucet on it.

    Faucet's have a tendency of being added too lists and rotators, after which u will usually get around 10k/20k pageviews a day, i dont think my Pi will handle that..
    Altho i might try it cus it's an cool idea  Grin

    http://www.btcking.tk/

    now it's working thanks all Smiley
    but i have only 85,232 satoshis for faucet. Cheesy
    looking some sponsors Smiley

    I can give direct link in my site...

    30 satoshi , 2 times a day thats 60 satoshi a day and a 20k payout, people are not gonna be bothered doing that..

    If u want to use lower payout i suggest using Microwallet.
    legendary
    Activity: 1050
    Merit: 1004
    000webhost not support php 5.3 Sad my site down Sad

    You could buy a Raspberry pi for $25 and host your faucet on it.
    legendary
    Activity: 1092
    Merit: 1000
    nahtnam.com
    http://www.btcking.tk/

    now it's working thanks all Smiley
    but i have only 85,232 satoshis for faucet. Cheesy
    looking some sponsors Smiley

    I can give direct link in my site...

    If you offer only 20-30 satoshis then you should be fine for a while.
    full member
    Activity: 196
    Merit: 100
    http://www.btcking.tk/

    now it's working thanks all Smiley
    but i have only 85,232 satoshis for faucet. Cheesy
    looking some sponsors Smiley

    I can give direct link in my site...
    legendary
    Activity: 1092
    Merit: 1000
    nahtnam.com
    000webhost not support php 5.3 Sad my site down Sad

    Thats too bad! Sad Here is a REALLY good one that you can use. http://2freehosting.com/
    full member
    Activity: 196
    Merit: 100
    000webhost not support php 5.3 Sad my site down Sad
    legendary
    Activity: 1092
    Merit: 1000
    nahtnam.com
    i re upload all file to my server but it still same :S

    Unless you show us some errors, we cant really tell you whats wrong. What hosting provider do you guys use?

    hostinghood.com

    http://prntscr.com/2iuuas
    this is my error log page Cheesy nothing.. Cheesy i am looking new host Cheesy free Tongue

    You can buy hosting with bitcoin at http://www.cleverpuffin.com - we're so cheap that we're virtually free.

    $5 isnt that free...

    You can create-your-own hosting account for as little as 0.000459 BTC. Perhaps you missed that....


    I get 2k views per week (my faucet is broken). I use: 206.4 MB total bandwidth

    Before I was getting around 10k views per week

    Plus I have a lot of subdomains. Dont want to hate, just your claim is inaccurate.
    sr. member
    Activity: 434
    Merit: 250
    i re upload all file to my server but it still same :S

    Unless you show us some errors, we cant really tell you whats wrong. What hosting provider do you guys use?

    hostinghood.com

    http://prntscr.com/2iuuas
    this is my error log page Cheesy nothing.. Cheesy i am looking new host Cheesy free Tongue

    You can buy hosting with bitcoin at http://www.cleverpuffin.com - we're so cheap that we're virtually free.

    $5 isnt that free...

    You can create-your-own hosting account for as little as 0.000459 BTC. Perhaps you missed that....
    legendary
    Activity: 1092
    Merit: 1000
    nahtnam.com
    i re upload all file to my server but it still same :S

    Unless you show us some errors, we cant really tell you whats wrong. What hosting provider do you guys use?

    hostinghood.com

    http://prntscr.com/2iuuas
    this is my error log page Cheesy nothing.. Cheesy i am looking new host Cheesy free Tongue

    You can buy hosting with bitcoin at http://www.cleverpuffin.com - we're so cheap that we're virtually free.

    $5 isnt that free...
    sr. member
    Activity: 434
    Merit: 250
    i re upload all file to my server but it still same :S

    Unless you show us some errors, we cant really tell you whats wrong. What hosting provider do you guys use?

    hostinghood.com

    http://prntscr.com/2iuuas
    this is my error log page Cheesy nothing.. Cheesy i am looking new host Cheesy free Tongue

    You can buy hosting with bitcoin at http://www.cleverpuffin.com - we're so cheap that we're virtually free.
    legendary
    Activity: 1092
    Merit: 1000
    nahtnam.com
    i re upload all file to my server but it still same :S

    Unless you show us some errors, we cant really tell you whats wrong. What hosting provider do you guys use?

    hostinghood.com

    http://prntscr.com/2iuuas
    this is my error log page Cheesy nothing.. Cheesy i am looking new host Cheesy free Tongue

    This is the best by far.

    http://www.000webhost.com/
    full member
    Activity: 196
    Merit: 100
    i re upload all file to my server but it still same :S

    Unless you show us some errors, we cant really tell you whats wrong. What hosting provider do you guys use?

    hostinghood.com

    http://prntscr.com/2iuuas
    this is my error log page Cheesy nothing.. Cheesy i am looking new host Cheesy free Tongue
    sr. member
    Activity: 434
    Merit: 250
    you'll probably want to put display_errors("on");
    or ini_set("display_errors","on");
    legendary
    Activity: 1092
    Merit: 1000
    nahtnam.com
    i re upload all file to my server but it still same :S

    Unless you show us some errors, we cant really tell you whats wrong. What hosting provider do you guys use?
    legendary
    Activity: 1092
    Merit: 1000
    nahtnam.com
    Use this software, http://winscp.net/eng/index.php

    All you do is enter your server IP, username & password and you'll be looking at your file structure.

    EWWW use filezilla Cheesy
    full member
    Activity: 196
    Merit: 100
    i re upload all file to my server but it still same :S
    legendary
    Activity: 1050
    Merit: 1004
    Use this software, http://winscp.net/eng/index.php

    All you do is enter your server IP, username & password and you'll be looking at your file structure.
    Pages:
    Jump to: