Jump to content

Gerome

Members
  • Posts

    185
  • Joined

  • Last visited

Posts posted by Gerome

  1. On 4/13/2020 at 1:08 PM, Azhul said:

    i already did that and i even duplicate tos.php (that's the rules module) and renamed to donate.php and moved it to donate folder as stated on the url or path indicated on header.php it but it didn't work >.<

    Ok, so you've moved donate.php under donate folder, you should access your custom donate page like this "?module=donate&action=donate"

    in your code..

    <?php echo $this->url('donate', 'donate'); ?>

    where the first param (donate) is the name of the module and the 2nd param is the action which is the file name (donate.php).

    • Upvote 1
  2. i think links are done like this:

    <a href="<?php echo $this->url("<action>","<module>",array("<other param>" => "<other value>", ...)) ?> > text </a>
    

     

    Correction. it's

    <a href="<?php echo $this->url("<module>","<action>",array("<other param id>" => "<other value>", ...)) ?> > text </a>
    
  3. What is a IPN URL?

     

    Instant Payment Notification (IPN) is PayPal's message service that sends a notification when a transaction is affected. Once IPN is integrated, sellers can automate their back office so they don’t have to wait for payments to come in to trigger order fulfillment.

    Instant Payment Notification allows you to integrate your PayPal payments with your website's back-end operations, so you get immediate notification and authentication of the PayPal payments you receive.

    How It Works

    When a customer makes a payment to you or a payment is reversed or refunded, PayPal will post a notification to your server at the URL you specified. Included in this notification will be all of your customer’s payment information (e.g.customer name,payment amount) as well as a piece of encrypted code.When your server receives a notification, it will then post the

    information, including the encrypted code, back to a secure PayPal URL.PayPal will authenticate the transaction and send confirmation of its validity back to your server.

     

     

    The URL for PayPal's IPN responses (www.paypal.com for live and www.sandbox.paypal.com for testing)
    

    try to use www.paypal.com for PayPal's IPN URL first...

  4. find

    set #CASHPOINTS, #CASHPOINTS + 50; // Change This item id to what ever you want . item id,amount

    replace it with
    getitem 7179,1;

    *getitem <item id>,<amount>{,<account ID>};

    *getitem "<item name>",<amount>{,<account ID>};

    This command will give a specific amount of specified items to the target

    character. If the character is not online, nothing will happen.

    If <account ID> is not specified, items will be created in the invoking

    character inventory instead.

×
×
  • Create New...