How to create a jabber id using PHP XMPPHP in a private server

Multi tool use
Multi tool use








up vote
-3
down vote

favorite












i have a private server for jabber XMPP under Tor socks and i have used google XMPPHP to send messages to some ids in the same server.



include 'XMPPHP/config.php';
include 'XMPPHP/XMPP.php';
$conn = new XMPPHP_XMPP(host, port, user, pass, 'xmpphp', domain, $printlog=false, $loglevel=XMPPHP_Log::LEVEL_INFO);

try
$conn->connect();
$conn->processUntil('session_start');
$conn->presence();
$account = "messengerId@xxxxxxxxx.onion";
$conn->useEncryption(true);
$conn->subscribe($account);
$conn->message($account, 'aaaaa');
$conn->disconnect();
catch(XMPPHP_Exception $e)
echo $e->getMessage();



This code work successfully i need a way to create a new account in the server from php code and log in to it from the Pidgin software.










share|improve this question



























    up vote
    -3
    down vote

    favorite












    i have a private server for jabber XMPP under Tor socks and i have used google XMPPHP to send messages to some ids in the same server.



    include 'XMPPHP/config.php';
    include 'XMPPHP/XMPP.php';
    $conn = new XMPPHP_XMPP(host, port, user, pass, 'xmpphp', domain, $printlog=false, $loglevel=XMPPHP_Log::LEVEL_INFO);

    try
    $conn->connect();
    $conn->processUntil('session_start');
    $conn->presence();
    $account = "messengerId@xxxxxxxxx.onion";
    $conn->useEncryption(true);
    $conn->subscribe($account);
    $conn->message($account, 'aaaaa');
    $conn->disconnect();
    catch(XMPPHP_Exception $e)
    echo $e->getMessage();



    This code work successfully i need a way to create a new account in the server from php code and log in to it from the Pidgin software.










    share|improve this question

























      up vote
      -3
      down vote

      favorite









      up vote
      -3
      down vote

      favorite











      i have a private server for jabber XMPP under Tor socks and i have used google XMPPHP to send messages to some ids in the same server.



      include 'XMPPHP/config.php';
      include 'XMPPHP/XMPP.php';
      $conn = new XMPPHP_XMPP(host, port, user, pass, 'xmpphp', domain, $printlog=false, $loglevel=XMPPHP_Log::LEVEL_INFO);

      try
      $conn->connect();
      $conn->processUntil('session_start');
      $conn->presence();
      $account = "messengerId@xxxxxxxxx.onion";
      $conn->useEncryption(true);
      $conn->subscribe($account);
      $conn->message($account, 'aaaaa');
      $conn->disconnect();
      catch(XMPPHP_Exception $e)
      echo $e->getMessage();



      This code work successfully i need a way to create a new account in the server from php code and log in to it from the Pidgin software.










      share|improve this question















      i have a private server for jabber XMPP under Tor socks and i have used google XMPPHP to send messages to some ids in the same server.



      include 'XMPPHP/config.php';
      include 'XMPPHP/XMPP.php';
      $conn = new XMPPHP_XMPP(host, port, user, pass, 'xmpphp', domain, $printlog=false, $loglevel=XMPPHP_Log::LEVEL_INFO);

      try
      $conn->connect();
      $conn->processUntil('session_start');
      $conn->presence();
      $account = "messengerId@xxxxxxxxx.onion";
      $conn->useEncryption(true);
      $conn->subscribe($account);
      $conn->message($account, 'aaaaa');
      $conn->disconnect();
      catch(XMPPHP_Exception $e)
      echo $e->getMessage();



      This code work successfully i need a way to create a new account in the server from php code and log in to it from the Pidgin software.







      php xmpp tor xmpphp






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 11 at 12:20

























      asked Nov 10 at 23:19









      ChaiBtc

      12




      12



























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244373%2fhow-to-create-a-jabber-id-using-php-xmpphp-in-a-private-server%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244373%2fhow-to-create-a-jabber-id-using-php-xmpphp-in-a-private-server%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          ZuWmp 5472GKXSmGvkc O,dME2YPazRrE bS6dg 2CbAW8vRMzDMAn1Q1Upygm2,DxBul1tJjs8oaVvULQU6uOSoop7EM3VZDZB
          Y0wZ uyCXk wEO5T5dIr0,EgYYBrm,IRr9vO oa5,9CMqoy,qUGAF oSv3GezfztddnfrVl91dA1 nTd pFDnU9Q98D8 PYN9y4a9tX 3

          這個網誌中的熱門文章

          How to read a connectionString WITH PROVIDER in .NET Core?

          Spillway

          A major