项目的 cron 作业设置 - 我如何给出路径
在我的项目中,我想实现一个 cron 作业。我的骗局工作代码位于 www.myproject.com/testfolder/cgi-bin/crontest.pm
那么路径是什么。我必须在命令框中给出。请重播..
In my project i want to implement a cron job. My con job code is in www.myproject.com/testfolder/cgi-bin/crontest.pm
then what 's the path. that i have to be given in command box. Please replay ..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须根据系统文件层次结构给出相对或绝对路径。如果您的 Web 内容文件夹是 /var/www/(大多数 linux / apache 服务器上的默认文件夹)。
如果您不知道,您可以
echo __DIR__;
来了解当前目录的完整路径。然后,您根据当前目录规范化 cron 作业的文件路径。例如,如果 www.myproject.com 指向 /var/www,那么您的文件 crontest.pm 位于
/var/www/testfolder/cgi-bin/crontest.pm
注意:请注意 cgi- bin 文件夹通常放置在系统上的其他位置,因此请将
echo __DIR__;
放置在此目录中或尝试了解此别名指向的位置。You have to give a relative or absolute path based on your system file hierarchy. If your web content folder is /var/www/ (default on most linux / apache servers).
If you don't know it, you may
echo __DIR__;
to know the full path of the current directory. Then you canonicalize your cron job's file path based on the current directory.For exemple if www.myproject.com points to /var/www then your file crontest.pm is at
/var/www/testfolder/cgi-bin/crontest.pm
NB : be aware that cgi-bin folders are often placed elsewhere on your system, so place the
echo __DIR__;
in this directory or try to know where this alias points to.