Debian Squeeze, with Apache2 installed and running.
{"installed":"true","version":"5.0.25","versionstring":"5.0.13","edition":""}
http://servername.com/owncloud/status.php
My owncloud/config/config.php
file:
<?php
$CONFIG = array (
'instanceid' => '<gibberish>',
'passwordsalt' => '<gibberish>',
'datadirectory' => '/var/www/owncloud/data',
'dbtype' => 'sqlite3',
'version' => '5.0.25',
'installed' => true,
);
"user_backends" => array (
0 => array (
"class" => "OC_User_SMB",
"arguments" => array (
0 => 'localhost'
),
),
);
When I try accessing the main page (http://server.com/owncloud) or any of the .PHP files under it, I just get a blank page returned. If I comment out the last section for userbackends
, it loads with the one user I've created. My goal is to have it authenticate against the SMB server that's running on the same system, as per ownCloud's Documentation. How can I get ownCloud to authenticate against the Samba server running on the same box?