Jump to content
MakeWebGames

KyleMassacre

Members
  • Posts

    2,921
  • Joined

  • Last visited

  • Days Won

    48

Everything posted by KyleMassacre

  1. You need to do: $ug['username']
  2. If not MCC then I suggest NWE but I guess you say you don't really like it all that much. I find it very easy to develop on, and core security so far to date is very good. The biggest issue with MCC is its bloat, everything pretty much relies on the large users table and when people develop modules for it they always call every column from the table to just use 1 or 2 but I never really ran across it using a lot of resources except for Dave's ajax chat which a lot of free hosts don't like to see on their server. Other than that it's ok. You can always optimize the files too
  3. If you like something like MCC, then why not get you a copy? If it's the money then your in luck since they offer a free version. There is also the rutheless city engine but to be honest, I haven't seen a decent working version of the script.
  4. That could be why. Your ID column may be set to a unique value. You can try to remove the keys from the table of any are set. I find it easier to have a id column that is a primary unique key that auto increments so it's easier to manage the table. So what you also can do is create a new column like that and remove the primary key from your current column. This way if you need to you can programmatically manage your table. Currently you have limited functionality of it like indexing, and deleting if need be - - - Updated - - - That could be why. Your ID column may be set to a unique value. You can try to remove the keys from the table of any are set. I find it easier to have a id column that is a primary unique key that auto increments so it's easier to manage the table. So what you also can do is create a new column like that and remove the primary key from your current column. This way if you need to you can programmatically manage your table. Currently you have limited functionality of it like indexing, and deleting if need be
  5. Is this mccodes? Because I thought from other posts you made that this was a different engine. I could be wrong so can you please clarify?
  6. Yep. In the log function change one of the $whom's to a $who
  7. Off topic a bit here but the hell doesn't have a GitHub or BitBucket??? C'mon Sim, get out from under that rock haha
  8. Not too bad at all. Some things that bother me due to personal preferences: 1. passing integers as a string when the type is set to int 2. Your little note about setting the post bet to a 0 if empty (goes with item 1). If you set the default of your ternary to 0 guess what? It would be 0 instead of an empty string. But it other than that, just by scrolling through it should be alright
  9. The easiest would be a simple switch //your includes..... $outcome = rand(1,5) //change to whatever and no need to argue rand() vs. mt_rand() on this if(isset($_GET['some']) && $_GET['some'] == 'action') { switch($outcome) { case 1: //do something break; //And repeat default: print "This isn't supposed to happen"; break; } } print "<a href='?some=action'>Go</a>"; Basically similar to what Dave Mac said
  10. I really don't see anything wrong with what [MENTION=50378]Guest[/MENTION] gave you http://mrmarlow.co.uk/image_check.txt that provides more than enough to get you by in this
  11. I am no judge but I am going to close this. I feel confident that the case on this matter is closed, plus I don't want it to get too out of hand. If any parties feel that there is more to say please go to PM, Skype, etc to handle this
  12. Well like I previously said, it's time to issue that DMCA since your hosting copyrighted material and that is a direct violation of yours hosts T&C. So either you can do the noble thing and remove the content yourself or wait to get the notice from your host. But the outcome will be the same.
  13. If all th accusations with this site are true you are liable for it. Just so you know, I moved your last thread pending review but didn't realize that we were possibly waiting for @W3Theory || Peter was supposed to validate the template made since apparently it belongs to another game. So Peter if you would mind letting us know if you made that and if this person owns the rights to it? [MENTION=68435]DonCityGame[/MENTION], If you do in fact own rights to the theme you can by all means issue a DMCA to one.com and let them know of the infraction.
  14. I can see a use for XML but I myself wonder why? XML can do a lot of the same things as json can though I have never messed with SOAP requests and never bothered to even look into them since now a days most people use REST. The only positive I see to using XML is just for flexibility. The negative I see is loading another class to parse it. For novice people parsing XML can be a pain at sometimes. Now ow I don't know what you plan to do with the XML, but if it's for something like data transfers and you are bent on using it, then maybe write your own class to be able to choose either JSON or XML
  15. Well using [noparse] some code here or some code here [/noparse] will help with readability for future reference
  16. Remove the crons from your public_html or www folder. Then in your cron job manager you will just supply the path to the file like /home/username/your_file.php
  17. I think I'm going to go ahead and close this thread. No need to necromance it
  18. Cleaned up. I have no idea how this got so far off topic
  19. Couldn't have said it better myself @OP: Let a mod know if you need this opened back up
  20. First off, wrong section but your welcome, I already moved it. Second, there is a template that you can copy/paste and edit to suit your needs which is in a sticky in this section root. It will give potential suitors an idea of what they are getting into
  21. Why are you shorting him [MENTION=70674]ArchEclipse[/MENTION]? :p Besides that, I feel who cares about how much money someone has as long as they can pronounce it haha and as long as the items in the game reflect how much money people can hold. Back on point, the menu I think looks good, it's not a plain menu and gives people something to look at instead of just text
  22. That actually is a pretty good idea. Pretty much just add an extra column to tables such as messages, chat, and forum that way it can be filtered through and just make the stuff visible to the guy so he thinks everything is just gravy haha
  23. Well I don't read that at all. Just because someone uses temp emails doesn't make them a spammer. Also, if you know of such domains then you can add that to a filter to filter those out of you wish
  24. Open up the error handler file and set the debugging to true then you can see what the critical error is
  25. Good question but in reality how many ways can your server identify people? The offenders IP address is probably the easiest way but like you said there are proxies and banning all the IPs and proxies can be very daunting and some people may have to access your site via proxy servers so you can lose some customers by doing that. Another way but is a similar situation as I mentioned above is geolocation. I have never really messed with geolocations and block like a couple square miles/Km, but I assume it's also probably based on IP, in which they can hop on a proxy, hide their ass, or go mobile and you will be stuck in the same boat. So so probably the most effective way I can think of off the top of my head is being a complete nuisance to him and ask for an email verification. Because who really wants to set up email after email after email when you ban him? Eventually you may make him decide to give up because it's more drama than he wishes to deal with
×
×
  • Create New...