• Статья
Not showing XF Attachment preview (Object storage problem or XF bug?)

All add ons disabled.

Upload attachment.
1727785367862.webp

No preview for the upload.

Post thread.

1727785481041.webp

Click on attachment

1727785505851.webp

Is this a XF bug or an object storage problem where Vultr isn't supported?

Config seems to work:

PHP:

Код:
$s3 = function()
{
   return new \Aws\S3\S3Client([
      'credentials' => [
         'key' => 'XXX',
         'secret' => 'YYY'
      ],
      'region' => 'ams1',
      'version' => 'latest',
      'endpoint' => 'https://ams1.vultrobjects.com'...

Read more

Читать далее...

  • Статья
Adding a Passkey implicitly enables 2FA which effectively disables password-based login and unexpectedly makes account recovery impossible

After adding a Passkey, users can login using the Passkey just fine. But when they attempt to login using their password again (*) they unexpectedly see a 2FA prompt which asks them to provide their Passkey as a second factor. This seems to hit users by surprise because they just clicked "Add Passkey". They did not click and were not told either that 1) they would no longer be able to login via password anymore and 2) 2FA would be enabled and 3) they absolutely have to save their 2FA backup...

Read more

Читать далее...

  • Статья
Installation Link Not Provided in Customer Account(?) [solved]

Hello. I just purchased a cloud subscription. I pretty much don't know anything here. There seem to be about a million guides and links all around. The majority of them assume I already have some base knowledge of what to do. So unfortunately learning this is not as straightforward for everyone as Xenforo staff would hope.

I have a brand new Xenforo forum as of about 30 minutes ago. But I believe I still need to install Xenforo on my pc in some way. Is this correct? If so, that seems like...

Read more

Читать далее...

Плагин xF2 [AddonsLab] Conversation Permissions

Pokschubin разместил(а) новый ресурс:

[AddonsLab] Conversation Permissions - Дополнение добавляет два новых разрешения для групп пользователей

Дополнение добавляет два новых разрешения для групп пользователей:

  1. Создать беседу/DM: минимальное количество постов — количество постов, необходимое пользователям для отправки нового личного сообщения
  2. Ответ на сообщение/личного сообщения
  3. Минимальное количество постов — количество постов, необходимое пользователям для ответа на существующее сообщение в личном сообщение
  4. Просмотр переписки/личного сообщения
  5. Минимальное количество сообщений — количество сообщений...

Посмотреть страницу этого ресурса...

ПЛАГИН xF2 [AddonsLab] Conversation Permissions

Дополнение добавляет два новых разрешения для групп пользователей:

  1. Создать беседу/DM: минимальное количество постов — количество постов, необходимое пользователям для отправки нового личного сообщения
  2. Ответ на сообщение/личного сообщения
  3. Минимальное количество постов — количество постов, необходимое пользователям для ответа на существующее сообщение в личном сообщение
  4. Просмотр переписки/личного сообщения
  5. Минимальное количество сообщений — количество сообщений, необходимое для просмотра DM
  6. Квота на количество переписок /личного сообщения
  7. Count - общее количество активных личныхо сообщений
  8. Которые пользователь может иметь в своем личных сообщениях
  9. Можно связаться с администратором или модератором - если включено, вышеуказанные ограничения не действуют при обращении к администратору форума/сайта.
Если у пользователя недостаточно сообщений для начала переписки, он видит ошибку "нет разрешения" при попытке начать переписку.

Если у пользователя недостаточно сообщений для ответа на переписку, он просто не видит поле для ответа.

  • Статья
Can't force STARTTLS for SMTP server

With XenForo < 2.3 it was possible to configure a SMTP server as
  • Plaintext
  • TLS (=STARTTLS. eg. initial plaintext connection taht is switchted to TLS aver STARTTLS command)
  • SSL (=implicit TLS, eg. the entirate connection is TLS)

With XenForo 2.3 the configuration options have been changed to
1727773271573.webp

Right now it is only possible to enable checkbox Use SSL/TLS which implicity uses TLS or leave it disabled which will use STARTTLS if supported by the server or...

Read more

Читать далее...

  • Статья
Issues with MailerSend SMTP configuration not working in XenForo

Hi everyone,

I'm having trouble setting up MailerSend as the SMTP server for my XenForo installation. I followed all the steps to integrate MailerSend with XenForo, but emails are not sending, and I'm unsure what's causing the problem.

Below are the screenshots of my current configuration and the SMTP credentials in MailerSend:

1727766254296.webp

1727766241753.webp




console error:


Code:

Код:
Server error log
Symfony\Component\Mailer\Exception\TransportException: Email to soycarly.fl@gmail.com...

Read more

Читать далее...

  • Статья
Приветствуем нового пользователя, tsk

@tsk, Добро пожаловать на наш форум! Территория возможностей 💥 😉

Зарегистрированный пользователь не может скачивать ресурсы ознакомившись с условиями на странице с повышениями групп или в личном профиле!


Описания платных групп:

Плагин xF2 [TaylorJ] Blogs

xenforo2 обновил ресурс [TaylorJ] Blogs новой записью:

1.0.0

Золотой релиз 1.0.0 уже здесь!

Изменения, внесенные в Release Candidate 2:
  • Новое всплывающее окно с ошибкой при выборе даты/времени в прошлом при планировании публикации
  • Параметры блога и разрешения были перемещены в нижнюю часть соответствующих страниц в соответствии со стандартами (больше не находятся в верхней части каждой страницы).

Посмотреть подробности об этом обновлении...

  • Статья
rerouteController not reReouting

Hi,

I have the following code in my controller class (extends abstractContrller as this is a custom controller)

PHP:

Код:
        if($params->slug)
        {
            return $this->rerouteController(__CLASS__, 'actionView', $params);
        }

Then I have the public function inside that class

Code:

Код:
    public function actionView(ParameterBag $params)
    {
       echo "That worked";
    }

I have a route in place that lets call it
content

Content has a route path of...

Read more

Читать далее...

  • Статья
Is there a way disable the ability for a user group to receive emails?

I see Andy has a way to disable email for individual users:
Disable email by user

But is there a way to disable email to a group?

I get a fairly decent share of people who don't know the difference between placing an email in the trash after reading it - and marking it as junk. Some people don't know the difference - and/or some people are just too lazy to unwatch/unsubscribe. Probably the same people who don't use turn signals...

Read more

Читать далее...

  • Статья
XFES Errors on new server

Hi,

I've moved a forum onto a new server that ran elasticsearch 8.12.1. It looks as though ElasticSearch has installed ok on the new server (elasticsearch 8.15.2) but it errors out on search:

Code:

XFES\Elasticsearch\ConnectException: cURL error 28: Operation timed out after 20001 milliseconds with 0 bytes received (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for http://localhost:9200/_cluster/settings?include_defaults=true in src/addons/XFES/Elasticsearch/Api.php at line 447...

Read more

Читать далее...

  • Статья
Limited the width of signature images on mobile devices

I used the be able to limit the width of signature images on mobile devices using this code in extra.less

Code:

Код:
.message-signature
{
    .bbWrapper
    {
        .bbImage
        {
            max-width: 600px;
            max-height: 150px;
            overflow-x: auto;
            overflow-y: auto;
        }
    }
}

Has something changed that causes this to not function anymore?

Читать далее...

  • Статья
Error updating Node Info

Trying to update node info and I get this error:

Oops! We ran into some problems.
Please complete all required fields.

All fields are in fact filled in. There's an image already set too, whish is odd that I cant change it. Nothing in domain error logs. Nothing in apache logs either. Running Litespeed and PHP 8.2

Odd thing also, I can easily edit/update node bg images for any other nodes, but a few give me the error not just this specific node.
1727724237221.webp

Читать далее...

  • Статья
Приветствуем нового пользователя, pipira

@pipira, Добро пожаловать на наш форум! Территория возможностей 💥 😉

Зарегистрированный пользователь не может скачивать ресурсы ознакомившись с условиями на странице с повышениями групп или в личном профиле!


Описания платных групп:

  • Статья
aria-hidden="true" set on focusable links

HTML:

Код:
<xf:macro id="attribution" arg-profilePost="!" arg-showTargetUser="{{ false }}">
    <xf:if is="$showTargetUser AND $profilePost.user_id != $profilePost.profile_user_id">
        <xf:username user="$profilePost.User" rich="true" defaultname="{$profilePost.username}" aria-hidden="true" />
        <xf:fa icon="{{ $xf.isRtl ? 'fa-caret-left' : 'fa-caret-right' }} u-muted" />
        <xf:username user="$profilePost.ProfileUser" rich="true" defaultname="{{ phrase('unknown') }}"...

Read more

Читать далее...

Фильтровать

Назад
Верх Низ