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.
I had same issue. Drush cr fix it.
siva01 β created an issue.
siva01 β created an issue.
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.
siva01 β created an issue.
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);
}
siva01 β created an issue.
siva01 β created an issue.
siva01 β created an issue.
siva01 β created an issue.
I need this feature too. Is there some progress? I need send PDF by email. Automatically, without manual uploading that PDF to email.
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.
siva01 β created an issue.
siva01 β created an issue.
siva01 β created an issue.
siva01 β created an issue.
@anup.sinha I can see only branch 1.*. There is tag 2.0, but branch is still 1.*.
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.
siva01 β created an issue.
I have search_api 1.28.0 and patch fix that issue for me.
I added separated permissions for configuration and usage. You can check my MR on https://git.drupalcode.org/project/chatgpt_plugin/-/merge_requests/8
siva01 β created an issue.
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.
siva01 β made their first commit to this issueβs fork.