this is my access.php, I already tried to edit my news in my webpage using a 99 admin account but I don't know how to. I already tried to edit in mysql the schemas you said that need to execute but this always appear.
This is the SS of my CP and this is my access.php
<?php
/*-------------------------------------
// Created by: Harrison aka CalciumKid
---------------------------------------
// Released Exclusively for the RAthena
// development boards. Please do not
// redistribute my work without
// permission and leave all credits in
// tact.
---------------------------------------
// !!!THIS WORK IS COPYRIGHTED!!!
// Contact:
[email protected]
-------------------------------------*/
return array(
'modules' => array(
'pages' => array(
// Pages are available to anyone on the site.
// Page management is only available to ADMINs
'index' => AccountLevel::ADMIN,
'add' => AccountLevel::ADMIN,
'delete' => AccountLevel::ADMIN,
'edit' => AccountLevel::ADMIN,
'content' => AccountLevel::ANYONE,
),
'news' => array(
// News is available to anyone on the site.
// News management is only available to ADMINs
'index' => AccountLevel::ADMIN,
'add' => AccountLevel::ADMIN,
'edit' => AccountLevel::ADMIN,
'delete' => AccountLevel::ADMIN,
'views' => AccountLevel::ANYONE,
),
),
)
?>