• 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!

ModernAAC Problem

Amiroslo

Excellent OT User
Joined
Jul 28, 2009
Messages
6,767
Solutions
5
Reaction score
769
Hello,
When a player tries to create an account, and he press create account, it just loads!
u can try urself here

rep++ for the fixer
 
It's a known bug in the later revs, all you need to do is to remove the javascript code from the create form for accounts. You can confirm that it will fix it simply by disable javascript in your own browser, and it'll work. Since noone maintain ModernAAC (anyone want the job?), there is no patch comming along to address this.

----------

Remove this:

Code:
 onSubmit="createAccount(); return false;"

where do i find this?

onSubmit="createAccount(); return false;"
 
It's not just you! http://paradiseot.hopto.org looks down from here.

ITT:
HTML:
<script>
    function createAccount() {
        $('.loader').show();
        var form = $('#createAccount').serialize();
        $.ajax({
            url: '/index.php/account/create/1',
              type: 'post',
              data: form,
              success: function(data) {
                  $('.errors').html(data);
                  $('.loader').hide();
              }
        });
    }
</script>
 
Last edited:
Back
Top