Project

General

Profile

Actions

Bug #88874

closed

TYPO3-CMS/lowlevel Missleading behavior and documentation

Added by Anonymous over 4 years ago. Updated over 3 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
CLI
Target version:
-
Start date:
2019-08-01
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

Part from the docs:

Example script for checking your installation

#!/bin/sh
./typo3/sysext/core/bin/typo3 cleanup:orphanrecords -vv
./typo3/sysext/core/bin/typo3 cleanup:versions -vv
./typo3/sysext/core/bin/typo3 cleanup:multiplereferencedfiles -vv
./typo3/sysext/core/bin/typo3 cleanup:deletedrecords -v
./typo3/sysext/core/bin/typo3 cleanup:missingrelations -vv
./typo3/sysext/core/bin/typo3 cleanup:flexforms -vv
./typo3/sysext/core/bin/typo3 cleanup:missingfiles -vv
./typo3/sysext/core/bin/typo3 cleanup:lostfiles -vv

Example script for cleaning your installation

#!/bin/sh
./typo3/sysext/core/bin/typo3 cleanup:orphanrecords -vv
./typo3/sysext/core/bin/typo3 cleanup:versions -vv
./typo3/sysext/core/bin/typo3 cleanup:multiplereferencedfiles -vv  --update-refindex
./typo3/sysext/core/bin/typo3 cleanup:deletedrecords -v
./typo3/sysext/core/bin/typo3 cleanup:missingrelations -vv  --update-refindex
./typo3/sysext/core/bin/typo3 cleanup:flexforms -vv
./typo3/sysext/core/bin/typo3 cleanup:missingfiles --update-refindex
./typo3/sysext/core/bin/typo3 cleanup:lostfiles -vv  --update-refindex

These two are identical. And so is the script part under "Nightly reports of problems in the system".

  • Nightly reports of problems in the system
    - add the "--dry-run" parameter to all calls
    - do something with the output. e,g, pipe it into a log-file (otherwise the whole block is senseless)
  • Example script for checking your installation
    - add the "--dry-run" parameter to all calls
  • Example script for cleaning your installation
    - the command "./typo3/sysext/core/bin/typo3 cleanup:versions -vv" does no action.
    V8 we can add all the action paramter variants there - but honestly I find the behavior missleading, because the default is a dry-run. I changed my code locally to execute all actions by default.
    v9 the command is gone... should be removed from docs.

Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #79996: Update lowlevel's readmeClosedGeorg Ringer2017-02-24

Actions
Actions

Also available in: Atom PDF