• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Search results

  1. Chris

    How do i add the "Server Offline" option?

    This should do the trick, works locally for me.<?php $server = parse_ini_file('cache/serverstatus'); $online = ((boolean) isset($server['serverStatus_online']) and (int) $server['serverStatus_online'] > 0); if ($online) { $online = $SQL->query('SELECT COUNT(*) FROM players WHERE online >...
  2. Chris

    How do i add the "Server Offline" option?

    If you'd allow me to connect to you through TeamViewer, we can easily sort this out. Otherwise, please check the contents of the file cache/serverstatus and post whatever it contains.
  3. Chris

    How do i add the "Server Offline" option?

    Add a var_dump below the $server line, please, and tell me the result. $server = parse_ini_file('cache/serverstatus'); echo '<pre>', var_dump($server), '</pre>';
  4. Chris

    How do i add the "Server Offline" option?

    I downloaded a version of the AAC because I felt stupid by misreading the topic, lol. From what it looks like, it stores the server information within a cache/serverstatus file. Would you mind trying the following snippet? <?php $server = parse_ini_file('cache/serverstatus'); if...
  5. Chris

    How do i add the "Server Offline" option?

    Edit: Nevermind, I completely misread the topic. I'm not aware if Gesior's AAC has a method for checking if the server is online or not.
  6. Chris

    Solved Cannot add or update a child row: a foreign key constraint fails

    INSERT INTO `players` (`id`, `name`, `world_id`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `lookaddons`, `maglevel`, `mana`, `manamax`, `manaspent`, `soul`, `town_id`, `posx`, `posy`, `posz`...
  7. Chris

    Solved Cannot add or update a child row: a foreign key constraint fails

    Do you have an account with ID of 1? If you have a groups table, do you have a group with ID of 1? If not for either of these, that's probably your issue.
  8. Chris

    Windows tell me what this number means pls 2147483647

    http://www.unixtimestamp.com/index.php
  9. Chris

    [SQL] How can I hide players with 8 level from Highoscres?

    You could try something like public function loadSkill() { $this->setClass('Highscore'); $this->addOrder(new SQL_Order(new SQL_Field('value', 'player_skills'), SQL_Order::DESC)); $this->addOrder(new SQL_Order(new SQL_Field('count', 'player_skills')...
  10. Chris

    Programmer Web Developer searching new duties

    I don't know about that, haha... ;-) but I'd love to reach a point where I can safely announce a first release.
  11. Chris

    Programmer Web Developer searching new duties

    As @Cornex said, the bamboo version of pandaac is no longer under active development. We're focusing on the new version, that we named Apolune. It's still very early in the development stages, so I can't give you a release date, but it's moving forward at a decent rate. Apolune uses Laravel 5.1...
  12. Chris

    pandaac: The Resurrection

    I'm currently hard at work with the new version of pandaac. I will however, ask @Cornex to look into it when he's got a spare minute or two.
  13. Chris

    Webdesigner Hiring a skilled Web Developer

    I think you you may have misunderstood @J.Dre as he never mentioned pandaac being more frequently, or more recently updated compared to other AACs. Merely the fact that it has continious support, which it does. The most recent branch was also updated 12 days ago (granted, it's far from a point...
  14. Chris

    Windows Problem with site (Znote)

    https://github.com/Znote/ZnoteAAC/blob/master/register.php#L35-L39 Temporarily remove whatever name you're trying to use from the page_admin_access configuration value.
  15. Chris

    Windows Problem with site (Znote)

    You need to import the Znote specific MySQL tables, at least the znote_accounts one.
  16. Chris

    :( gesior/znote AAC

    It might not have any real contenders today, but go back in time and it has had plenty. In fact, TFS started out as one of the contenders. I can't speak for @Mark and whoever else contributed to the project, but I'd like to think that the competition brought motivation if nothing else. Having...
  17. Chris

    :( gesior/znote AAC

    Competition is vital for any sort of growth in my eyes. Embrace the options rather than being limited to a sole contender.
  18. Chris

    :( gesior/znote AAC

    Security is a relative concept. What may be secure to one user, might not be secure at all for another. There will always be holes, whether it be SQL injections, XSS, CSRF or whatever else, the important part is that developers do their best to fix these holes upon discovery. I was not trying...
  19. Chris

    :( gesior/znote AAC

    Granted, I don't really have any experience with @Gesior.pl's latest AAC, and thus don't really know whether the query method is a custom method that allows parameters to be passed through as arguments, and then used in a prepared statement or whatever. But regardless, the query method at its...
  20. Chris

    Solved problem on myaccount ZNOTE ACC

    ALTER TABLE players ADD online INT(11) DEFAULT 0;
Back
Top