It is loaded by default by /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist.
If you run
launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index.html$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.html [L] |
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- | |
The HTTP Content-Security-Policy response header allow you to control what pages to load for specific | |
user agents. | |
This mostly involves defining rules for specific origins or script endpoints, and helps guard against | |
cross-site scripting attacks (XSS). | |
--> | |
<csp_whitelist | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
SET FOREIGN_KEY_CHECKS=0; | |
TRUNCATE TABLE `customer_entity`; | |
TRUNCATE TABLE `customer_entity_datetime`; | |
TRUNCATE TABLE `customer_entity_decimal`; | |
TRUNCATE TABLE `customer_entity_int`; | |
TRUNCATE TABLE `customer_entity_text`; | |
TRUNCATE TABLE `customer_entity_varchar`; | |
TRUNCATE TABLE `customer_address_entity`; | |
TRUNCATE TABLE `customer_address_entity_datetime`; |
<?php | |
use Magento\Rule\Model\Condition\Sql\Builder as SqlBuilder; | |
... | |
/** @var $collection Collection */ | |
$collection = $this->productCollectionFactory->create(); | |
$conditions = $this->getConditions(); | |
$productConditions = $this->getProductConditions(); | |
$conditions->collectValidatedAttributes($collection); |
It is loaded by default by /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist.
If you run
launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
SELECT * FROM `catalog_product_entity` WHERE `entity_id` NOT IN (SELECT `entity_id` FROM `catalog_product_entity_media_gallery_value_to_entity`) AND `entity_id` IN (SELECT entity_id FROM `catalog_product_entity_int` WHERE attribute_id = ( SELECT attribute_id FROM `eav_attribute` WHERE `attribute_code` = 'status' ) AND `catalog_product_entity_int`.value = 1) |