📊 State of Magento 2025

The Home for Magento 2 Excellence

Quality-tested Magento 2 modules. Explore. Evaluate. Elevate. #magento2

613 Modules
401 Ready
211 Need Help
🏆 Leaderboard
Potentially Abandoned v1.0.6

Command Scheduler Magento2

tkotosz/command-scheduler-magento2

Schedules `bin/magento` commands to run via the Magento admin panel. Allows users to execute commands without direct server access.

50,557
Downloads
Below average
6
GitHub Stars
Below average
5y ago
Last Release
0
Open Issues
Build Passing
Ready to install

Build Tests

Composer Install
DI Compile
Templates

Code Quality

CS Coding Standard
2 errors , 127 warnings
PHPStan Failed

Tested on Magento 2.4.8-p3

Recent Test History

Each release is tested against the latest Magento version at that time.

v1.0.6 on Magento 2.4.8-p3
Dec 28, 2025

Share This Module's Status

Command Scheduler Magento2 Magento compatibility status badge

README

Loaded from GitHub

Command Scheduler module for Magento 2

License Latest Stable Version Scrutinizer Code Quality Build Status

This module allows you to schedule bin/magento commands in the Magento admin. This makes it possible to run bin/magento command with only Magento admin access.

Usage:

  1. Configure the allowed commands: List of allowed commands can be configured in the di like this:
<type name="Tkotosz\CommandScheduler\Model\AllowedCommandsContainer">
    <arguments>
        <argument name="allowedCommands" xsi:type="array">
            <item name="Cache Clean" xsi:type="string">cache:clean</item>
        </argument>
    </arguments>
</type>
  1. Schedule any allowed command on the System > Tools > Schedule Commands admin page

  2. Wait for the schedule processor to run: By default a cron runs every 5 minute to process the next pending schedule. (alternatively you can use the bin/magento command-scheduler:process-next-schedule command to trigger the schedule processing)

  3. Check the result of the command execution on the System > Tools > Schedule Commands admin page by clicking on the "view result" link

This content is fetched directly from the module's GitHub repository. We are not the authors of this content and take no responsibility for its accuracy, completeness, or any consequences arising from its use.