@riegerCLOUD Hello thanks for the reply I have the config.php and the redis.conf.
I went through that guide step by step and the redis seems to be installed fine⊠just for whatever reason its a white screen.
I think it has something to do with the config.php as it doesnt whie screen with that back to the original content.
My Nextcloud is installed in /var/www/nextcloud
My data is installed in /var/www/nextcloud/data
Htuser and htgroup are www-data
I do have HTTPS enabled and a redirect from example.com/nextcloud to just example.com
I did run the permissions script⊠although I did try this on a fresh install without the permissions script and stild did the same thing.
Config.php
<?php
$CONFIG = array (
'instanceid' => 'ocxfw6mpi',
'passwordsalt' => '+AL1TinfqwLFixVD0QPkgY',
'secret' => 'KJCj1cl+N8qibETOSbOrbD7T07ei/HbRKod/FI',
'trusted_domains' =>
array (
0 => 'site.com',
1 => '192.xxx.x.xx',
),
'datadirectory' => '/var/www/nextcloud/data',
'overwrite.cli.url' => 'https://localhost',
'overwriteprotocal' => 'https'
'dbtype' => 'mysql',
'version' => '9.1.1.5',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'dbuser' => 'nextcloud',
'dbpassword' => 'redacted',
'logtimezone' => 'UTC',
'installed' => true,
'mail_smtpmode' => 'smtp',
'mail_smtpsecure' => 'ssl',
'filelocking.enabled' => 'true',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => '/var/run/redis/redis.sock',
'port' => 0,
'timeout' => 0.0,
),
);
and the redis.conf
http://pastebin.com/hd52BRqB