Jump to content
MakeWebGames

AdamHull

Members
  • Posts

    443
  • Joined

  • Last visited

  • Days Won

    20

Everything posted by AdamHull

  1. The error your seeing is in this line of code: if (!$_POST['title']) { $msg = "<font color = 'red'><b>You must enter a comment to post</b></font>"; } Which means if title is not set show: You must enter a comment to post Trying changing it to if (empty($_POST['title'])) { $msg = "<font color = 'red'><b>You must enter a comment to post</b></font>"; }
  2. Accouridng to this code you are failing on title. The logic is backwards for you checks
  3. Its posted in the gangster legends forum, i presume they are for thay engine
  4. Is there any thing in your error log? Does your receiver email match what is in the code?
  5. I highly doubt this will cause any security issues. @athenadepends on what you want, if you want to display the avatar or something similar you will have to add it to the loop, or if you just want a picture of a jail then add it to where you want it then style it
  6. I would speak to @SwiftGameRhe has more experience with this engine then I do, he will Probably be able to get you sorted
  7. Does it send the event to the admin that they have donated? Is what ever you are trying to credit set as id 53?
  8. The code is definitely out dated, but what issue are you getting except "it doesn't work" Also, this maybr of help https://stackoverflow.com/questions/37589359/ipn-verification-postback-to-https
  9. Do you need people first and second names when you ask for a username? Wondering to see if it's relevant for anything in the game, if its not i would scrap it off your registration
  10. That fike is not found, is this the correct location of this file
  11. With out knowing what engine its on we wouldn't be able to help you, every one has different crons
  12. What engine? What have you tried?
  13. My apologies i will get around to sorting this issue! its been over a year since I have done anything for GL engine!
  14. Im interested to see how you use this monthly for crying 😂
  15. Your issue is probably id 0, try changing it to 1
  16. I found a issue with the mysqli handler and had to write some php inside of this to make it work on anything above php 7, I have it running it on 8 atm
  17. Have you got any screenshots of this engine
  18. Yeh i agree with RC
  19. What? 😂
  20. What engine are these mods from? Whats your time frame for these? What engine are they getting converted to?
  21. Post your issues we might be able to help
  22. Dave's ajax donating mod is good!
  23. Leave your reviews for people you have worked with so people can easily see and grab feedback before they hire someone! Based of experience a fair few years ago I would state @URBANZ🙂
  24. You need to use LEFT JOIN then this should solve your issue SELECT COUNT(JR_refID) AS rankCount, J_id AS id, J_name AS name, J_desc AS `desc` FROM jobs LEFT JOIN jobRanks ON( J_id =JR_refID ) GROUP BY J_id ORDER BY J_id ASC
  25. https://jsonlint.com/ this is a tool that you can use on your mobile to validate your json if you ever find your self stuck in the future
×
×
  • Create New...