You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't think this is related to https or http. When you install the blocktype the WebDAV URL of your OwnCloud isn't set at all. I've missed that, since the code in the line in question was changed after I've already set my WebDAV URL. This change was fix for the bug #4.
Hi,
After installing the aretefact and it's blocks, I get this error in the /artefact/cloud/ (Cloud Services menu) screen:
[WAR] 1c (artefact/cloud/blocktype/owncloud/lib.php:221) Undefined index: scheme
Call stack (most recent first):
It's failing on this line:
$service->ssl = ($url['scheme'] == 'https' ? true : false);
This is on my Dev machine so no https. Should probably check for:
$service->ssl = (isset($url['scheme']) && $url['scheme'] == 'https' ? true : false);
Thanks,
Ghada
The text was updated successfully, but these errors were encountered: