This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'sitemap' => [ | |
'excluded_urls' => [ | |
[ | |
// Possible resources: | |
// - product (\Shopware\Models\Article\Article::class) | |
// - campaign (\Shopware\Models\Emotion\Emotion::class) | |
// - manufacturer (\Shopware\Models\Article\Supplier::class) | |
// - blog (\Shopware\Models\Blog\Blog::class) | |
// - category (\Shopware\Models\Category\Category::class) | |
// - static (\Shopware\Models\Site\Site::class) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SSH to the runner and execute 'docker system prune --all --volumes --force' - this will wipe any unused docker stuff. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;(function ($, window, document, undefined) { | |
'use strict'; | |
window.onload = function () { | |
document.getElementById('delivery').checked = true; | |
$('#delivery').triggerHandler('change'); | |
}; | |
})(jQuery, window, document, undefined); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SET foreign_key_checks = 0; | |
TRUNCATE shopware.s_addon_premiums; | |
TRUNCATE shopware.s_articles; | |
TRUNCATE shopware.s_articles_also_bought_ro; | |
TRUNCATE shopware.s_articles_attributes; | |
TRUNCATE shopware.s_articles_avoid_customergroups; | |
TRUNCATE shopware.s_articles_categories; | |
TRUNCATE shopware.s_articles_categories_ro; | |
TRUNCATE shopware.s_articles_categories_seo; | |
TRUNCATE shopware.s_articles_details; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -v -L --user-agent "Googlebot/2.1 (+http://www.google.com/bot.html)" https://vanwittlaer.de |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ListProductService implements ListProductServiceInterface | |
{ | |
/** | |
* @var ListProductServiceInterface | |
*/ | |
private $service; | |
/** @var Container */ | |
private $container; |
NewerOlder