This is the best I could come up with, but it’s not working. any ideas?
thank you!
*/5 * * * * wget -qO /dev/null http://yoursite.com/bulk-import.php (or whatever the correct url is)
anyone have an idea on this? It would be much appreciated!
Instead of wget -qO /dev/null
Try:
/usr/bin/wget http://blahblahblah
(full URL of plugin bulk import link with authorization code) link is found in plugin > Bulk Import tab.
No errors with this one yet.
Best,
Tiff
Using wget results in file dumps in your home folder every time the cron job is run. Instead, consider using:
lynx -dump <URL>
Chris, when I try the lynx -dump I get an error
lynx: not found
I tried just this
lynx -dump <URL>
and
/usr/bin/lynx -dump <URL>
thanks for the help