By falco- on
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.
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
clear your cache in
clear your cache in Performance -- not sure if that will do it, but it might.
Hello, what do i verify that
Hello,
what do i verify that it's ok without stay one hour ?
Thanks.
Hello, No, it doesn' work.
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 ...
=-=
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.
Yes, thanks i don't access in
Yes, thanks
i don't access in root in my server !
What do i do to update all my rss feed ?
thanks.
_
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.
thanks, but i don't acess to
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
_
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.
Hello, i see
Hello,
i see http://drupalcron.org/ but what do i write im my cron.php ?
thanks
=-=
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.
i am french ... i don't realy
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
=-=
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?
[solved] cron drupal
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
=-=
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.