ArchBlood

Results 114 comments of ArchBlood

Here's an example for the JavaScript for Hashtags, no this hasn't been tested; ```javascript humhub.module('content', function(module, require, $) { var Widget = require('ui.widget').Widget; // Function to extract hashtags from text...

Here's also an example for Prosemirror editor as well, although I'm not an expert when it comes to JavaScript or Prosemirror; ```javascript import { Plugin, PluginKey } from 'prosemirror-state'; import...

> > Done here: https://marketplace.humhub.com/module/reaction/description > > > > @luke- maybe you'll like to close this issue now. > > Is there a Github or other space for raising issues...

Here's an idea that could probably help mitigate such issues, similar to the `requirements.php` file we create a `variables.php` within modules and check against this file within the `common.php` file?...

I've not tested; ```php $classAttributeValue = $this->owner?->getAttribute($this->classAttribute); if ($classAttributeValue !== null) { $record = static::loadActiveRecord($classAttributeValue); } else { // Handle the case where $classAttributeValue is null $record = null; }...

> Also, the Nullsafe operator is only available since php 8.0. And while @luke- said he wants to silantly fade out v7.4, this would simply crash it ... :-) I...

Maybe one of these can answer your question; https://stackoverflow.com/questions/45944797/yii2-expiring-access-tokens https://stackoverflow.com/questions/42760395/yii2-rest-api-user-bearer-authentication-expiration-time/42764555#42764555

Overall this is a similar issue as #5155; It seems like your HumHub is encountering an "`open_basedir` restriction" error, indicating that the file it's trying to access is not within...

> Yes makes sense . Still I would like to understand how the path issue relates to you debug . Will try to check where these paths are defined The...

I believe a lot of this should be fixed within #6816, and my https://github.com/humhub/humhub/pull/6816#discussion_r1495067906 should also further help with other possible issues that could happen. Another approach could be the...