Concrete5 website crashed

Permalink
Hello my concrete5 website crashed a few days ago. Instead of the website, a long list of errors appears, starting with "Strict Standards: Non-static method ...xxx". I tried uploading a backup of the files but the error still.

Can someone please take a look and give me an idea of what could happen.

http://www.topmanagementca.com/site/index.php...

1 Attachment

luisdiaz
 
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
Try this:
You need to replace a line in your file php.ini
error_reporting = E_ALL | E_STRICT
to
error_reporting = E_ALL & ~(E_NOTICE | E_STRICT | E_DEPRECATED)

Hope this helps
Rony
andrewjaff replied on at Permalink Reply
andrewjaff
Hi,
This is because of php version has been update .

Please add replace code of your root/index.php file with
<?php 
error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT);
require('concrete/dispatcher.php');


And upgrade your site to latest version.
luisdiaz replied on at Permalink Reply
luisdiaz
Thanks to both of you for answering. I tried both solutions, but it didn't work.

Any other idea ??

I appreciate the help !!

LD
andrewjaff replied on at Permalink Reply
andrewjaff
Hi,

Please upgrade your site to 5.6


Thanks