• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] how to prevent download from vimeo

Started by esultanzada,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

esultanzadaTopic starter

Hi guys,
i embed one video in my website, and in vimeo setting i uncheck that no one can download, but when i play video on website, user can download it, how can i disable completely?
  •  

PHPVibe A.

Hi,

what are you talking about?

Do you have Vimeo pro or something? If so, you should check their support/forums.
I don't recognise any "download" in the PHPVibe vimeo settings.

esultanzadaTopic starter

Ok got it,

how can i disable cache? because when i put new videos it didnt show me??
  •  

PHPVibe A.

You have the instructions in the admin under Settings -> Cache
It's normal to not show for visitors, when you'll have a lot of visitors you'll see this is magic.

esultanzadaTopic starter

For stop caching, should i change the follow value:
define( 'DB_CACHE', '1' );

to this:
define( 'DB_CACHE', '0' );

it will stop?
  •  

PHPVibe A.

There are 2 caches in effect.
Changing it to 0 will most likely kill your server, not turn it off.

Remove this from load.php:
/* Cache it for visitors */
$a = $_SERVER['REQUEST_URI'];
if(!isset($_SESSION['user_id']) && (strpos($a,'register') == false) && (strpos($a,'login') == false)) {
require_once( INC.'/fullcache.php' );
$token = (isset($_SESSION['phpvibe-language'])) ? $a.$_SESSION['phpvibe-language'] : $a;
FullCache::Encode($token);
FullCache::Live();
}
/* End cache */

Similar topics (7)