Quote Originally Posted by matrix_france View Post
Dear admins and users, actually i'm having a trouble with import videos and bulk videos.

I still couldn't fix the cronjob correctly but as mentionned in your forum we are able to run cron.php without using cronjobs to import videos from youtube.

So i tried it yesterday, when i add some import or bulk videos to the "Process Queue" the status of the videos are "Added to Queue" then i run the "cron.php" manually.

After some times, the status of the videos changed to "Download Started" but nothing else then after. Even if i wait several times its dosen't change.

Ive tried to run again the cron.php it donsen't change any thing.
So i change the satuts manually, i choose "converte again" then i click on proceed. It gives me a CONVERSION ERROR.

I REALLY NEED YOUR HELP :confused:
if you have ssh log in
type crontab -e

then add this */6 * * * * wget http://your site .com/cron.php

*/6 runs every 6 minutes or whatever your want it set to

e.g.
01 * * * * root echo "This command is run at one min past every hour"
17 8 * * * root echo "This command is run daily at 8:17 am"
17 20 * * * root echo "This command is run daily at 8:17 pm"
00 4 * * 0 root echo "This command is run at 4 am every Sunday"
* 4 * * Sun root echo "So is this"
42 4 1 * * root echo "This command is run 4:42 am every 1st of the month"
01 * 19 07 * root echo "This command is run hourly on the 19th of July"
hope this helps