ArchBlood

Results 114 comments of ArchBlood

@dantefromhell why close this, it should be encouraged to be implemented for better understanding.

> Oops, I didnt realize there was a PR in my humhub fork when I deleted the repo. > > Not sure how this PR can be made actionable again,...

In your theme view overwrite you can remove the following lines as alternative; https://github.com/humhub/humhub/blob/56d42191afecf4c06c45614f9d154dc67f6c1889/protected/humhub/modules/user/views/auth/login.php#L99-L113 https://github.com/humhub/humhub/blob/56d42191afecf4c06c45614f9d154dc67f6c1889/protected/humhub/modules/user/views/auth/login_modal.php#L110-L125

Seems like PHP FPM isn't installed or is incorrectly configured use `sudo systemctl enable --now php-fpm` to enable PHP FPM, if not installed use `mkdir -p /run/php-fpm/` (change `/run/php-fpm/` to...

It seems the PHP-FPM process was killed due to an Out-Of-Memory (OOM) issue. This typically happens when the server runs out of available memory and the kernel decides to kill...

> It's happen for one user one session, utilization is 5% pm.max_children = 5 I have default settings on my system. The log provided suggests that despite a seemingly low...

@luke- we could use the MimeHelper class to fix this so that it's possible to upload all supported image formats and then convert them after upload process it completed; https://github.com/humhub/humhub/blob/ad48254d9c4a005af7a12cdfadd8459e20887ef9/protected/humhub/libs/MimeHelper.php#L61-L67

> That sounds good. @ArchBlood , do you agree? Would make things easier, this would also add other possibilities as well.

To answer the main question about which model, it seems it was due to my Ticket model using `implements \humhub\modules\content\interfaces\Searchable` and using the following still; ```php public function getSearchAttributes() {...

> @ArchBlood As I understand you have a model like this: > > ``` > class Ticket extends ContentActiveRecord implements Searchable > { > ... > public function getSearchAttributes() >...