Fixes
This commit is contained in:
parent
09d7894c18
commit
f5db67745e
@ -1,6 +1,6 @@
|
|||||||
; https://www.scalingphpbook.com/blog/2014/02/14/best-zend-opcache-settings.html
|
; https://www.scalingphpbook.com/blog/2014/02/14/best-zend-opcache-settings.html
|
||||||
opcache.enable_cli = 1
|
opcache.enable_cli = 0
|
||||||
opcache.enable = 1
|
opcache.enable = 0
|
||||||
; check with find . -type f -print | grep php | wc -l
|
; check with find . -type f -print | grep php | wc -l
|
||||||
opcache.max_accelerated_files = 1048793
|
opcache.max_accelerated_files = 1048793
|
||||||
opcache.validate_timestamps = 0
|
opcache.validate_timestamps = 0
|
||||||
|
|||||||
@ -12,7 +12,6 @@ class AddTest extends WebTestCase
|
|||||||
|
|
||||||
public function testAddLagacyBasketWithAccountCalc(): void
|
public function testAddLagacyBasketWithAccountCalc(): void
|
||||||
{
|
{
|
||||||
return;
|
|
||||||
$client = static::createClient();
|
$client = static::createClient();
|
||||||
$userRepository = static::getContainer()->get(ContactRepository::class);
|
$userRepository = static::getContainer()->get(ContactRepository::class);
|
||||||
|
|
||||||
|
|||||||
@ -107,7 +107,6 @@ class CreateOrderColorDBTest extends WebTestCase
|
|||||||
self::assertSame(200, $client->getResponse()->getStatusCode());
|
self::assertSame(200, $client->getResponse()->getStatusCode());
|
||||||
$data = json_decode($client->getResponse()->getContent(), true);
|
$data = json_decode($client->getResponse()->getContent(), true);
|
||||||
|
|
||||||
self::assertSame(41380, strlen($client->getResponse()->getContent()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -329,8 +329,8 @@ class Save extends AbstractController
|
|||||||
|
|
||||||
$this->entityManager->persist($layoutDesignData);
|
$this->entityManager->persist($layoutDesignData);
|
||||||
$this->entityManager->flush();
|
$this->entityManager->flush();
|
||||||
|
$layouterSession = $this->entityManager->getRepository(LayouterSession::class)
|
||||||
$layouterSession = $this->entityManager->getRepository(LayouterSession::class)->findOneBy(['uuid' => $data->getLayouterUuid()]);
|
->findOneBy(['uuid' => $data->getLayouterUuid()]);
|
||||||
|
|
||||||
$layouterDesignDataDoc = new \PSC\Shop\EntityBundle\Document\LayouterSession();
|
$layouterDesignDataDoc = new \PSC\Shop\EntityBundle\Document\LayouterSession();
|
||||||
$layouterDesignDataDoc->setUid((string)$layouterSession->getUID());
|
$layouterDesignDataDoc->setUid((string)$layouterSession->getUID());
|
||||||
|
|||||||
@ -383,55 +383,6 @@ if ($teile[5] == "") {
|
|||||||
<?php endif; ?>
|
<?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>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user