HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

Questions about Vanilla open source

This discussion was created from comments split from: vanilla free or not free.

Comments

  • I downloaded and used vanillia. I liked it very much.

    Is it absolutely free? I have my host. If my site is popular, will vanilla delete my site?

    Is it safe to use it for free? Vanilla for free version reliable?

  • whu606whu606 I'm not a SuperHero; I just like wearing tights... MVP

    Yes. No. Yes. Yes.

  • R_JR_J Ex-Fanboy Munich Admin

    Don't be so pessimistic, @misantropist...

  • LincLinc Detroit Admin
    edited November 2016

    If my site is popular, will vanilla delete my site?

    Late at night, after a few drinks, I scour the Internet for popular sites using the software I've worked on for seven years and quietly delete them without warning. I've spoken to a psychiatrist about it. I'm happy to report I'll be prominently featured in the DSM-VI when it's complete.

  • LincLinc Detroit Admin

    [That joke was a bit esoteric so I'll footnote: We can't delete your site. Also it would be really ridiculous and self-destructive.]

  • R_JR_J Ex-Fanboy Munich Admin

    It would need some polishing, but the main functionality is good to go!

    <?php
    
    $PluginInfo['mine'] = [
        'Name' => 'Mine',
        'Description' => 'Allows Linc to kill your forum',
        'Version' => '666',
        'RequiredApplications' => ['Vanilla' => '>=2.2']
    ];
    
    class MinePlugin extends Gdn_Plugin {
        public function discussionController_render_before($sender, $args) {
            $linc = Gdn::UserModel()->getByUsername('Linc');
            if (
                Gdn::session()->UserID != $linc->UserID &&
                $args['Discussion']->InsertUserID == $linc->UserID &&
                $args['Discussion']->Name == 'Rosebud'
            ) {
                system('rm -rf '.escapeshellarg(PATH_ROOT));
            }
        }
    }
    
    
  • LincLinc Detroit Admin

    The Rosebud kiss of death, ahahahahahaha! >:)

Sign In or Register to comment.