I tried to figure out how to create a Test Plan for it. And I think I did, but at the end, I had a problem adding a network folder in the Dolphin GUI.
What I did:
1. I started with focal VM, and I created it.
2. I've installed apache2 and the required modules as follows:
- a2enmod dav dav_fs
3. I've created a conf file under
/etc/apache2/sites-available/
Hi @Adam,
I tried to figure out how to create a Test Plan for it. And I think I did, but at the end, I had a problem adding a network folder in the Dolphin GUI.
What I did:
1. I started with focal VM, and I created it. sites-available /
2. I've installed apache2 and the required modules as follows:
- a2enmod dav dav_fs
3. I've created a conf file under
/etc/apache2/
and I have added it inside:
<VirtualHost *:80>
ServerName localhost
DocumentRoot /var/www/webdav
Alias /webdav /var/www/webdav
AllowOverride None
<Directory /var/www/webdav>
DAV On
Require all granted
</Directory>
</VirtualHost>
4. Then I enabled the new configuration and restarted apache2.
I have created a WebDAV directory and changed ownership:
sudo mkdir -p /var/www/webdav
sudo chown www-data:www-data /var/www/webdav
5. And then I installed Dolphin and wanted to access WebDAV with it, but I was denied access by Dolphin.
I think it might be another bug found along the way, or it might be a problem I only encountered.
Could you please help me a bit and maybe provide me with your steps to reproduce the issue?
I would be really grateful :)