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

Znote >Admin_news< trouble and 2 little troubles

Felipe93

Ghost Member
Joined
Mar 21, 2015
Messages
2,035
Solutions
9
Reaction score
357
Location
Chile
Hello
PRINCIPAL ERROR
im using znote 0.3.6-0.4 global tibia layout
i configured the config.php with my accouint id and give to my account id page acces 5
but the windows to edit the news(admin_news) of my website never appears
what is missing?
--------------------------------------------------------------------------------------------------
too i got this web message error very little but make website looks awfull

Notice: Undefined index: date inC:\xampp\htdocs\layout\sub\index.phpon line 39
<?php echo date($config['date'], $n['date']); ?>

-------------------------------------------------------------------------------------------
Notice: Undefined index: date in C:\xampp\htdocs\layout\overall\footer.php on line 25
echo 'Server date and clock is: '. date($config['date'],time()) .' Page generated in '. $total_time .' seconds.';
----
 
The PHP notices probably comes from the layout (custom index.php) as $config doesn't have a field named 'date' and the default index.php does not contain the lines you referenced.

Could you specify what you mean by admin_news never appear? Can you access it by typing it into the address bar (example.com/admin_news.php)?

Did you enter your account name or id?
It should be the account name as a string.
Code:
$config['page_admin_access'] = array(
    'forgee'
);
 
Back
Top