Account created on 24 October 2011, over 13 years ago
#

Merge Requests

Recent comments

πŸ‡¨πŸ‡ΏCzech Republic siva01

Next/last page doesn't exist.

I tried https://www.drupal.org/api-d7/node.json?type=project_module β†’ and realized that the next page, https://www.drupal.org/api-d7/node?type=project_module&page=1 β†’ , returns a 404 error. The same issue occurs with the last page.

I randomly tested other content types, and it seems that pagination doesn't work anywhere.

πŸ‡¨πŸ‡ΏCzech Republic siva01

I had same issue. Drush cr fix it.

πŸ‡¨πŸ‡ΏCzech Republic siva01

siva01 β†’ created an issue.

πŸ‡¨πŸ‡ΏCzech Republic siva01

We have resolved this issue by using a custom Drupal\custom_module\Normalizer, where the function normalizeFieldItems has been rewritten to provide a default value if the field value is NULL.

It works, but it requires an extension of the @internal class FieldNormalizer. So I am not sure if it is the best practice, but it works.

πŸ‡¨πŸ‡ΏCzech Republic siva01

I can confirm this issue. I have version Drupal Redis 1.7.0.

Drupal\redis\Flood\PhpRedis

 /**
   * {@inheritdoc}
   */
  public function isAllowed($name, $threshold, $window = 3600, $identifier = NULL) {
    if (!isset($identifier)) {
      $identifier = $this->requestStack->getCurrentRequest()->getClientIp();
    }

    $key = $this->getPrefix() . ':flood:' . $name . ':' . $identifier;

    // Count the in the last $window seconds.
    $number = $this->client->zCount($key, $_SERVER['REQUEST_TIME'], 'inf');
    return ($number < $threshold);
  }

$window isn't used in that function.

I think, that it should look as:

 /**
   * {@inheritdoc}
   */
  public function isAllowed($name, $threshold, $window = 3600, $identifier = NULL) {
    if (!isset($identifier)) {
      $identifier = $this->requestStack->getCurrentRequest()->getClientIp();
    }

    $key = $this->getPrefix() . ':flood:' . $name . ':' . $identifier;

    // Count the in the last $window seconds.
    $number = $this->client->zCount($key, $_SERVER['REQUEST_TIME'] - $window, 'inf');
    return ($number < $threshold);
  }
πŸ‡¨πŸ‡ΏCzech Republic siva01

siva01 β†’ created an issue.

πŸ‡¨πŸ‡ΏCzech Republic siva01

I need this feature too. Is there some progress? I need send PDF by email. Automatically, without manual uploading that PDF to email.

πŸ‡¨πŸ‡ΏCzech Republic siva01

I tried clone dev module to our Drupal 9 project. I changed required core. For now I don't find any core related issue, so it looks, that dev can work with Drupal 9 too.

πŸ‡¨πŸ‡ΏCzech Republic siva01

siva01 β†’ created an issue.

πŸ‡¨πŸ‡ΏCzech Republic siva01

@anup.sinha I can see only branch 1.*. There is tag 2.0, but branch is still 1.*.

πŸ‡¨πŸ‡ΏCzech Republic siva01

I create MR with some code refactor and that service. It can be called form some hook too. I test it on our project, so I hope, that I didn't break anything.

πŸ‡¨πŸ‡ΏCzech Republic siva01

I have search_api 1.28.0 and patch fix that issue for me.

πŸ‡¨πŸ‡ΏCzech Republic siva01

I added separated permissions for configuration and usage. You can check my MR on https://git.drupalcode.org/project/chatgpt_plugin/-/merge_requests/8

πŸ‡¨πŸ‡ΏCzech Republic siva01

I have same problem, but with different module. I traced template to MailManager::doMail(). There is code $message = $system->format($message); That input message is with cid, I have cid in log, but in my Gmail it is delivered without cid. It has to be in some lower level.

πŸ‡¨πŸ‡ΏCzech Republic siva01

siva01 β†’ made their first commit to this issue’s fork.

Production build 0.71.5 2024