• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. slaw

    Account Creation Problem

    Well that depends if you want to use it or not. Did you configure following section in config.php? // mail
  2. slaw

    Account Creation Problem

    What myaac version is that? You can see in common.php Anyway, I think the problem is with mailing system. Did you try to disable it? You can do that by setting in config.local.php: $config['mail_enabled'] = false;
  3. slaw

    [Poland] [7.92] Globera

    Tomorrow or yesterday? ;)
  4. slaw

    MyAAC v1.0

    The script I use already use something like that - database of common passwords and words. https://github.com/bjeavons/zxcvbn-php This is the library I use. Soon I will be able to share the code, as I will add it into MyAAC or plugins (depends on the questionnaire). The limiting of fail login...
  5. slaw

    MyAAC v1.0

    I would be happy if you guys could participate in a questionnaire about the Password Strength plugin. https://docs.google.com/forms/d/e/1FAIpQLSeU3dbkpzM_bKzIcwadTlsHfMyjGaHmpWO79unRjuZj5iVsog/viewform?usp=sharing&ouid=108169567511112234084 Just 2 questions, won't take longer than 1 min!
  6. slaw

    Znote_acc --- cannot create account - blank page --

    ALTER TABLE `players` MODIFY `signature` VARCHAR(5000) NOT NULL DEFAULT '';
  7. slaw

    Znote_acc --- cannot create account - blank page --

    ALTER TABLE `players` MODIFY `comment` VARCHAR(500) NOT NULL DEFAULT '';
  8. slaw

    Znote_acc --- cannot create account - blank page --

    Then set it to 'TFS_03' and check if it works.
  9. slaw

    Znote_acc --- cannot create account - blank page --

    What OTS distro do you use? Seems its not TFS 1.x, so you need to adjust in config.php, the variable: $config['ServerEngine'] Set it to proper version you use.
  10. slaw

    Znote_acc --- cannot create account - blank page --

    Paste same code I told you into (at the beginning) createcharacter.php There is probably same problem with some columns in the players table.
  11. slaw

    Znote_acc --- cannot create account - blank page --

    ALTER TABLE `accounts` MODIFY `vote` INT(11) NOT NULL DEFAULT 0;
  12. slaw

    Znote_acc --- cannot create account - blank page --

    Execute this on your db: ALTER TABLE accounts ADD `creation` int NOT NULL DEFAULT '0';
  13. slaw

    Znote_acc --- cannot create account - blank page --

    Put: ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); At the beginning, just after: <?php Now create account. Do you see any error?
  14. slaw

    Znote_acc --- cannot create account - blank page --

    I don't see also anything about account creation error there. Post the file: register.php
  15. slaw

    Znote_acc --- cannot create account - blank page --

    No - Apache error log Like this:
  16. slaw

    Znote_acc --- cannot create account - blank page --

    Did you check Uniform error logs?
  17. slaw

    Znote_acc --- cannot create account - blank page --

    What operating system and web server is that?
  18. slaw

    ERROR - LARAVEL - MYACC

    Seems it tries to fetch data from table that you don't have in your db. What AAC is that? Can you post a link to github?
  19. slaw

    MyAAC v1.0

    You need first enter: /var/www/html cd /var/www/html
  20. slaw

    MyAAC v1.0

    You can use the command: php aac plugin:install path_to_plugin.zip where path_to_plugin if full path to the plugin zip file, like: /home/ots/myaac-theme-canary-v1.0.zip Other than that - 1) which file did you edited? 2) Did you restart apache/nginx afterwards?
Back
Top