• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] automatic featured ?

Started by haydenfan,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

haydenfanTopic starter

Hi

How I can set automatic featured for videos? , I must always go to admin then click on featured for every video.

Thanks
HUGE/BIG FAN  OF HAYDEN PANETTIERE :)

Linux VPS server
Intel  Xeon 8 core
25 GB ram
10 TB HD
100 GB Internet connection
  •  

PHPVibe A.

This pattern you'll have to think it yourself, based on what algorithm they get features...since there is no universal solution.

guest7728

I am doing this by adminer, but is better by cron :-D

All:
use `db_name`;
UPDATE `vibe_videos` SET `featured` = replace(`featured`, "0", "1")

Longest than 3600sec.:
use `db_name`;
UPDATE `vibe_videos`
SET `featured` = 1
WHERE `duration` > '3600'

db_name = name of your db

and of course, is possible to make automatic filter :-)

  •  

haydenfanTopic starter

Quote from: winksus on
I am doing this by adminer, but is better by cron :-D

All:
use `db_name`;
UPDATE `vibe_videos` SET `featured` = replace(`featured`, "0", "1")

Longest than 3600sec.:
use `db_name`;
UPDATE `vibe_videos`
SET `featured` = 1
WHERE `duration` > '3600'

db_name = name of your db

and of course, is possible to make automatic filter :-)

Thanks , I will try it :)
HUGE/BIG FAN  OF HAYDEN PANETTIERE :)

Linux VPS server
Intel  Xeon 8 core
25 GB ram
10 TB HD
100 GB Internet connection
  •  

Similar topics (7)