Can someone help me with this error?

Ka3

New Member
Nov 19, 2017
20
0
When I go into my website (localhost) I get an error:
Thank you! :)
 

HoldUp

dont even
Aug 31, 2017
242
32
Make a new file in Notepad ++ paste this into it:
PHP:
<?php

namespace Revolution;
if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); }
interface iCore
{
    public function getOnline();
    
    public function getStatus();
    
    public function systemError($who, $txt);
    
    public function handleCall($k);
    
    public function hashed($password);

}
?>
Then save it as interface.core.php in htdocs or wwwroot, // app // interfaces
 

Users who are viewing this thread

Top