Jump to content
MakeWebGames

AdamHull

Members
  • Posts

    443
  • Joined

  • Last visited

  • Days Won

    20

Everything posted by AdamHull

  1. I personally don't, but what issues are you facing and which ones are you trying?
  2. What the code on line 64 of ipn listener
  3. This doesn't need any extra sql, it should run of the base mccodes with out the need to change anything in the database
  4. What would happen if a mod needs to adjust a file? Can this be done through here? Sorry just re read the description
  5. If your looking for a free domain why not try: https://www.freenom.com/en/index.html?lang=en This will give you a free domain of what you prefer and will be easier then asking people to donate one, yes it does not look professional. But if you are using this to just start out this will be easier. I remember when I started out I used CO.CC many years ago 🙂
  6. What API are you using? I've been looking into the bitpay API
  7. Any context to this?
  8. How do you hash currently? I would never revert back to md5 as this is insecure
  9. AdamHull

    Paypal IPN

    Could it be due to changes in your file system permission it this issue has happened since changing hosting
  10. If you are doing if statements for comparisons you should be using at least == operator if($row['type'] = 'enemy') That is your is statements which is setting the variables to enemy as you are only using single =
  11. My advice would be contact the person who originally made it
  12. Your database seems to be missing tables Table 'crystal3_uots4524.orders' doesn't exist You may also want to secure that section of your website.
  13. Where is the form submitting to for paypal?
  14. Is your cert upto date, if your using one
  15. Isset check to see if a array is set (anything in it) its the same as using !empty($_POST['gender'])
  16. what did you try? add the code and we will be able to help you better
  17. You will need to create a database before hand. I suggest having a look at some YouTube tutorials on how to upload and create a database using cpanel
  18. It's not, he could either be using a shimm or he could be running a old version of php
  19. Your query is malformed "SELECT * FROM `marketaddlogs` AS `mal` JOIN `marketremovelogs` AS `mrl` ON `mal`.`UID` = `mrl`.`UID` WHERE `mal`.`CAT` = 'item' ORDER BY `mal.TIME` DESC LIMIT $st, $app" You on have to use mrl.name You do not need to put mrl infront after the.
  20. The database handler between the 2 engines are different. This will be your error
  21. Adobe Flash has not been supported by Adobe since 31st December 2020, and you are unable to use these games in browser since around then. If you were to want a arcade for you website you would need to update to Html 5 games
  22. Check your apache2 or nginx error logs this will tell you why you have a white page
  23. No its for grpg v2, would need converting
  24. If they are seperate operations and not reliant on each other, i prefer to make them seperate querys. Makes it easy for other devs and easier for debugging
  25. At the beginning of your code add var_dump($_POST); Then share what it show
×
×
  • Create New...