White Screen Of Death

Permalink 1 user found helpful
Version : 5.5.2.1
Updated: 5.6.3.2
URL:http://pekingparisvw.co.uk/index.php/...
UNtil yesterday the site was working correctly but now the only page visible is /index.php/login.
When I look at the page source it partially renders the code in the <head> after logging in but differs on how much is rendered from page to page. The site is a demo and can only be seen after logging in (Default Default).

I have checked the database in HediSQL and the tables seem ok (no corruption warnings).

I am thinking my best bet is to do a clean install of a new C5 DB and copy the content tables to it. Does anyone have a list of tables that need to be copied to achieve this excluding unneeded tables?

TIA ANdrew



e.g.
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Services from Lloyd Latchford Schemes</title>
<meta name="description" content="Services from Lloyd Latchford Schemes" />
<meta name="keywords" content="Services from Lloyd Latchford Schemes" />
<meta name="generator" content="concrete5 - 5.6.3.2" />
<script type="text/javascript">
var CCM_DISPATCHER_FILENAME = '/index.php';
var CCM_CID = 71;
var CCM_EDIT_MODE = false;
var CCM_ARRANGE_MODE = false;

wingnut
 
Mnkras replied on at Permalink Reply
Mnkras
Check your PHP error log
wingnut replied on at Permalink Reply
wingnut
Seems my isp has disabled set_time_limit !
[Tue Nov 24 01:14:12 2015] [error] [client 127.0.0.1] FastCGI: server "/var/www/fcgi/php-cgi" stderr: PHP Warning:  set_time_limit() has been disabled for security reasons in /htdocs/updates/concrete5.6.3.2/concrete/core/controllers/single_pages/upgrade.php on line 6

Looking at post
https://www.concrete5.org/community/forums/installation/updating-con... for solution
wingnut replied on at Permalink Reply
wingnut
commenting out line 6 has worked.

<?php
defined('C5_EXECUTE') or die("Access Denied.");
ini_set('display_errors', 1);
if (!ini_get('safe_mode')) {
   //set_time_limit(0);
   ini_set("max_execution_time", 0);
}