Hello,
I install drupal 6.14.
I am a begginner.
Why start Poormanscron ? I go to site information and choose 1 hours
But my rss flux don't update !!

thanks.

Comments

saltcod’s picture

clear your cache in Performance -- not sure if that will do it, but it might.

falco-’s picture

Hello,
what do i verify that it's ok without stay one hour ?
Thanks.

falco-’s picture

Hello,
No, it doesn' work. Have you a solution ? My rdd fessd does't update but il i clic on crontab manualy it-s ok. When do i do to throw the adresss http://mysite/?q=admin/reports/status/run-cronautomatiquement ?
Thanks ...

vm’s picture

If I understand correctly poormanscron requires traffic to work correctly. Without traffic cron won't run.

Personally, I'd check my hosts documentation for how to set up a cron job on the server to call cron.php every hour.

falco-’s picture

Yes, thanks
i don't access in root in my server !
What do i do to update all my rss feed ?
thanks.

WorldFallz’s picture

You usually don't need root to configure a cron job-- even the cheapest shared hosting will often have some sort of control panel to configure cron. Check with your host on how to access it.

falco-’s picture

thanks,
but i don't acess to my server ! Is it not possible to run http://mysite/?q=admin/reports/status/run-cron into a file in drupal every one hour ?
thanks for your help

WorldFallz’s picture

It's almost impossible to run a website without some sort of access-- as I said, even shared hosts have to allow this (you don't normally need SSH or root-- you should have some sort of webbased control panel to access your hosting account/website). Another option, if you're on windows, is you could setup a scheduled task to visit the url once an hour, but then it will depend on your pc and your internet access whether or not the cron script runs on the server.

Barring that, again, I point you to your host-- ask them how to you're supposed to run a scheduled job on their hosting service. we can sit here and make guesses all day long to no avail-- only you can verify with the host what you can and can't do.

falco-’s picture

Hello,
i see http://drupalcron.org/ but what do i write im my cron.php ?
thanks

vm’s picture

You need to stop approaching this in the way you are. We're trying to guide to one the way to do this properly.

Who is your host? I'll locate the documentation for you in their knowledge base.

Otherwise, use google to locate a service to run cron.php every hour. These tasks do not require you to add code any file.

falco-’s picture

i am french ...

i don't realy understand what you say, in my host !!
I don't find a service in google can you tell me this service to help me.

thanks

vm’s picture

What is the name of the company that is providing your server?
Have you contacted your host about the services they provide with reference to cron jobs?

falco-’s picture

ok,
i find a solution with a cron on two server linux with
10 * * * * wget -O - -q -t 1 http://mysite/cron.php
20 * * * * wget -O - -q -t 1 http://mysite/cron.php
30 * * * * wget -O - -q -t 1 http://mysite/cron.php
40 * * * * wget -O - -q -t 1 http://mysite/cron.php
50 * * * * wget -O - -q -t 1 http://mysite/cron.php
!!

Thanks

vm’s picture

be careful with what you have there. You don't need 5 separate cron jobs spaced out every 10 minutes. You should set up 1 cron job to run every 10 minutes. As it stands looks like by the time you get to 50 minutes you'll have multiple cron jobs running at the same time which is unnecessary and could be resource intensive as you start to add content to the site.