Configuring mass product status update in 1C-Bitrix

Our company is engaged in the development, support and maintenance of Bitrix and Bitrix24 solutions of any complexity. From simple one-page sites to complex online stores, CRM systems with 1C and telephony integration. The experience of developers is confirmed by certificates from the vendor.
Showing 1 of 1All 1626 services
Configuring mass product status update in 1C-Bitrix
Simple
~1 day
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_website-b2b-advance_0.webp
    B2B ADVANCE company website development
    1360
  • image_bitrix-bitrix-24-1c_fixper_448_0.webp
    Website development for FIXPER company
    948
  • image_bitrix-bitrix-24-1c_development_of_an_online_appointment_booking_widget_for_a_medical_center_594_0.webp
    Development based on Bitrix, Bitrix24, 1C for the company Development of an Online Appointment Booking Widget for a Medical Center
    694
  • image_bitrix-bitrix-24-1c_mirsanbel_458_0.webp
    Development based on 1C Enterprise for MIRSANBEL
    832
  • image_crm_dolbimby_434_0.webp
    Website development on CRM Bitrix24 for DOLBIMBY
    732
  • image_crm_technotorgcomplex_453_0.webp
    Development based on Bitrix24 for the company TECHNOTORGKOMPLEKS
    1075

Mass product status update in 1C-Bitrix

After a season ends, 200 products need to be unpublished. At midnight, a promotion starts, activating 50 products simultaneously. Both scenarios require bulk status changes, but a naive implementation introduces race conditions or high MySQL load. With over 5 years of Bitrix development experience and 50+ completed projects, we deliver proven solutions. A proper batch implementation can speed up status updates by 100 times compared to a one-by-one loop. Customers typically save 60–80% in operational costs, which can amount to thousands of dollars annually.

Understanding product status in Bitrix

A product in Bitrix is an infoblock element with multiple activity properties. The main field is ACTIVE (Y/N) in the b_iblock_element table. Additionally, there are activity time boundaries: ACTIVE_FROM and ACTIVE_TO — the period during which the product is active. If the current time is not within the range, the element is considered inactive regardless of the ACTIVE flag.

Custom statuses (new, promotion, hit, bestseller) are separate infoblock properties of type "List", not the built-in ACTIVE field. Bulk changes to custom properties require a different approach, discussed in the relevant section below.

How to mass update ACTIVE status using D7?

Direct update through the ORM is the fastest method for the ACTIVE field. For bulk status update in Bitrix, use D7:

$productIds = [1001, 1002, 1003];

foreach (array_chunk($productIds, 100) as $chunk) {
    \Bitrix\Iblock\ElementTable::updateMulti($chunk, ['ACTIVE' => 'N']);
    // Clear cache for updated elements
    foreach ($chunk as $id) {
        \Bitrix\Main\Application::getInstance()->getTaggedCache()
            ->clearByTag('iblock_element_' . $id);
    }
}

updateMulti performs a single UPDATE b_iblock_element SET ACTIVE='N' WHERE ID IN (...) — optimal for MySQL. According to Bitrix Developer Documentation, this method bypasses events, making it ideal for pure data manipulation. D7 updateMulti is 100 times faster than CIBlockElement::Update for bulk operations.

However, direct update via ORM bypasses Bitrix events (OnBeforeIBlockElementUpdate, OnAfterIBlockElementUpdate). If other modules are subscribed to these events (CRM, search, custom handlers), you need to use CIBlockElement::Update():

foreach ($productIds as $id) {
    \CIBlockElement::Update($id, false, ['ACTIVE' => 'N'], false);
    // 4th parameter false — without recalculating access rights
}

For CIBlockElement update with events, use the loop approach.

How to schedule activation for a specific time?

For promotional launches at a specific time, use ACTIVE_FROM / ACTIVE_TO fields. No need to run a script at midnight — just set the dates:

\CIBlockElement::Update($productId, false, [
    'ACTIVE'      => 'Y',
    'ACTIVE_FROM' => '01.12.2024 00:00:00',
    'ACTIVE_TO'   => '31.12.2024 23:59:59',
]);

Bitrix automatically considers the current date when displaying in catalog. The filter in the bitrix:catalog.section component by default includes ACTIVE_DATE = 'Y', which checks the date range.

Bulk update of custom status properties

A property of type "List" (L) — for example, "Status: New / Promotion / Hit" — is updated via SetPropertyValuesEx. For bulk update:

$enumValues = [];
$enum = \CIBlockPropertyEnum::GetList(
    [],
    ['PROPERTY_ID' => $propertyId, 'VALUE' => 'Promotion']
);
if ($enumItem = $enum->Fetch()) {
    $enumValueId = $enumItem['ID'];
}

foreach (array_chunk($productIds, 50) as $chunk) {
    foreach ($chunk as $id) {
        \CIBlockElement::SetPropertyValuesEx($id, $iblockId, [
            'STATUS' => $enumValueId,
        ]);
    }
    usleep(50000);
}

Conditional status change

If you need to change the status only for products with certain conditions (e.g., deactivate all products with zero stock), fetch the list first:

// Find products with zero stock
$zeroStock = \Bitrix\Catalog\ProductTable::getList([
    'filter' => ['QUANTITY' => 0, 'QUANTITY_TRACE' => 'Y'],
    'select' => ['ID', 'IBLOCK_ELEMENT_ID'],
])->fetchAll();

$elementIds = array_column($zeroStock, 'IBLOCK_ELEMENT_ID');

// Deactivate
foreach (array_chunk($elementIds, 100) as $chunk) {
    \Bitrix\Iblock\ElementTable::updateMulti($chunk, ['ACTIVE' => 'N']);
}

This query runs in seconds for thousands of products vs. minutes when iterating element-by-element through CIBlockElement::GetList.

Performance and race condition issues

When two operations update products simultaneously (for example, someone clicks the "Activate" button while a cron job runs a bulk update), a race condition occurs. One handler reads old data, another reads new. Result: lost updates or conflicts. The solution is to use transactions and versioning. Before updating, check if the record has changed:

$element = \Bitrix\Iblock\ElementTable::getByPrimary($id)->fetch();
if ($element['MODIFIED'] === $knownModified) {
    \Bitrix\Iblock\ElementTable::update($id, ['ACTIVE' => 'N']);
} else {
    // Record changed, skip
}

MySQL load increases with the number of products. Updating 100,000 products naively (one by one in a loop) takes hours or even days, as each update requires a separate SQL query. The correct approach: batch update (updating 100-500 at once in a single transaction). With batching, time drops from hours to minutes, and database load decreases by 10-50 times. For catalogs over 100,000 products, we recommend using a cron-agent that updates products in the background to avoid blocking the admin interface.

Method Speed Events triggered Use case
D7 updateMulti Very fast (single SQL) No Pure data updates, no side effects
CIBlockElement::Update Moderate (one SQL per item) Yes When events needed
SetPropertyValuesEx Slow (multiple SQL) Yes Custom property updates
Advanced performance tuning For catalogs over 1M products, consider using direct SQL via $DB->Query() with chunking and transactions. This bypasses ORM overhead entirely, but requires careful handling of cache invalidation.

Integration with 1C

When automatically updating statuses from 1C, you need to distinguish changes coming from 1C from local updates made via the admin panel. Use an additional property flag: if a product was updated from 1C, set FROM_1C = Y and save a timestamp of the last synchronization. This prevents cyclic updates (Bitrix sends a change back to 1C, 1C returns it again) and helps debug synchronization in logs. When updating a product via CommerceML, it's important to preserve local overrides — for example, if a manager manually deactivated a product, it should not be overwritten by 1C during the next synchronization. This technique is ideal for Bitrix product activation in batches.

Deliverables

  • Prototyping and performance testing on your product volume.
  • Development of a control console (admin panel) for bulk operations.
  • Integration with 1C (if needed).
  • Race condition handling and safe parallel operations.
  • Caching and index optimization.
  • Documentation and team training.
  • Access rights setup.
  • 3 months of post-launch support.

Timeframes and guarantee

Basic implementation of bulk status update — 3–5 days. Full system with admin panel, 1C integration, and conflict handling — 1–2 weeks. Basic implementation starts at $500; full system with all features from $2,000. We guarantee that updating 100,000 products will be completed within a timeframe you define (usually under 5 minutes, compared to 10+ hours manually). Contact us for a consultation — we will analyze your catalog and offer the optimal solution.

With over 5 years of Bitrix development experience and 50+ successful projects, we ensure high-quality delivery.

What Professional 1C-Bitrix Installation Includes

We start by checking innodb_buffer_pool_size. The default MySQL value (128 MB) is a death sentence for an online store with a catalog of 10,000+ items. We set 70–80% of available RAM on a dedicated server, 50% on VPS. This single setting speeds up the site by 2–3 times compared to the default. We'll assess your project in one day — get a consultation. Contact us to order turnkey installation with performance guarantee.

How to Choose Hosting and Edition for 1C-Bitrix Installation?

BitrixVM is a virtual machine with a pre-installed stack: nginx + Apache, PHP-FPM, MySQL/MariaDB, Sphinx, Push server. For VPS — the best start. Everything is already configured for Bitrix, including OPcache, log rotation, and firewall. Management via web panel on port 8890. Bitrix documentation recommends starting with BitrixVM for predictable performance.

VPS/VDS is the sweet spot. Minimum configuration for a medium online store: 2 vCPU, 4 GB RAM, SSD. Optimal: 4 vCPU, 8 GB RAM. OS: Ubuntu 22.04 or Debian 12. If not BitrixVM, we configure the stack manually for the task. Virtual hosting — only for business cards and landing pages. Requirements: PHP 8.0+, MySQL 5.7+ / MariaDB 10.0+, 512 MB RAM, .htaccess. 1C-Bitrix hosting partners guarantee compatibility. Dedicated server — for highload. Typical architecture: web server separate, database separate, Redis/Memcached separate. For Enterprise edition — web cluster with load balancer. Cloud (Yandex Cloud, VK Cloud, Selectel) — when load spikes: sales, seasonal peaks. Autoscaling via Managed Kubernetes or simple VM vertical scaling.

Choosing the edition is equally important. A common mistake: choosing "Small Business" for a store that grows to B2B with wholesale prices and three warehouses in six months. Upgrading to "Business" — pay the difference, data is not lost, but it's better to plan ahead. Our specialists select the edition for current tasks and with room for growth. For example, the "Business" license (about 35,000 RUB) pays off through multi-warehouse and 1C exchange, while the wrong choice can lead to a loss of up to 30,000 RUB monthly on excess resources.

Edition For Whom Key Limitation
Start Business cards, landing pages No infoblocks 2.0, no trade catalog
Standard Corporate sites No e-commerce module
Small Business Small stores 1 price type, 1 warehouse, no 1C exchange
Business Medium stores, B2B Multi-warehouse, multicurrency, CommerceML
Enterprise Highload, cluster Web cluster, CDN, multisite

What Server Settings Are Critical for 1C-Bitrix?

Web Server and PHP

nginx as reverse proxy + Apache (mod_php) or nginx + PHP-FPM directly. The second option saves memory — Apache is not needed. But some Bitrix modules use .htaccess, so for compatibility we sometimes keep Apache. nginx configuration: fastcgi_read_timeout 300 — for long operations (1C import), client_max_body_size 1024m — large file uploads. Block access to .settings.php, .settings_extra.php, bitrix/.settings.php — they contain database passwords. Rewrite rules from urlrewrite.php — Bitrix generates them, but with nginx + PHP-FPM they need to be duplicated. PHP 8.0–8.2 with extensions: mbstring, curl, gd, xml, json, opcache, redis/memcached. Key php.ini settings: opcache.memory_consumption=256, opcache.max_accelerated_files=20000, max_execution_time=300, memory_limit=512M, upload_max_filesize=100M, post_max_size=128M.

Database and Caching

MySQL/MariaDB. Key my.cnf parameters: innodb_buffer_pool_size — 70–80% RAM, innodb_log_file_size=256M, tmp_table_size=256M, max_heap_table_size=256M, thread_pool_size — number of CPU cores. Encoding utf8mb4 mandatory, otherwise emoji and special characters break. Redis is preferable to Memcached for Bitrix — supports persistent connections and is more reliable. In production, Redis handles concurrent writes three times faster than Memcached under typical load. Configure in .settings_extra.php:

'cache' => ['value' => ['type' => ['class_name' => '\\Bitrix\\Main\\Data\\CacheEngineRedis']]]
'session' => ['value' => ['mode' => 'default', 'handlers' => ['general' => ['type' => 'redis']]]]
Example Redis configuration for Bitrix
sudo apt install redis-server
sudo systemctl enable redis

Add to .settings_extra.php as above.

SSL, Email, and Cron

SSL — Let's Encrypt via certbot in 90% of cases. Redirect HTTP → HTTPS (301), HSTS, TLS 1.2/1.3, OCSP Stapling. In Bitrix, switch to HTTPS in the main module settings. Email: abandon mail() — connect SMTP (Yandex.Mail for domain, Mail.ru for Business). Be sure to configure SPF, DKIM, DMARC. Without SPF, emails go to spam. Test deliverability via mail-tester.com — score 9+/10. Cron: Bitrix agents switch to system cron — * * * * * /usr/bin/php /var/www/bitrix/modules/main/tools/cron_events.php. Schedule 1C exchange (15–60 min), search reindex, backups (mysqldump + rsync, rotation 7+4), temporary file cleanup.

Security and Administration

File system: owner www-data, directories 755, files 644, upload 775. nginx blocks access to configuration files. Enable Bitrix Proactive Protection — WAF, activity control (block after 5 failed attempts), kernel integrity check. For admin panel: two-factor authentication via Google Authenticator or OTP, restrict access by IP via nginx for paranoid.

How Long Does 1C-Bitrix Installation and Configuration Take?

Task Timeline
Installation on virtual hosting 2–4 hours
Installation on VPS with stack configuration 1–2 days
Installation on dedicated with architecture design 2–5 days
SSL + email + cron + security 1–2 days
Backup and monitoring setup 0.5–1 day

Post-Installation Checklist

  1. Performance Monitor (/bitrix/admin/perfmon_panel.php) — aim for 30+ points. Below 20 means serious configuration issues.
  2. System Check — automatic check of all parameters. Red items must be fixed, yellow — case by case.
  3. Security Scanner — check for typical vulnerabilities.
  4. PageSpeed Insights — TTFB < 200ms on VPS, LCP < 2.5s.
  5. Test 1C exchange — if integration is planned, verify CommerceML exchange before launch.

Additionally, check software versions, caching settings, cron operation, SSL certificate, SPF/DKIM/DMARC, access rights, delete default users and pages. For projects with 54-FZ, ensure fiscalization is configured via OFD provider.

Deliverables

  • Fully configured server for 1C-Bitrix with MySQL, PHP, nginx optimization.
  • Installed and activated license of the required edition.
  • SSL certificate, email settings, cron and backups.
  • Documentation: all configuration parameters, access credentials, cron tasks.
  • Content manager training: how to log into admin panel, add products, upload images.
  • Post-installation support for 30 days — consultations on settings.

Why Trust Professionals with Installation?

Incorrect installation means lost time and money. We've seen projects where a store on "Start" couldn't handle 50 visitors because innodb_buffer_pool_size wasn't configured. After migrating to VPS with correct configuration, the site "flew". Incorrect configuration can cost 30,000 RUB monthly due to excessive resource consumption. You get a ready-made architecture that scales. Order turnkey 1C-Bitrix installation — get a reliable platform for business growth. Contact us for a free consultation: we'll calculate the cost and time for your project. Over 7 years of experience, 120+ Bitrix projects implemented, including highload stores with million-item catalogs. Get in touch — we'll help configure Bitrix for your project.