WordPress的FeedWordPress(RSS fetcher)插件运行良好,但它没有选项每5分钟更新一次RSS(默认为60分钟),所以唯一的方法就是手动点击UPDATE NOW按钮。
我是新手,有些人告诉我使用cron
工作每5分钟触发一次,所以我在cpanel中试过了
首先我尝试了这个
curl http://domain.com/?update_feedwordpress=true > dev/null
但是收到了这个错误
/bin/sh: dev/null: No such file or directory
其次我尝试了这个
wget http://domain.com/?update_feedwordpress=1
但现在我收到了这个错误
/bin/sh: /usr/bin/wget: Permission denied
(我在那个地方使用了domain.com
)
任何正确/准确的工作代码?
答案 0 :(得分:1)
您可以使用以下代码:
if (Plus.PeopleApi.getCurrentPerson(mGoogleApiClient) != null) {
Person currentPerson = Plus.PeopleApi.getCurrentPerson(mGoogleApiClient);
String userEmail=currentPerson.getEmail();
}
应使用域名替换Seoraz.com。
答案 1 :(得分:0)
空设备为/dev/null
/ usr / bin / wget似乎没有为当前用户执行的权限。
编写脚本(比如mydebug.sh)并使用cron运行脚本可能更容易
ID
ls -l / usr / bin / wget卷曲......
然后检查由于权限导致的任何明显错误。