makecashnow.biz

Welcome, Guest. Please login or register.
Did you miss your activation email?
Pages: [1] 2 3 ... 12
Print
Author Topic: [RESOLVED] PHPAdvancedBux v1.1  (Read 8634 times)
Jr. Member
**
Posts: 67


View Profile Email
« on: October 10, 2008, 01:53:36 PM »
OK it seems my last topic was deleted, so I am posting it again...

I am creating a new PTC script like my last one, based on YOB 4...
I have finally started work on the project and am making good progress...

This is going to be my best work yet...

So far all I have done is:

Fixed bug where orders do not get added to the database... Believe it or not this is not actually a bug, but the user has to pay before the order is added to the database, but I have changed it so as the users order gets aded before they pay, it is still processed automatically with IPN...

Added a language system, every bit of text will be editable from the admin panel in language files, this is still only 30% done, and may take a while to complete, because there is a lot of files to edit

What I have planned:

Lucky numbers system, basically the user places money on a certain number, and when you are ready to select a winner the number will be selected at random, this is similar to the lottery system I made in v1.0
Integrated forums for IPB, VB and SMF
Automatic downgrades for premium members when their premium membership expires
Ref replacement system (enabled/disabled from admin panel)
Paid to signup (offers) (enabled/disabled from admin panel)

That is all I can think of for now, I will release the first BETA on 01/11/2008 if I have enough done, maybe earlier

Any requests please post here, mods if you could sticky this topic that would be great...
Logged
Newbie
*
Posts: 2


View Profile Email
« Reply #1 on: October 10, 2008, 05:33:50 PM »
Good job Pista..i'll gve you cash...
Logged
Jr. Member
**
Posts: 67


View Profile Email
« Reply #2 on: October 10, 2008, 01:53:36 PM »
OK it seems my last topic was deleted, so I am posting it again...

I am creating a new PTC script like my last one, based on YOB 4...
I have finally started work on the project and am making good progress...

This is going to be my best work yet...

So far all I have done is:

Fixed bug where orders do not get added to the database... Believe it or not this is not actually a bug, but the user has to pay before the order is added to the database, but I have changed it so as the users order gets aded before they pay, it is still processed automatically with IPN...

Added a language system, every bit of text will be editable from the admin panel in language files, this is still only 30% done, and may take a while to complete, because there is a lot of files to edit

What I have planned:

Lucky numbers system, basically the user places money on a certain number, and when you are ready to select a winner the number will be selected at random, this is similar to the lottery system I made in v1.0
Integrated forums for IPB, VB and SMF
Automatic downgrades for premium members when their premium membership expires
Ref replacement system (enabled/disabled from admin panel)
Paid to signup (offers) (enabled/disabled from admin panel)

That is all I can think of for now, I will release the first BETA on 01/11/2008 if I have enough done, maybe earlier

Any requests please post here, mods if you could sticky this topic that would be great...
Logged
Newbie
*
Posts: 2


View Profile Email
« Reply #3 on: October 10, 2008, 05:33:50 PM »
Good job Pista..i'll gve you cash...
Logged
Newbie
*
Posts: 16

lynchnz@live.com
View Profile Email
« Reply #4 on: October 11, 2008, 04:17:41 AM »
Hey, my only suggestion would be automatic payments.

I can offer hosting, and creating designs (once completed) if you wish.

Plus, here is an idea I just wrote up for a site stats page, may not be perfect still learning php

Result:

http://anonym.to/?http://www.ptcmagic.com/sitestats.php

Source:

Code:
<?php include('header.php'); ?>

<div id="content">
<h2><?php echo SITENAME; ?> Stats</h2>

<?php
$myDb->connect();

$sqryvar="Select sum(amount) from history";
$iqryvar=mysql_query($sqryvar);
$tot1=mysql_result($iqryvar,0,0);
$totals=$tot1;
if ($totals==''){
    $totalpaid='0.00';
} else{
    $totalpaid=$tot1;
}


$sqryvar="Select sum(visits) from users";
$iqryvar=mysql_query($sqryvar);
$tot1=mysql_result($iqryvar,0,0);
$clickserved=$tot1;
mysql_close($con);
?>

<table width="300">

<tr>
<td>Per click - Standard</td>
<td>$<?php
$myDb->connect();
        $sql = "SELECT * FROM config WHERE item='click' and howmany='1'";
        $result = mysql_query($sql);
        $row = mysql_fetch_array($result);
        echo $row["price"];
        mysql_close($con);?></td>
</tr>
<tr>
<td>Per click - Standard Referral</td>
<td>$<?php
$myDb->connect();
        $sql = "SELECT * FROM config WHERE item='referalclick' and howmany='1'";
        $result = mysql_query($sql);        
        $row = mysql_fetch_array($result);
        echo $row["price"];
        mysql_close($con);?></td>
</tr>
<tr>
<td>Per click - Premium</td>
<td>$<?php
$myDb->connect();
        $sql = "SELECT * FROM config WHERE item='premiumclick' and howmany='1'";
        $result = mysql_query($sql);        
        $row = mysql_fetch_array($result);
        echo $row["price"];
        mysql_close($con);?></td>
</tr>
<tr>
<td>Per click - Premium Referral</td>
<td>$<?php
$myDb->connect();
        $sql = "SELECT * FROM config WHERE item='premiumreferalc' and howmany='1'";
        $result = mysql_query($sql);        
        $row = mysql_fetch_array($result);
        echo $row["price"];
        mysql_close($con);?></td>
</tr>
<tr>
<td>Minimum Payout</td>
<td>$<?php
$myDb->connect();
                $sql = "SELECT * FROM config WHERE item='payment' and howmany='1'";
                $result = mysql_query($sql);        
                $row = mysql_fetch_array($result);
                echo $row["price"];
                mysql_close($con);
            ?></td>
</tr>
<tr>
<td>Users Online</td>
<td><?php include("onlinesql.php"); ?></td>
</tr>
<tr>
<td>Total Paid</td>
<td>$<?php echo $totalpaid?></td>
</tr>
<tr>
<td>Total Hits</td>
<td><?=$clickserved?></td>
</tr>


</table>
Logged
Jr. Member
**
Posts: 67


View Profile Email
« Reply #5 on: October 11, 2008, 07:00:51 AM »
I might add a sidebar with the stats to every page
Logged
Jr. Member
**
Posts: 67


View Profile Email
« Reply #6 on: October 11, 2008, 07:02:15 AM »
I was thinking of adding a users online too (displaying the members names)
Logged
Newbie
*
Posts: 16

lynchnz@live.com
View Profile Email
« Reply #7 on: October 11, 2008, 04:17:41 AM »
Hey, my only suggestion would be automatic payments.

I can offer hosting, and creating designs (once completed) if you wish.

Plus, here is an idea I just wrote up for a site stats page, may not be perfect still learning php

Result:

http://anonym.to/?http://www.ptcmagic.com/sitestats.php

Source:

Code:
<?php include('header.php'); ?>

<div id="content">
<h2><?php echo SITENAME; ?> Stats</h2>

<?php
$myDb->connect();

$sqryvar="Select sum(amount) from history";
$iqryvar=mysql_query($sqryvar);
$tot1=mysql_result($iqryvar,0,0);
$totals=$tot1;
if ($totals==''){
    $totalpaid='0.00';
} else{
    $totalpaid=$tot1;
}


$sqryvar="Select sum(visits) from users";
$iqryvar=mysql_query($sqryvar);
$tot1=mysql_result($iqryvar,0,0);
$clickserved=$tot1;
mysql_close($con);
?>

<table width="300">

<tr>
<td>Per click - Standard</td>
<td>$<?php
$myDb->connect();
        $sql = "SELECT * FROM config WHERE item='click' and howmany='1'";
        $result = mysql_query($sql);
        $row = mysql_fetch_array($result);
        echo $row["price"];
        mysql_close($con);?></td>
</tr>
<tr>
<td>Per click - Standard Referral</td>
<td>$<?php
$myDb->connect();
        $sql = "SELECT * FROM config WHERE item='referalclick' and howmany='1'";
        $result = mysql_query($sql);        
        $row = mysql_fetch_array($result);
        echo $row["price"];
        mysql_close($con);?></td>
</tr>
<tr>
<td>Per click - Premium</td>
<td>$<?php
$myDb->connect();
        $sql = "SELECT * FROM config WHERE item='premiumclick' and howmany='1'";
        $result = mysql_query($sql);        
        $row = mysql_fetch_array($result);
        echo $row["price"];
        mysql_close($con);?></td>
</tr>
<tr>
<td>Per click - Premium Referral</td>
<td>$<?php
$myDb->connect();
        $sql = "SELECT * FROM config WHERE item='premiumreferalc' and howmany='1'";
        $result = mysql_query($sql);        
        $row = mysql_fetch_array($result);
        echo $row["price"];
        mysql_close($con);?></td>
</tr>
<tr>
<td>Minimum Payout</td>
<td>$<?php
$myDb->connect();
                $sql = "SELECT * FROM config WHERE item='payment' and howmany='1'";
                $result = mysql_query($sql);        
                $row = mysql_fetch_array($result);
                echo $row["price"];
                mysql_close($con);
            ?></td>
</tr>
<tr>
<td>Users Online</td>
<td><?php include("onlinesql.php"); ?></td>
</tr>
<tr>
<td>Total Paid</td>
<td>$<?php echo $totalpaid?></td>
</tr>
<tr>
<td>Total Hits</td>
<td><?=$clickserved?></td>
</tr>


</table>
Logged
Jr. Member
**
Posts: 67


View Profile Email
« Reply #8 on: October 11, 2008, 07:00:51 AM »
I might add a sidebar with the stats to every page
Logged
Jr. Member
**
Posts: 67


View Profile Email
« Reply #9 on: October 11, 2008, 07:02:15 AM »
I was thinking of adding a users online too (displaying the members names)
Logged
Newbie
*
Posts: 8


View Profile Email
« Reply #10 on: October 11, 2008, 12:00:21 PM »
Pipsta Can You Remove Cookie Exploit Or Hack From The Existing YOB 4 nulled Script n Post It On The Forum Coz Many People Having Problem Regarding This Issue .......

Best Of Luck For Your Currrent Project ....
Logged
Newbie
*
Posts: 8


View Profile Email
« Reply #11 on: October 11, 2008, 12:00:21 PM »
Pipsta Can You Remove Cookie Exploit Or Hack From The Existing YOB 4 nulled Script n Post It On The Forum Coz Many People Having Problem Regarding This Issue .......

Best Of Luck For Your Currrent Project ....
Logged
Newbie
*
Posts: 16

lynchnz@live.com
View Profile Email
« Reply #12 on: October 11, 2008, 03:46:34 PM »
Okay, adding it as a sidebar would probably be better, good idea.
Logged
Newbie
*
Posts: 16

lynchnz@live.com
View Profile Email
« Reply #13 on: October 11, 2008, 03:46:34 PM »
Okay, adding it as a sidebar would probably be better, good idea.
Logged
Newbie
*
Posts: 8


View Profile Email
« Reply #14 on: October 12, 2008, 03:17:05 AM »
Pipsta Must Add A Function Of Renting Refferralss
Logged
Pages: [1] 2 3 ... 12
Print
 
Jump to: