Friday 27 January 2017

php - Two Errors whilst installing phpBB onto my forums

So auto installer was down on my web host provider and this was the first time trying to install a forums. I do not understand coding so when i cam across these errors i wasn't sure how to fix them.
Here are the screenshots:



enter image description here
enter image description here



I downloaded it straight from the phpBB website unedited.



Code:



{
$json_response = new \phpbb\json_response();
$json_response->send(array(
'success' => true,
));
}

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...