Minor snag. I upgrade and got:
Fatal error: Root site directory have to be readable and writable. in /some/path/www/sitecake/2.3.1/config/check.php on line 22
The base directory was writable so I added the path as part of the output in /some/path/www/sitecake/2.3.1/config/check.php:
// Check if document directory is writable and readable
if(!is_writable('../') || !is_readable('../'))
{
trigger_error("Root site directory have to be readable and writable. (".realpath('../').")", E_USER_ERROR);
}
This tells me it’s /some/path/. It’s the folder above my webroot (which is /some/path/www/) which doesn’t really present a problem in my dev, hence I’ll just 777 this folder to move on. It might be an issue when I come to go live though.