Page 2 of 3 FirstFirst 1 2 3 LastLast
Results 16 to 30 of 44

Create your own Privacy Policy (using vb templates)

This is a discussion on Create your own Privacy Policy (using vb templates) within the Member Articles forums, part of the Focus on Members category; looks like adsense is cracking down on enforcing their new policies, including having a privacy policy. Going to add this!...

  1. #16
    Senior Member
    Real Name
    John
    Join Date
    Dec 2005
    Posts
    691
    Liked
    17 times
    looks like adsense is cracking down on enforcing their new policies, including having a privacy policy. Going to add this!

  2. #17
    Senior Member
    Real Name
    John
    Join Date
    Dec 2005
    Posts
    691
    Liked
    17 times
    I got mine up, thanks!

    Privacy Policy - Cell Phone Forums

  3. #18
    Member 1QuickSI's Avatar
    Real Name
    Steven
    Join Date
    Jan 2006
    Location
    CT
    Posts
    87
    Liked
    3 times
    Have always had one I just use the FAQ to house it and then link to it there.

  4. #19
    Senior Member Jason_A's Avatar
    Real Name
    Jason Abbot
    Join Date
    Feb 2008
    Location
    USA
    Posts
    278
    Liked
    0 times
    Blog Entries
    1
    Updated .php file:
    Code:
    <?php
    
    // ####################### SET PHP ENVIRONMENT ###########################
    error_reporting(E_ALL & ~E_NOTICE);
    
    // #################### DEFINE IMPORTANT CONSTANTS #######################
    define('NO_REGISTER_GLOBALS', 1);
    define('THIS_SCRIPT', 'privacy'); 
    define('CSRF_PROTECTION', true);  
    
    // ################### PRE-CACHE TEMPLATES AND DATA ######################
    // get special phrase groups
    $phrasegroups = array(
    
    );
    
    // get special data templates from the datastore
    $specialtemplates = array(
        
    );
    
    // pre-cache templates used by all actions
    $globaltemplates = array(
        'privacy',
    );
    
    // pre-cache templates used by specific actions
    $actiontemplates = array(
    
    );
    
    // ######################### REQUIRE BACK-END ############################
    require_once('./global.php');
    
    // #######################################################################
    // ######################## START MAIN SCRIPT ############################
    // #######################################################################
    
    
    
    $navbits = array();
    $navbits[$parent] = 'Privacy Policy';
    
    $navbits = construct_navbits($navbits);
    
    
    
    eval('$navbar = "' . fetch_template('navbar') . '";');
    eval('print_output("' . fetch_template('privacy') . '");');
    
    ?>
    Just added the CSRF protection under define THIS_SCRIPT

  5. #20
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    is it really necessary? there's no admin/mod functions to be had on the page...

  6. #21
    Senior Member Jason_A's Avatar
    Real Name
    Jason Abbot
    Join Date
    Feb 2008
    Location
    USA
    Posts
    278
    Liked
    0 times
    Blog Entries
    1
    You should always add this to your file, even if you don't think the script is ever going to receive POST requests.

  7. #22
    Senior Member
    Real Name
    Martyn Day
    Join Date
    Dec 2005
    Location
    Kent - UK
    Posts
    650
    Liked
    0 times
    Blog Entries
    1
    Privacy Statement - Xentoo.com - Multiplayer Gaming Network

    nothing special, similar to my other site.

  8. #23
    Junior Member
    Real Name
    Gerald Yuvallos
    Join Date
    May 2008
    Location
    Philippines
    Posts
    28
    Liked
    1 times
    Thank you Brian, I'm gonna borrow your policy while we formulate our own. Please let me know if you will not allow it.

  9. #24
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    No, it's fine to use my words... just note that no lawyer has approved of it and it may not be 100% legit. I just whipped it up so that i could comply with adsense's rule of having a line about the 3rd party cookies, etc.

  10. #25
    Junior Member
    Real Name
    GiantHaystax
    Join Date
    Aug 2008
    Posts
    27
    Liked
    0 times
    Thanks for this Brian. I have used the text also minus the COPPA stuff and changed to to UK legislation. I am based in the UK as are the servers the sites hosted on so as far as I'm aware US COPPA laws don't apply. Data protection act 1998 does instead.

    Has anyone updated there policy to meet the new google interest based tracking that is coming in shortly?
    Last edited by GiantHaystax; 03-16-2009 at 09:40 AM.

  11. #26
    Senior Member
    Real Name
    CommanderTalk.com
    Join Date
    Jun 2007
    Location
    Arizona
    Posts
    372
    Liked
    2 times
    I run vbadvanced CMPS and am having trouble getting this to to work. It works find when I click on the link when I am in the forums, however, from the portal it is not re-writing the url correctly and leaving on /forums/

    Thanks in advance!
    CommanderTalk.com --> www.commandertalk.com

  12. #27
    Member
    Real Name
    snerd
    Join Date
    May 2007
    Posts
    61
    Liked
    0 times

  13. #28
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    Sorry, i can't support vba as i don't use it. Frankly, i recommend not using it in the first place.

  14. #29
    Senior Member
    Real Name
    CommanderTalk.com
    Join Date
    Jun 2007
    Location
    Arizona
    Posts
    372
    Liked
    2 times
    Quote Originally Posted by briansol View Post
    Sorry, i can't support vba as i don't use it. Frankly, i recommend not using it in the first place.
    Oh I thought maybe you would know since you know how the custom re-writes work.
    CommanderTalk.com --> www.commandertalk.com

  15. #30
    Senior Member Shadab's Avatar
    Real Name
    Shadab
    Join Date
    Oct 2007
    Location
    Bhopal
    Posts
    821
    Liked
    0 times
    Blog Entries
    12
    Quote Originally Posted by dieselpowered View Post
    Oh I thought maybe you would know since you know how the custom re-writes work.
    I think vBAdvaced has an option in the adminCP where you can enter the list of URLs
    (e.g. sendmessage.php, calendar.php) that are automatically prefixed by '/forum/' on the homepage.

    Try entering privacy.php or privacy/ there.

    Not sure if this setting is still present, though. I stopped using vBA CMPS long ago.

    EDIT: Yes, it's still available at:
    AdminCP » vBa CMPS » Default Settings » vBadvanced Global Options » Footer Replacements

Page 2 of 3 FirstFirst 1 2 3 LastLast

Similar Threads

  1. my privacy.php doesnt seem to want to work..
    By Martyn in forum URL Rewrite Settings
    Replies: 4
    Last Post: 08-17-2007, 12:34 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •