|   |   |   | ||||
| Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. | 
|    | 
| 
 | |||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. | 
|  | Thread Tools | 
|  10-11-2021, 03:20 PM | #1 | 
| White Pride Industry Role:  Join Date: Nov 2003 Location: Null 
					Posts: 30,895
				 | 
				
				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 
				__________________ WHITE LIVES MATTER | 
|   |           | 
|  10-11-2021, 08:39 PM | #2 | 
| Monger Cash Industry Role:  Join Date: Jul 2010 
					Posts: 2,773
				 | 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. | 
|   |           | 
|  10-11-2021, 08:50 PM | #3 | 
| White Pride Industry Role:  Join Date: Nov 2003 Location: Null 
					Posts: 30,895
				 | Thanks brother 
				__________________ WHITE LIVES MATTER | 
|   |           | 
|  10-13-2021, 09:36 AM | #4 | 
| White Pride Industry Role:  Join Date: Nov 2003 Location: Null 
					Posts: 30,895
				 | Ba bump bump 
				__________________ WHITE LIVES MATTER | 
|   |           | 
|  10-13-2021, 11:11 PM | #5 | 
| So Fucking Banned Industry Role:  Join Date: Mar 2012 
					Posts: 236
				 | are you still looking for wp pluign developer? | 
|   |           | 
|  10-13-2021, 11:14 PM | #6 | 
| White Pride Industry Role:  Join Date: Nov 2003 Location: Null 
					Posts: 30,895
				 | 
				__________________ WHITE LIVES MATTER | 
|   |           | 
|  10-14-2021, 01:46 AM | #7 | 
| Pay It Forward Industry Role:  Join Date: Sep 2005 Location: Yo Mama House 
					Posts: 77,250
				 | 
				__________________ TRUMP 2025 KEKAW!!! - The Laken Riley Act Is Law! DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com | 
|   |           | 
|  10-14-2021, 03:18 AM | #8 | |
| VIP Industry Role:  Join Date: Jul 2013 
					Posts: 22,111
				 | Quote:  | |
|   |           | 
|  10-14-2021, 06:52 AM | #9 | 
| Confirmed User Join Date: Nov 2001 
					Posts: 1,662
				 | 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 | 
|   |           | 
|  10-14-2021, 07:21 AM | #10 | |
| Pay It Forward Industry Role:  Join Date: Sep 2005 Location: Yo Mama House 
					Posts: 77,250
				 | Quote: 
  
				__________________ TRUMP 2025 KEKAW!!! - The Laken Riley Act Is Law! DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com | |
|   |           | 
|  10-14-2021, 07:22 AM | #11 | 
| Monger Cash Industry Role:  Join Date: Jul 2010 
					Posts: 2,773
				 | 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']);
?> | 
|   |           | 
|  10-14-2021, 08:40 AM | #12 | 
| So Fucking Banned Industry Role:  Join Date: May 2001 Location: Your mom's front hole 
					Posts: 40,906
				 | Try this. https://wordpress.org/plugins/passwordsentry/ Besides password mgmt it also has bw limiting. | 
|   |           |