Bug #19910
closedLink to CLI Script in Check DP->ReferenceIndex Script is wrong
0%
Description
The path points out a non existing file, when informing the admin that he might Run a CLI Script checking/cleaning reference index.
(issue imported from #M10259)
Files
Updated by Daniel Krupke over 15 years ago
I can confirm this.
The suggested path is:
/.../typo3/sysext/lowlevel/dbint/cli/refindex_cli.phpsh
But there is only this file in that path:
/.../typo3/sysext/lowlevel/dbint/cli/refindex_cli.php
Since the introduction of the new CLI framework, you should use refindex CLI-script this way. Caution: you have to use the full path when you call this script.
/.../typo3/cli_dispatch.phpsh lowlevel_refindex
It would be best to change text in Backend according to the new CLI framework way, wouldn't it?
Example:
You can also run the check as a shell script if the processing takes longer than the PHP max_execution_time allows:
$PWD/typo3/cli_dispatch.phpsh lowlevel_refindex
Replace $PWD with path to you typo3 installation.
Updated by Daniel Krupke over 15 years ago
I submitted a patch for trunk. I doesn't make sense to make a patch for TYPO3-4.2 branch because text is hard coded there.
This Bug is related to 9710, 7482 and 6248.
Updated by Daniel Krupke over 15 years ago
Attached new patch (bug10259_2_trunk.patch.txt) without first hunk.