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

AAC MYACC Where getLink is directed

jestem pro

That is the question
Joined
Apr 20, 2013
Messages
650
Solutions
14
Reaction score
87
Hi.
A question about MyACC
Can someone tell me to which file is "account/manage" directed to? I have troubles with that.
I don't understand the structure of this ACC. How is it merged with itself.
 
Solution
You should just use:
Code:
getLink('account/manage')

Or:
Code:
getLink('?subtopic=accountmanagement')


And account/manage is redirected into accountmanagement.php, you can find it in index.php:
Code:
'/^account\/manage\/?$/' => array('subtopic' => 'accountmanagement'),
Ok friends I have 2 questions.

1. In database there is in myacc_menu table "account/manage" what file is it?
2. I need something like this in index.php but it says "access forbidden"
HTML:
<form action="window.location.href = '<?php echo getLink('accountmanagement'); ?>'" method="post">
 
You should just use:
Code:
getLink('account/manage')

Or:
Code:
getLink('?subtopic=accountmanagement')


And account/manage is redirected into accountmanagement.php, you can find it in index.php:
Code:
'/^account\/manage\/?$/' => array('subtopic' => 'accountmanagement'),
 
Solution
Back
Top