CodeCanyon

Deposit system

Getting error: “Fatal error: Call to undefined function mysqli_connect()”

this is a problem with your hosting, the php installation in particular.

if you have access to the php.ini configuration file you should search for

extension=php_mysqli.dll

If there is a semi collon (;) in front of this line, remove it. You will have to restart the apache server (not certain if you have to, but it’s always a good idea to do)

read more here: http://stackoverflow.com/questions/2719243/fatal-error-call-to-undefined-function-mysqli-connect

If this doesn’t work I suggest you contact your hosting for further support.

Paypal not updating the user balance

There is one small bug in the code that I will fix as soon as possible. If you open the includes/depositipn.php file and find the following code:

if($testmode === true)
{
    $paypalaction = "https://www.sandbox.paypal.com/cgi-bin/webscr";
}
elseif($paypal == "paypal")
{
    $paypalaction = "https://www.paypal.com/cgi-bin/webscr";
}

Change it to

if($testmode === true)
    {
        $paypalaction = "https://www.sandbox.paypal.com/cgi-bin/webscr";
    }
    else
    {
        $paypalaction = "https://www.paypal.com/cgi-bin/webscr";
    }
by
by
by
by
by