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

MyAAC v0.7.12

Status
Not open for further replies.
Also @slawkens, do you have any "easy" migration methodologies for users who are using your older revisions of MyAAC? Be nice for a smooth transition. I've made a considerable amount of changes and would hate to copy+paste directory over directory. Especially when the structure of code isn't the easiest to follow. (ie. updating only forum add/hide/move functions)
 
Hello @slawkens !

I am using myaac on my 7.4 server. The server only accepts accounts with numbers, but myaac allows accounts with letters. Would you help me?
 
Hello @slawkens !

I am using myaac on my 7.4 server. The server only accepts accounts with numbers, but myaac allows accounts with letters. Would you help me?

This is not true. MyAAC supports number aswell since version 0.0.4. It detects automatically if it should use number or letters. But both are possible.
 
This is not true. MyAAC supports number aswell since version 0.0.4. It detects automatically if it should use number or letters. But both are possible.


Yes I know! I expressed myself wrong. MyAAC accepts numbers and letters but my server only accepts letters.

I fix my issue in the file acount.create.html.twig

PHP:
<input type="text" name="account" id="account_input" size="30" maxlength="{% if constant('USE_ACCOUNT_NAME') %}30{% else %}10{% endif %}" value="{{ account }}" autofocus/>

to

PHP:
<input type="number" name="account" id="account_input" size="30" maxlength="{% if constant('USE_ACCOUNT_NAME') %}30{% else %}10{% endif %}" value="{{ account }}" autofocus/>
 
Yes I know! I expressed myself wrong. MyAAC accepts numbers and letters but my server only accepts letters.

I fix my issue in the file acount.create.html.twig

PHP:
<input type="text" name="account" id="account_input" size="30" maxlength="{% if constant('USE_ACCOUNT_NAME') %}30{% else %}10{% endif %}" value="{{ account }}" autofocus/>

to

PHP:
<input type="number" name="account" id="account_input" size="30" maxlength="{% if constant('USE_ACCOUNT_NAME') %}30{% else %}10{% endif %}" value="{{ account }}" autofocus/>

You mean your server accepts only numbers.

But still, there's verification on the server side, that your account needs to be a number. There're so-called status indicators (that green icon next to account text field input) that indicate if an account is right. It will be right (green) only with numbers. So its impossible to create an account with letters on the server which accepts only account number.
 
Hello Sir,

haha, Slawkens may have been half asleep when he responded. When you click "Add news" (logging in as admin) you have the ability to add the comment to ticket, or the newsboard:

4QSw445.png

Nope, he meant changelog, no ticket. Site located under your_domain/?changelog. This is other thing ;)

Also @slawkens, do you have any "easy" migration methodologies for users who are using your older revisions of MyAAC? Be nice for a smooth transition. I've made a considerable amount of changes and would hate to copy+paste directory over directory. Especially when the structure of code isn't the easiest to follow. (ie. updating only forum add/hide/move functions)

You can use WinMerge to compare whole directories.
 
Today I released version 0.7.1. This update contains some small visual fixes. Update if you want to be on the good side.

Also, did you know?
Some of the worlds most popular OTServers already use MyAAC!

Check them out:
http://caterot.com (version 0.7.1)
Latest News - Hornera Global (version 0.2.4)

So, download your MyAAC copy today and be the part of this global change!
 
Hi guys! I've installed a new installation of myacc on a VPS with OTX replacing my older Gesior but have a issue, if I acess the character page (like http://127.0.0.1/?characters/Master) always display HTTP ERROR 500. How can I solve this?

What version did you installed?

Also, check your apache log file to see the issue.
 
sorry on ubuntu instaling phpmyadmin, wichone of this i should choose? apache2 or lighttpd
 
sorry on ubuntu instaling phpmyadmin, wichone of this i should choose? apache2 or lighttpd

Depends on what you have installed before :)

To check if you got apache, type in terminal this:
Code:
dpkg --get-selections | grep apache

Or this, to generally check what is running on port 80 (http)

Code:
sudo lsof -nPi | grep ":80 (LISTEN)"

* taken from here: How can I determine if Apache is installed on a system?
 
How did you solved it?
permission 777

but after that, the error occurred again now in the page highscores, from what I saw in the log, it is a db that is missing that in the malucoo otx does not have.
 
Status
Not open for further replies.
Back
Top