Changes
Page history
add event activitiy patch
authored
Dec 13, 2024
by
Roland Alton
Show whitespace changes
Inline
Side-by-side
Upgrade-procedure.md
View page @
d75e62fe
...
@@ -106,12 +106,17 @@ Siehe auch https://help.nextcloud.com/t/i-want-to-hide-the-add-notes-field-at-th
...
@@ -106,12 +106,17 @@ Siehe auch https://help.nextcloud.com/t/i-want-to-hide-the-add-notes-field-at-th
sudo -u faircloud /usr/bin/php /var/www/nextcloud/occ $@
sudo -u faircloud /usr/bin/php /var/www/nextcloud/occ $@
```
```
##
index neu rödel
t ewig
##
Event activities brauch
t ewig
Bei der Migration / Indexierung kann es zu ewigen Wartezeiten kommen bei den Event Activities. Beim Upgrade von NC 28 -> 29 half nur ein Patch:
```
root@alpstein /var/www # diff RemoveClassifiedEventActivity.php RemoveClassifiedEventActivity.php_patched
root@alpstein /var/www # diff RemoveClassifiedEventActivity.php RemoveClassifiedEventActivity.php_patched
58,59c58,59
58,59c58,59
<
$
deletedEvents =
$this-
>
removePrivateEventActivity();
<
$
deletedEvents =
$this-
>
removePrivateEventActivity();
<
$
deletedEvents
+=
$
this-
>
removeConfidentialUncensoredEventActivity();
<
$
deletedEvents
+=
$
this-
>
removeConfidentialUncensoredEventActivity();
---
---
> //$deletedEvents = $this->removePrivateEventActivity();
> //$deletedEvents = $this->removePrivateEventActivity();
> //$deletedEvents += $this->removeConfidentialUncensoredEventActivity();
>
//$deletedEvents += $this->removeConfidentialUncensoredEventActivity();
```
\ No newline at end of file