GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Wordpress experts I need some help (https://gfy.com/showthread.php?t=1349051)

Major (Tom) 10-11-2021 03:20 PM

Wordpress experts I need some help
 
I need a plugin that can limit how many videos someone can watch in a day, or something along those lines.
Does a plugin exist that can handle that?
Is this something that requires custom coding?
Can you do it? And how much

Pm me here or my skype &/or icq in my deets.
Thank you!
Duke

vdbucks 10-11-2021 08:39 PM

Your best option is a cookie-based method. We used to do this on our tours some time ago, I'll see if I still have the code for it laying around when I get to the office tomorrow.

Major (Tom) 10-11-2021 08:50 PM

Quote:

Originally Posted by vdbucks (Post 22923584)
Your best option is a cookie-based method. We used to do this on our tours some time ago, I'll see if I still have the code for it laying around when I get to the office tomorrow.

Thanks brother

Major (Tom) 10-13-2021 09:36 AM

Ba bump bump

kingdezign 10-13-2021 11:11 PM

are you still looking for wp pluign developer?

Major (Tom) 10-13-2021 11:14 PM

Quote:

Originally Posted by kingdezign (Post 22924338)
are you still looking for wp pluign developer?

Yes I am!!

brassmonkey 10-14-2021 01:46 AM

let me look dogg
yo!
https://www.superblogme.com/contact-me/
he will hook u up!!!

j3rkules 10-14-2021 03:18 AM

Quote:

Originally Posted by brassmonkey (Post 22924379)
let me look dogg
yo!
https://www.superblogme.com/contact-me/
he will hook u up!!!

Definitely worth contacting him.

:thumbsup

HowlingWulf 10-14-2021 06:52 AM

There's quite a few plugins that will restrict content. Some of them are free. I would check those out first. Start here: https://wplift.com/plugins-to-restrict-content

brassmonkey 10-14-2021 07:21 AM

Quote:

Originally Posted by HowlingWulf (Post 22924417)
There's quite a few plugins that will restrict content. Some of them are free. I would check those out first. Start here: https://wplift.com/plugins-to-restrict-content

if i had the cash i would hire a guy such as yourself :winkwink:

vdbucks 10-14-2021 07:22 AM

My bad for not getting back to you sooner...

I looked through all of our old tours but couldn't find the exact code we used. It's something along the lines of this though:

Code:

<?php

// use your variable here
$ID_OF_VIDEO_HERE = $_REQUEST['video'];

if(isset($_SESSION) === false)
  session_start(); // Start PHP session management
if(isset($_SESSION['videos_viewed']) === false)
  $_SESSION['videos_viewed'] = array();

if(isset($_SESSION['videos_viewed'][$ID_OF_VIDEO_HERE]) === FALSE AND count($_SESSION['videos_viewed']) >= 3)
{
  // Redirect the User
  header('location: http://SUBSCRIBE_PAGE');
  exit();
}
else
{
  // Add current video ID to list
  $_SESSION['videos_viewed'][$ID_OF_VIDEO_HERE] = true;
}

// JUST FOR TESTING
var_dump($_SESSION['videos_viewed']);

?>


OneHungLo 10-14-2021 08:40 AM

Try this.

https://wordpress.org/plugins/passwordsentry/

Besides password mgmt it also has bw limiting.


All times are GMT -7. The time now is 10:05 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc