Fixes
Some checks failed
Gitea Actions / Merge (push) Waiting to run
Gitea Actions / Run-Tests-On-Arm64 (push) Failing after 0s
Gitea Actions / Run-Tests-On-Amd64 (push) Has been cancelled

This commit is contained in:
Thomas Peterson 2025-06-11 08:34:34 +02:00
parent 09d7894c18
commit f5db67745e
5 changed files with 4 additions and 55 deletions

View File

@ -1,6 +1,6 @@
; https://www.scalingphpbook.com/blog/2014/02/14/best-zend-opcache-settings.html
opcache.enable_cli = 1
opcache.enable = 1
opcache.enable_cli = 0
opcache.enable = 0
; check with find . -type f -print | grep php | wc -l
opcache.max_accelerated_files = 1048793
opcache.validate_timestamps = 0

View File

@ -12,7 +12,6 @@ class AddTest extends WebTestCase
public function testAddLagacyBasketWithAccountCalc(): void
{
return;
$client = static::createClient();
$userRepository = static::getContainer()->get(ContactRepository::class);

View File

@ -107,7 +107,6 @@ class CreateOrderColorDBTest extends WebTestCase
self::assertSame(200, $client->getResponse()->getStatusCode());
$data = json_decode($client->getResponse()->getContent(), true);
self::assertSame(41380, strlen($client->getResponse()->getContent()));
}
}

View File

@ -329,8 +329,8 @@ class Save extends AbstractController
$this->entityManager->persist($layoutDesignData);
$this->entityManager->flush();
$layouterSession = $this->entityManager->getRepository(LayouterSession::class)->findOneBy(['uuid' => $data->getLayouterUuid()]);
$layouterSession = $this->entityManager->getRepository(LayouterSession::class)
->findOneBy(['uuid' => $data->getLayouterUuid()]);
$layouterDesignDataDoc = new \PSC\Shop\EntityBundle\Document\LayouterSession();
$layouterDesignDataDoc->setUid((string)$layouterSession->getUID());

View File

@ -383,55 +383,6 @@ if ($teile[5] == "") {
<?php endif; ?>
<!--
<?php if ($this->article->file1 != "") : ?>
<a href="<?php echo $this->image()->thumbnailImage($this->article->title, 'articlesinglegreater', $this->article->file1, true); ?>" data-lightbox="article_detail">
<img src="<?php echo $this->image()->thumbnailImage($this->article->title, 'little', $this->article->file1, true); ?>" class="img-fluid">
</a>
<?php endif; ?>
<?php if ($this->article->file2 != "") : ?>
<a href="<?php echo $this->image()->thumbnailImage($this->article->title, 'articlesinglegreater', $this->article->file2, true); ?>" data-lightbox="article_detail">
<img src="<?php echo $this->image()->thumbnailImage($this->article->title, 'little', $this->article->file2, true); ?>" class="img-fluid">
</a>
<?php endif; ?>
<?php if ($this->article->file3 != "") : ?>
<a href="<?php echo $this->image()->thumbnailImage($this->article->title, 'articlesinglegreater', $this->article->file3, true); ?>" data-lightbox="article_detail">
<img src="<?php echo $this->image()->thumbnailImage($this->article->title, 'little', $this->article->file3, true); ?>" class="img-fluid">
</a>
<?php endif; ?>
<?php if ($this->article->file4 != "") : ?>
<a href="<?php echo $this->image()->thumbnailImage($this->article->title, 'articlesinglegreater', $this->article->file4, true); ?>" data-lightbox="article_detail">
<img src="<?php echo $this->image()->thumbnailImage($this->article->title, 'little', $this->article->file4, true); ?>" class="img-fluid">
</a>
<?php endif; ?>
<?php if ($this->article->file5 != "") : ?>
<a href="<?php echo $this->image()->thumbnailImage($this->article->title, 'articlesinglegreater', $this->article->file5, true); ?>" data-lightbox="article_detail">
<img src="<?php echo $this->image()->thumbnailImage($this->article->title, 'little', $this->article->file5, true); ?>" class="img-fluid">
</a>
<?php endif; ?>
<?php if ($this->article->file6 != "") : ?>
<a href="<?php echo $this->image()->thumbnailImage($this->article->title, 'articlesinglegreater', $this->article->file6, true); ?>" data-lightbox="article_detail">
<img src="<?php echo $this->image()->thumbnailImage($this->article->title, 'little', $this->article->file6, true); ?>" class="img-fluid">
</a>
<?php endif; ?>
<?php if ($this->article->file7 != "") : ?>
<a href="<?php echo $this->image()->thumbnailImage($this->article->title, 'articlesinglegreater', $this->article->file7, true); ?>" data-lightbox="article_detail">
<img src="<?php echo $this->image()->thumbnailImage($this->article->title, 'little', $this->article->file7, true); ?>" class="img-fluid">
</a>
<?php endif; ?>
</div>