项目的 cron 作业设置 - 我如何给出路径

发布于 2024-10-30 23:59:42 字数 121 浏览 1 评论 0原文

在我的项目中,我想实现一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

妄想挽回 2024-11-06 23:59:42

您必须根据系统文件层次结构给出相对或绝对路径。如果您的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文