在windows服务器/Plesk上运行计划任务



试图将远程php文件作为计划任务运行,但出现php错误。

错误为"无法打开输入文件:http://www.example.com/example.php"

尝试以各种格式编写:

"C:Program Files (x86)ParallelsPleskAdditionalPleskPHP5php.exe" -f http://www.example.com/example.php
"C:Program Files (x86)ParallelsPleskAdditionalPleskPHP5php.exe" -f http://www.example.com/example.php

也尝试过不使用–f参数,但都会导致相同的错误消息

它在运行本地域php文件时确实有效:

"C:Program Files (x86)ParallelsPleskAdditionalPleskPHP5php.exe" -f "C:inetpubvhostsexample.comhttpdocsexample.php"

如何在plesk控制面板中创建删除计划任务

https://www.motherhost.com/help/creating-or-removing-scheduled-tasks-in-plesk/

在Plesk 中创建或删除计划任务

在Windows服务器上,您可以通过创建时间表任务(类似于在Linux服务器上运行cron作业的方式)将它们设置为在特定时间运行。在Plesk 10:中创建计划任务

您可以通过以下操作在Plesk中设置计划任务:

Log into Plesk*
Click on the Websites & Domains tab.
Click on Show Advanced Operations (a small grey link in the middle of the page), if the advanced options are not already shown.
Click on Scheduled Tasks.
Select the appropriate system user.
Click on Schedule New Task.
Fill out the form as follows:
    Switched On:  Check the box to turn on the scheduled task.
    Description:  A short description to remind you what this scheduled task does.
    Scheduler Notification:  If you want an email every time this runs, select the appropriate option, otherwise select Do Not Send.  You may provide an email address where you want the notifications sent to.
    Path to executable file:  Specify the path to the file you wish to execute.  For Windows servers, it would be something like this:
    C:Program Files (x86)ParallelsPleskAdditionalPleskPHP5php-cgi.exe
    Arguments: D:Inetpubvhostsmydomain.tldhttpdocsmyscript.php
    For Linux servers with Plesk, ir would be something like this:
    /var/www/vhosts/domain.tld/httpdocs/myscript.php
    Replace domain.tld with your domain name, and myscript.php with the appropriate subfolder(s) (if any) and filename.
    Task Priority:  Select Low, Normal or High.
    Specify when to run your command by selecting the appropriate checkboxes in the Hours, Days of month, Months or Days of week fields.
    Click OK to schedule the task or click Run Now to schedule the task and immediately run it.
You will be taken back to the Scheduled Tasks screen and you should see your new scheduled task listed at the bottom.

删除Plesk 10 中的计划任务

Logging into Plesk*
Click on the Websites & Domains tab.
Click on Show Advanced Operations (a small grey link in the middle of the page), if the advanced options are not already shown.
Click on Scheduled Tasks.
Select the appropriate system user.
Check the box next to the Scheduled Task you want to remove.
Click on the Remove button.
It will load a new page and ask if you really want to deleted it.  Check the Confirm Removal box and click on the OK button.
You will be taken back to the Scheduled Tasks screen and it should say: "Information: Scheduled tasks were removed."

网络托管印度&托管印度的经销商

PHP命令行执行仅支持本地文件。如果您想获取远程PHP脚本输出,那么您可以使用wget。

注意:请确保wget.exe已安装在windows服务器上。请与您的主机提供商联系以获取路径。

c:....path to wget...wget.exe http://www.example.com/example.php

最新更新