Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. DavidPS
    D
    • Profile
    • Following 0
    • Followers 1
    • Topics 7
    • Posts 32
    • Best 1
    • Groups 0

    DavidPS

    @DavidPS

    1
    Reputation
    755
    Profile views
    32
    Posts
    1
    Followers
    0
    Following
    Joined Last Online

    DavidPS Unfollow Follow

    Best posts made by DavidPS

    • RE: Hide Widgets

      @julian said:

      hidden-xs

      Worked!

      posted in NodeBB Plugins
      D
      DavidPS

    Latest posts made by DavidPS

    • RE: Hide Widgets

      @julian said:

      hidden-xs

      Worked!

      posted in NodeBB Plugins
      D
      DavidPS
    • Hide Widgets

      Any way to hide widgets on mobile version?

      posted in NodeBB Plugins
      D
      DavidPS
    • RE: Custom PHP Page

      I want to redirect user to login as when you try to go any other private page like /unread

      posted in Plugin Development
      D
      DavidPS
    • RE: Custom PHP Page

      More questions: How make content for registred users only?

      posted in Plugin Development
      D
      DavidPS
    • RE: [nodebb-plugin-portal-homepage] menu problems

      Anybody know how to add title?

      posted in Plugin Requests
      D
      DavidPS
    • RE: Custom PHP Page

      Nice I nearly finished it! just need how to store some info to database and how to display errors with the nodebb modal boxes

      posted in Plugin Development
      D
      DavidPS
    • RE: Custom PHP Page

      How to send the results in a div or something?

      posted in Plugin Development
      D
      DavidPS
    • RE: Custom PHP Page

      @belstgut said:

      var TeamSpeakClient = require("node-teamspeak"),
          util = require("util");
      
      var cl = new TeamSpeakClient("##SERVERIP###");
      cl.send("login", {client_login_name: "##USERNAME##", client_login_password: "##PASSWORD##"}, function(err, response, rawResponse){
          cl.send("use", {sid: 1}, function(err, response, rawResponse){
              cl.send("clientinfo", {clid: "##CLIENTID##"} ,function(err, response, rawResponse){
                  console.log(util.inspect(response));
              });
          });
      });
      

      this should connect you to your server, log u in, select virtual server 1, and print clientinfo for the client with id ##CLIENTID##.

      (slightly modified from the node-teamspeak example)

      tryed to use it between <script> tang on HTML and nothing appeared

      posted in Plugin Development
      D
      DavidPS
    • RE: Custom PHP Page

      oh nice, how send it as var from plugin to template? becouse if i add this script as script won't be secure becouse i will show my user password to everyone who insepct the code

      posted in Plugin Development
      D
      DavidPS
    • RE: Custom PHP Page

      in what var this information will be stored? i don't understand the concept console.log of node.js

      posted in Plugin Development
      D
      DavidPS