Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

http Revemu

I want Revemu HTTp And You tube !!!! how Can I do This???

Comments

  • Options
    peregrineperegrine MVP
    edited April 2014

    write down the exact links. what do you mean. You need to explain better, if you want better answers and be more descriptive. Your welcome in advance.

    explain your goal - are you trying to block spammers. In your original question - you said you wanted to block http, now you don't want to block http. you need to figure out exactly what you want and explain it in terms so others can understand.

    see your previous discussion

    http://vanillaforums.org/discussion/26526/bane-url

    plz HElp Me HELp yOU.

    are you capable of finding an english translator on the web or near your house.

    Revemu HTTp

    if you want to unblock youtube and Revemu.com add this to the plugin's default.php

    replace
     // $domainnamearray[2] = "|" .  "myplaceholder.com . "|si";  /* also allow */
        // $domainnamearray[3] = "|" . "www.example.com" . "|si"; /* also allow */
    
    with
    
    
    
    $domainnamearray[2] = "|" . "http://" . "youtube.com" . "|si"; /* also allow */
    $domainnamearray[3] = "|" .  "youtube.com"  . "|si";  /* also allow */
    $domainnamearray[4] = "|" . "http://" . "Revemu.com" . "|si"; /* also allow */ 
    $domainnamearray[5] = "|" .   "Revemu.com" . "|si"; /* also allow */  
    

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • Options
    peregrineperegrine MVP
    edited April 2014

    you can keep on items to the

    $domainnamearray[N] that you want to allow on your site following this example.

    just increment the array for each new item

    e.g.

     $domainnamearray[6]    = "|" . "http://" . "example.com" . "|si"; /* also allow */
     $domainnamearray[7] = "|" . "http://" . "example.com" . "|si"; /* also allow */
    

    etc.

    the longer the match the better.

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • Options

    correction to above post...

    you can keep on adding items to the

    $domainnamearray[N] for sites that you want to allow on your site following this example.

    just increment the array for each new item
    
    e.g.
    
        $domainnamearray[6] = "|" . "http://" . "example.com" . "|si"; /* also allow */
        $domainnamearray[7] = "|" .  "example.com" . "|si"; /* also allow */
    
    etc.
    
    the longer the match the better.
    

    added this for people who have trouble explaining or understanding etiquette

    and i posted a few more threads worth reading.

    http://vanillaforums.org/discussion/23130/forum-post-ettikett-etiquette

    http://vanillaforums.org/discussion/17954/food-for-thought-forum-etiquette

    http://vanillaforums.org/discussion/25115/how-to-how-can-a-new-user-better-help-the-community-when-asking-a-question

    http://vanillaforums.org/discussion/23483/advice-for-all-those-just-starting-out-with-vanilla

    http://vanillaforums.org/discussion/18015/how-to-ask-questions-on-the-internet

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

Sign In or Register to comment.