mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
In case if cron isn't set, in Settings/Server tab you will see suggestions for cron command
This commit is contained in:
@@ -26,6 +26,23 @@
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div v-if="!cron.running" class="mt-8">
|
||||
<AppInputText
|
||||
:title="$t('Shared Web Hosting (Cpanel, Plesk, etc...) Command')"
|
||||
:description="$t('Proposed command for Shared Web Hosting (Cpanel, Plesk, etc...)')"
|
||||
>
|
||||
<CopyInput size="small" :str="cron.command.shared" />
|
||||
</AppInputText>
|
||||
|
||||
<AppInputText
|
||||
:title="$t('Crontab Command')"
|
||||
:description="$t('Proposed command for crontab. Available only for setup via linux terminal.')"
|
||||
:is-last="true"
|
||||
>
|
||||
<CopyInput size="small" :str="cron.command.vps" />
|
||||
</AppInputText>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--Broadcasting-->
|
||||
@@ -217,6 +234,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppInputText from "../../../../components/Forms/Layouts/AppInputText";
|
||||
import CopyInput from "../../../../components/Inputs/CopyInput";
|
||||
import { CheckIcon, XIcon, DownloadCloudIcon } from 'vue-feather-icons'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
@@ -228,6 +247,8 @@ import ButtonBase from "../../../../components/UI/Buttons/ButtonBase";
|
||||
export default {
|
||||
name: 'Server',
|
||||
components: {
|
||||
AppInputText,
|
||||
CopyInput,
|
||||
ButtonBase,
|
||||
FormLabel,
|
||||
InfoBox,
|
||||
|
||||
Reference in New Issue
Block a user