Search results

  1. X

    Whitelister Ver: 3.0

    yeah because you did it wrong and not how I've told you lol I've said replace $success with isset($success) and you did replace ($success) which is different... so it need to look like this: if (isset($success)) {
  2. X

    Whitelister Ver: 3.0

    that is no error, just a "Notice" :D I guess you have full error reporting enabled so PHP tells you every single notice, warning and error.. anyway you can fix that undefined variable notice with using the PHP function "isset" like tis: replace the "error" $success with isset($success) and the...
  3. X

    Whitelister Ver: 3.0

    what errors? some details maybe? :)
  4. X

    Whitelister Ver: 3.0

    Ok I've tested it again with the original code from github and it works like intendet on my server! I can't help you if you don't show me the error, I enabled all warnings and errors and nothing it just works on my end. Maybe try and add this in the config.php to show all warnings and errors...
  5. X

    Whitelister Ver: 3.0

    I checked there error you had, I gues sit might come from this: $res->fetch_row()[0] I've used that notation many times before, but maybe split it up if that works better: $row = $res->fetch_row(); $name = $row[0]; I was just for my personal use to far ^^
  6. X

    Whitelister Ver: 3.0

    Yeah then just use the latest versions, why not? Ok better stop hijacking this thread for other purposes then! :) Anyway I've tried it with a local mail server first, then you can just use the PHP mail() function but its the crap, worked fine but many mail provider block incoming mails from my...
  7. X

    Whitelister Ver: 3.0

    Anything else not working?, I can't tell you what the minimum required version is, because it is not easy to find out other then checking every function since when it is available, BUT it should work with PHP 5.1.0+ I think. What versions of MySQL and PHP are you running and what are the errors...
  8. X

    Whitelister Ver: 3.0

    I guess you (your hoster?) are running an old version of MySQL, I didn't notice it before because I have the latest one on my machines! But I just looked it up and the "DEFAULT CURRENT_TIMESTAMP" value is only supported since MySQL 5.6.5! You can just change that line to "`created` TIMESTAMP NOT...
  9. X

    Whitelister Ver: 3.0

    Ok I just want to share my DayZ Whitelist Web Interface, you can get the code here: https://github.com/vos/dayzwhitelist See README.md for some help. :) Demo (my actual server): http://brs.8bit.info/whitelist/ (please don't spam me with whitelist requests if you don't like to play there, thanks)
  10. X

    Whitelister Ver: 3.0

    Yeah I didn't thought about putting a code in the GUID column, but I couldn't know what your whitelister would do with that or if it might get buggy so I just used a separate db table and copy the data when the player gets activated! :D It's working great so far, we have like 150 people...
  11. X

    Whitelister Ver: 3.0

    Hey thanks for the whitelister, it is the best I could find for DayZ so keep up the good work. :) I've made a little web interface for it, so new players can register and get whitelisted after they click on an activation link send via email. Works great so far if you want I could release it for...
  12. X

    DayZ Logger - detailed character logs

    Hey guys, I started developing my own DayZ admin tools a few days ago, because I think there are not many good tools for DayZ around and I could not find anything close to what I did so far. So here it goes, I came up with a "simple" logger tool, which connects to your DayZ database and...
  13. X

    Server control

    Sorry for the late anwser, but maybe you or somebody else still wants to know this :D So the easiest way is to blacklist the menu with BattleEye, just add this line to your scripts.txt in the BattleEye folder: 5 "dedicatedServerInterface" So every player will be kicked with "Script Restriction...
Back
Top