I am not an heavy user of the nextcloud polls application, so this issue could be an oldie but goldie.
I am working on a nextcloud version 30.0.5.1 and I wanted to create a poll.
First discovery, all polls are gone and I was not able to configure anything Preference section. A tail on the nextcloud.log told me that apps/polls/lib/Controller/PollController.php is producing a unknown config key log entry.
Long story short, this link from the closed issue/3806 pointed me to the right direct.
Logged in as admin, I've opened the settings/admin/polls and disabled and enabled the Enable the poll creation globally option. After that and a page reload as a user, almost all is working fine. There is only one open issue with the "copy link to clipboard" option :-.
when logged into my nextcloud server as user, I clicked to User Bubble -> Settings -> Security and found a long list of entries below Devices & sessions.
After searching the issue list, I found this issue ticket.
The issue is know but either it is a kind of special issue ore no one really cares about it.
There is currently no real solution but I want to offer a temporary one.
You can create a cronjob that executes the following sql statement once per week or day.
```sql
---
--- You have to replace <user_name> with your user name
---
DELETE FROM
`oc_authtoken`
WHERE
`uid` = <user>
AND `last_activity` < UNIX_TIMESTAMP(DATE_SUB(CURRENT_DATE(), INTERVAL 16 DAY));
OPTIMIZE TABLE `oc_authtoken`;
```
From my point of view, it looks like Firefox is doing something strange. Maybe other browsers behave the same.
So today I wanted to quickly setup a public shared link so that a friend of mine is able to easily upload a file to me.
Of course, I've stumbled over the file drop but I was not able to find the "File drop (upload only" section when I was creating this share.
I tried to find more information and was digging into the documentation. I was going through the issue list but at the end, I was not able to fix the missing option. I was also quickly updating the server to the latest version, but also, no "File drop" selection.
Than, after reading the logs, investigating the config.php, I finally found the missing link.
As an administrator, you have to go to Sharing and check the Allow public uploads configuration setting. After that, you can finally create your share as a user known as "file drop".