TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:38 +02:00
commit 4392dbe2ce
142 changed files with 11824 additions and 0 deletions
@@ -0,0 +1,56 @@
:navigation-title: Manual Execution
.. include:: /Includes.rst.txt
.. _manually-executing-a-task:
.. _executing-a-task-on-next-cronjob:
===========================================================
Manually executing a task from the Scheduler backend module
===========================================================
You can manually execute tasks from the BE module. After execution, each
task shows success or failure.
* If a task was overdue, a new execution date is calculated.
* If it was not overdue, the existing next execution date remains.
Running tasks:
* To run a single task, press the button in its row.
* To run multiple tasks, select their checkboxes and press the button below the list.
There are two options:
* Run the task immediately. (Button 2 in the screenshot)
* Schedule the task. (Button 1 in the screenshot) The selected tasks will
then run on the next cron job.
.. figure:: /Images/ManualExecution.png
:alt: Scheduler backend module with the buttons "Run task on next cron job" (1) and "Run task" (2) highlighted
Button 2 runs the task immediately, while button 1 schedules it fot the next cronjob run
.. _manually-executing-a-task-cli:
Manually executing a task from the console
==========================================
.. tabs::
.. group-tab:: Composer mode
.. code-block:: bash
# Note the id of the task
vendor/bin/typo3 scheduler:list
vendor/bin/typo3 scheduler:execute --task=<taskUid>
.. group-tab:: Classic mode
.. code-block:: bash
# Find the id of the task
typo3/sysext/core/bin/typo3 scheduler:list
typo3/sysext/core/bin/typo3 scheduler:execute --task=<taskUid>