diff --git a/docs/content_management/url_management/url_management.md b/docs/content_management/url_management/url_management.md index a41052cfb8..9527125e91 100644 --- a/docs/content_management/url_management/url_management.md +++ b/docs/content_management/url_management/url_management.md @@ -40,20 +40,20 @@ To enable automatic URL validation, set up cron to run the `ibexa:check-urls` co For example, to check links every week, add the following script: ``` -echo '0 0 * * 0 cd [path-to-ibexa]; php bin/console ibexa:check-urls --quiet --env=prod' > ezp_cron.txt +echo '0 0 * * 0 cd [path-to-ibexa]; php bin/console ibexa:check-urls --quiet --env=prod' > ibexa_cron.txt ``` Next, append the new cron to user's crontab without destroying existing crons. Assuming that the web server user data is www-data: ``` -crontab -u www-data -l|cat - ezp_cron.txt | crontab -u www-data - +crontab -u www-data -l | cat - ibexa_cron.txt | crontab -u www-data - ``` Finally, remove the temporary file: ``` -rm ezp_cron.txt +rm ibexa_cron.txt ``` ### Configuration diff --git a/docs/getting_started/install_ibexa_dxp.md b/docs/getting_started/install_ibexa_dxp.md index b4d33b9805..3e45a116b3 100644 --- a/docs/getting_started/install_ibexa_dxp.md +++ b/docs/getting_started/install_ibexa_dxp.md @@ -402,20 +402,20 @@ To enable delayed publishing of Content using the Date-based Publisher, you must For example, to check for publishing every minute, add the following script: -`echo '* * * * * cd [path-to-ibexa-dxp]; php bin/console ibexa:cron:run --quiet --env=prod' > ezp_cron.txt` +`echo '* * * * * cd [path-to-ibexa-dxp]; php bin/console ibexa:cron:run --quiet --env=prod' > ibexa_cron.txt` For 5-minute intervals: -`echo '*/5 * * * * cd [path-to-ibexa-dxp]; php bin/console ibexa:cron:run --quiet --env=prod' > ezp_cron.txt` +`echo '*/5 * * * * cd [path-to-ibexa-dxp]; php bin/console ibexa:cron:run --quiet --env=prod' > ibexa_cron.txt` Next, append the new cron to user's crontab without destroying existing crons. Assuming the web server user data is `www-data`: -`crontab -u www-data -l|cat - ezp_cron.txt | crontab -u www-data -` +`crontab -u www-data -l | cat - ibexa_cron.txt | crontab -u www-data -` Finally, remove the temporary file: -`rm ezp_cron.txt` +`rm ibexa_cron.txt` ### Enable the Link manager