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

Windows I need help with my website and account manager

Jack McMillan

New Member
Joined
Jan 12, 2016
Messages
20
Reaction score
0
I've got into the ZnoteACC with 'localhost' when i click anything like highscore, shop forum, Guilds etc, they show up with nothing but on the URL i see localhost/serverinfo.php.

This is what happens when i try make a character using account manager
https://imgur.com/QFGMhi4

This is an error i see on my website, this might be nothing, but it's a start
https://imgur.com/5uW1C8L

PLEASE DON'T IGNORE THIS I REALLY NEED HELP, I'M NEARLY DONE :)
 
For the highscores, forum, guilds and all those pages you'll have to add them to your sub.php file in your layout folder
it should look something like this:
Code:
    ),
    'highscore' => array(
        'file' => 'highscore.php',
        'override' => false
    ),
    'guilds' => array(
        'file' => 'guilds.php',
        'override' => false
    ),
        'charactersearch' => array(
        'file' => 'charactersearch.php',
        'override' => false
    ),
if it doesn't look like this ^ you should still see something similar and be able to figure it out.
(you'll still have to adjust it for your missing pages anyways).
as for the account manager issue; are you able to make a character through the znote website?

and when do you receive this final error? is it only when you click on players online?
 
Last edited:
For people to "not ignore this" you need to provide proper information and follow the board rules.
https://otland.net/threads/rules-for-the-support-board.217087/
#1
#5
What is your server distro and version

The second error means the table doesn't exist in your database which leads me to believe you did not properly import all the tables from the the schema in your datapack, OR your datapack is not compatible with the AAC, like if it weren't TFS. As for the first issue, it's more likely a misconfiguration in config.lua or once again there's some sort of issue with the table imports.
 
Back
Top