makecashnow.biz

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


View Profile Email
« Reply #45 on: October 25, 2008, 07:36:56 AM »
QUOTE (pipsta @ Oct 23 2008, 05:45 PM) <{POST_SNAPBACK}>
Quote
Peterosus thank you for the donation, much appreciated [/b]

No problem mate, glad that I could help

Will send more once my site starts working and I get more money on AlertPay  


I was wondering if there is any possibility of adding something like NeoBux, BuxOut and SandraClicks have, but a little modified:

User would only get all money from clicks that his referrals made yesterday if he himself clicks on XX number of ads that day. If he doesn't click on that XX number of ads that day, he will not receive any money from his referrals clicks that were made on previous day. Number of ads he is required to clicks could be set in Administrator control panel.

This would be much easier for so many members to understand than NeoBux system and it would encourage members to click daily.

Thank you in advanced!
Logged
Jr. Member
**
Posts: 67


View Profile Email
« Reply #46 on: October 25, 2008, 03:23:10 PM »
Im not sure to be honest, but I can try, although myself I do not think many users will join if they HAVE to visit every day, some people do not get time every day...

Does anyone have a link to a script to make instant cashouts possible via AlertPay, because if they do I will implement that, I want to release a BETA on monday too
Logged
Newbie
*
Posts: 18


View Profile Email
« Reply #47 on: October 25, 2008, 03:53:59 PM »
Here is a new final translation of Croatian with all our letters. So please upload this one

http://anonym.to/?http://rapidshare.com/fi...500/hr.rar.html

Kewl, so we can test it finaly. Excellent. Keep a good work. I don't know about the script, but I am still fan of manual approval, so I can se if everything is regular
Logged
Newbie
*
Posts: 13


View Profile Email
« Reply #48 on: October 25, 2008, 05:54:59 PM »
QUOTE (pipsta @ Oct 25 2008, 11:23 PM) <{POST_SNAPBACK}>
Quote
Im not sure to be honest, but I can try, although myself I do not think many users will join if they HAVE to visit every day, some people do not get time every day...[/b]

You do have a point here and I agree. Don't worry about it and thanks for explanation

Looking forward for Beta version on Monday so that we can test it

Keep up the great work and thank you for all your efforts
Logged
Newbie
*
Posts: 8


View Profile Email
« Reply #49 on: October 26, 2008, 05:44:41 AM »
Alertpay Insta payment php
CODE

//===============================================================================
// AlertPay Instant Payment Notification (IPN)
//===============================================================================
// THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
// LIMITED TO THE IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE.
//===============================================================================

// Script: AlertURL.php
// Platform: PHP

// Purpose:
// --------
// The purpose of this code is to help you to understand how to process the Instant Payment Notification
// variables for Subscription Button and integrate it in your PHP site.

// How to Use:
// -----------
// Put this code into the page which you have specified as Alert URL.
// The variables being read from the _POST object in the below code are pre-defined IPN variables and the
// the conditional blocks provide you the logical placeholders to process the IPN variables. It is your responsibility
// to write appropriate code as per your requirements.

// Developer Feedback:
// --------------
// If you have any questions about this script or any suggestions, please email to: devsupport@alertpay.com.


    // Security code variable
    $ap_SecurityCode;

    // Customer info variables
    $ap_CustFirstName;
    $ap_CustLastName;
    $ap_CustAddress;
    $ap_CustCity;
    $ap_CustCountry;
    $ap_CustZip;
    $ap_CustEmailAddress;

    // Common transaction variables
    $ap_ReferenceNumber;
    $ap_Status;
    $ap_PurchaseType;
    $ap_Merchant;
    $ap_ItemName;
    $ap_ItemCode;
    $ap_Description;
    $ap_Quantity;
    $ap_Amount;
    $ap_AdditionalCharges;
    $ap_ShippingCharges;
    $ap_TaxAmount;
    $ap_DiscountAmount;
    $ap_TotalAmount;
    $ap_Currency;
    $ap_Test;

    // Custom fields
    $ap_Apc_1;
    $ap_Apc_2;
    $ap_Apc_3;
    $ap_Apc_4;
    $ap_Apc_5;
    $ap_Apc_6;

    // Subscription variables
    $ap_SubscriptionReferenceNumber;
    $ap_TimeUnit;
    $ap_PeriodLength;
    $ap_PeriodCount;
    $ap_NextRunDate;
    $ap_TrialTimeUnit;
    $ap_TrialPeriodLength;
    $ap_TrialAmount;


    // Initialize variable
    setSecurityCodeVariable();

        if ($ap_SecurityCode != "W2cTGHv8v6ELEflpBndaQg")
        {
            // The Data is NOT sent by AlertPay.
            // Take appropriate action
        }
        else
        {
            if ($ap_Test == "1")
            {
                // Your site is currently being integrated with AlertPay IPN for TESTING PURPOSES
                // ONLY. Don't store any information in your Production database and don't process
                // this transaction as a real order.
            }
            else
            {
                // Initialize variables
                setCustomerInfoVariables();
                setCommonTransactionVariables();

                // Initialize the custom field variables.
                setCustomFields();

                // If the transaction is subscription-based (recurring payment), initialize the
                // Subscription variables too.
                if ($ap_PurchaseType == "Subscription")
                {
                    setSubscriptionVariables();
                }

                if (strlen($ap_ReferenceNumber) == 0 && $ap_TrialAmount != "0")
                {
                    // Invalid reference number. The reference number is invalid because the ap_ReferenceNumber doesn't
                    // contain a value and the ap_TrialAmount is not equal to 0.
                }
                else
                {
                    if ($ap_Status == "Success")
                    {
                        // Transaction is complete. It means that the amount was paid successfully.
                        // Process the order here.

                        // Process non-subscription order.
                        if ($ap_PurchaseType != "Subscription")
                        {
                            // NOTE: The subscription variables are not applicable here. Don't use them.
                        }
                        // Process the subscription order. Use ap_SubscriptionReferenceNumber to uniquely identify
                        // this particular subscription transaction.
                        else
                        {
                            // Check whether the trial is free or not
                            if ($ap_TrialAmount == "0")
                            {
                                // Process the free trial here.
                                // NOTE: The ap_ReferenceNumber is always empty for trial periods and therefore you
                                // should not use it.
                            }
                            else
                            {
                                // The is not a free trial and ap_TrialAmount contains some amount and the
                                // ap_ReferenceNumber contains a valid transaction reference number.
                            }
                        }
                    }
                    else
                    {
                        // Transaction cancelled means seller explicitely cancelled the subscription or AlertPay                                
                        // cancelled or it was cancelled since buyer didnt have enough money after resheduling after two times.
                        // Take Action appropriately
                    }
                }
            }
    }

    // Security code variable
    function setSecurityCodeVariable()
    {
        global $ap_SecurityCode = $_POST['ap_securitycode'];
    }
   
    // Customer info variables
    function setCustomerInfoVariables()
    {
        global $ap_CustFirstName =$_POST['ap_custfirstname'];
        global $ap_CustLastName = $_POST['ap_custlastname'];
        global $ap_CustAddress = $_POST['ap_custaddress'];
        global $ap_CustCity = $_POST['ap_custcity'];
        global $ap_CustCountry = $_POST['ap_custcountry'];
        global $ap_CustZip = $_POST['ap_custzip'];
        global $ap_CustEmailAddress = $_POST['ap_custemailaddress'];
        global $ap_PurchaseType = $_POST['ap_purchasetype'];
        global $ap_Merchant = $_POST['ap_merchant'];
    }
   
    // Common transaction variables
    function setCommonTransactionVariables()
    {
        global $ap_ItemName = $_POST['ap_itemname'];
        global $ap_Description = $_POST['ap_description'];
        global $ap_Quantity = $_POST['ap_quantity'];
        global $ap_Amount = $_POST['ap_amount'];
        global $ap_AdditionalCharges=$_POST['ap_additionalcharges'];
        global $ap_ShippingCharges=$_POST['ap_shippingcharges'];
        global $ap_TaxAmount=$_POST['ap_taxamount'];
        global $ap_DiscountAmount=$_POST['ap_discountamount'];
        global $ap_TotalAmount = $_POST['ap_totalamount'];
        global $ap_Currency = $_POST['ap_currency'];
        global $ap_ReferenceNumber = $_POST['ap_referencenumber'];
        global $ap_Status = $_POST['ap_status'];
        global $ap_ItemCode = $_POST['ap_itemcode'];
        global $ap_Test = $_POST['ap_test'];
    }
   
    // Subscription variables
    function setSubscriptionVariables()
    {
        global $ap_SubscriptionReferenceNumber = $_POST['ap_subscriptionreferencenumber'];
        global $ap_TimeUnit = $_POST['ap_timeunit'];
        global $ap_PeriodLength=$_POST['ap_periodlength'];
        global $ap_PeriodCount=$_POST['ap_periodcount'];
        global $ap_NextRunDate=$_POST['ap_nextrundate'];
        global $ap_TrialTimeUnit=$_POST['ap_trialtimeunit'];
        global $ap_TrialPeriodLength=$_POST['ap_trialperiodlength'];
        global $ap_TrialAmount=$_POST['ap_trialamount'];
    }

    // Custom fields
    function setCustomFields()
    {
        global $ap_Apc_1 = $_POST['apc_1'];
        global $ap_Apc_2 = $_POST['apc_2'];
        global $ap_Apc_3 = $_POST['apc_3'];
        global $ap_Apc_4 = $_POST['apc_4'];
        global $ap_Apc_5 = $_POST['apc_5'];
        global $ap_Apc_6 = $_POST['apc_6'];
    }

?>
--
Logged
Jr. Member
**
Posts: 67


View Profile Email
« Reply #50 on: October 26, 2008, 05:52:54 AM »
Nah I need a script to procss cashouts instantly, not IPN lol...

I can get one but I need $45 for it, and since I am giving the script away for free I cant afford to pay that, so if a few of you would like to donate some towards it that would be great

Pls donate via Alertpay only to xtremeclickerz@hotmail.com or buy something on my site such as referrals etc, that way you get more than just the script back (yes I ACTUALLY pay members unlike most sites lol)
Logged
Newbie
*
Posts: 18


View Profile Email
« Reply #51 on: October 26, 2008, 06:06:28 AM »
I donated 5$ that is all I had on my account at the time (my email is adambasic(at)gmail.com). So I hope this will help. Make a good script now Hope more people will donate, and that this script will be the best. Did u check the final Croatian translation from few post's above

Did you added the paying from main balance for everything?
Logged
Newbie
*
Posts: 13


View Profile Email
« Reply #52 on: October 26, 2008, 12:12:05 PM »
QUOTE (pipsta @ Oct 26 2008, 01:52 PM) <{POST_SNAPBACK}>
Quote
Nah I need a script to procss cashouts instantly, not IPN lol...

I can get one but I need $45 for it, and since I am giving the script away for free I cant afford to pay that, so if a few of you would like to donate some towards it that would be great

Pls donate via Alertpay only to xtremeclickerz@hotmail.com or buy something on my site such as referrals etc, that way you get more than just the script back (yes I ACTUALLY pay members unlike most sites lol)[/b]

I have sent another donation for 20$ (from Peterosus). I am sorry that I couldn't donate more, but that's all I currently have on my AlertPay account (received it today). Will donate more in future

Looking forward for Beta version on Monday and also full version so I could start working on my site

Wish you all the best!

Peterosus
Logged
Jr. Member
**
Posts: 67


View Profile Email
« Reply #53 on: October 26, 2008, 06:41:32 PM »
OK I have $25 towards it now if anyone else could donate please do so (xtremeclickerz@hotmail.com)

After all I am receiving no money from this at all, so I cannot afford to pay hundreds of $ on codes

I am going to continue work as soon as I get the auto payment added, that is one of the most important parts of the new script
Logged
Hero Member
*****
Posts: 501


View Profile WWW Email
« Reply #54 on: October 26, 2008, 08:50:59 PM »
how much u donating for urself, pipsta? wat's the exact site? i hafta know the details.
Logged

I'm not a dude so don't dude me

-ProGenX-Alice-
Newbie
*
Posts: 13


View Profile Email
« Reply #55 on: October 26, 2008, 10:45:16 PM »
QUOTE (pipsta @ Oct 27 2008, 02:41 AM) <{POST_SNAPBACK}>
Quote
OK I have $25 towards it now if anyone else could donate please do so (xtremeclickerz@hotmail.com)

After all I am receiving no money from this at all, so I cannot afford to pay hundreds of $ on codes

I am going to continue work as soon as I get the auto payment added, that is one of the most important parts of the new script [/b]

I have just send donation for another $20 to your account so I hope that you will now have enough to buy that script (I just received payment from one PTC ). Will donate more to this great project in future

Wish you all the best and looking forward to new script

P.S. Since I don't plan to use Instant payment at the moment, but love all other parts of your script (already own bought original YOB V4 script, but really love your modifications and additions for lottery and other things), would it be possible to put download link for the script that is already made (in current state so that we can start using it)?

Thank you in advanced!
Logged
Jr. Member
**
Posts: 67


View Profile Email
« Reply #56 on: October 27, 2008, 08:56:40 AM »
Hi

Thanks again for the donations, I am just awaiting the download link for the script now

I am just making some final adjustments to the script and will post you all a link tonight, as promised

What I am thinking of doing for those who havent donated is charging a small fee for my work, when the final version is released.

Donators will have it for free

-------------------------------------------
I am thinking of going a step further and removing all the purchase pages, and having them all on one page, and using Ajax, so when you click a link, for example your upgrade requests it will scroll down and show the requests without having to reload the page

Guys I am also going to stick to my word and put my link at the top of the page, just a very small link, and encode it so it cant be removed, because I do not think it is fair when people remove the link after all the hard work... I mean, thousands (literally) used my script last time, and every single one removed the link...

I have put $40 to the script for instant payments, and $45 has been downloaded ($85 total), thats another reason I want to charge a small fee, only like $5 or $10... A small price to pay when you think of the money you can make, I mean, My site (http://www.xtremeclickerz.com) has made over $200 in 3 days, I just this second had another upgrade (I am literally approving it as I write this lol)
Logged
Jr. Member
**
Posts: 67


View Profile Email
« Reply #57 on: October 27, 2008, 08:14:18 PM »
Hey guys

As promised here is the first BETA

As far as I can see there is no bugs, but if you find any please let me know

http://anonym.to/?http://www.xtremeclicker...x.v1.1.BETA.rar

Enjoy
Logged
Newbie
*
Posts: 16

lynchnz@live.com
View Profile Email
« Reply #58 on: October 28, 2008, 01:58:25 AM »
Awesome, only you missed a t in http :/
Logged
greatlady
Guest
« Reply #59 on: October 28, 2008, 02:01:45 AM »
the missing 't' fixed
Logged
Pages: 1 2 3 [4] 5 6 ... 12
Print
 
Jump to: