Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 578129
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T14:13:39+00:00 2026-05-13T14:13:39+00:00

i need to retrieve information regarding a ventrilo server’s status. ventrilo’s website offers a

  • 0

i need to retrieve information regarding a ventrilo server’s status. ventrilo’s website offers a service to retrieve information about a server. for example, this is the game arena ventrilo server: http://www.ventrilo.com/status.php?hostname=144.140.154.11&port=25000

i am trying to grab the part under “Channel and User info.”. but that table has no id and there are many other tables on the page. how can i go about doing this?

i also heard that some browsers do not allow you to load external content. how could i get around this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T14:13:39+00:00Added an answer on May 13, 2026 at 2:13 pm

    In addition to Marc’s answer, you could use Yahoo’s YQL service to retrieve the table with the following query

    select * from html where url="http://www.ventrilo.com/status.php?hostname=144.140.154.11&port=25000" and xpath='//center[4]/table'
    

    You can then use the YQL result with jQuery to display the table on your website shown in the following demo.

    Working Demo

    http://jsbin.com/eveka (editable via http://jsbin.com/eveka/edit)

    Full Source

    JavaScript

    var
      ventriloStatus = $('#ventriloStatus'),
      hostname = '144.140.154.11',
      port = 25000,
      ventriloURL = 'http://www.ventrilo.com/status.php?hostname=' + hostname + '&port=' + port,
      yqlURL = 'http://query.yahooapis.com/v1/public/yql?callback=?',
      xpath = '//center[4]/table',
      query = 'select * from html where url="' + ventriloURL + '" and xpath="' + xpath + '"'
      data = {
        q: query,
        format: 'xml',
        diagnostics: false
      };
    
    ventriloStatus.text('Loading...');
    $.getJSON(yqlURL, data, function (response) {
      ventriloStatus.html(response.results[0]).find('img').each(function () {
        this.src = 'http://www.ventrilo.com/' + this.src.split('/').slice(-1)[0];
      });
    });
    

    HTML

    <!DOCTYPE html>
    <html>
    <head>
    <script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script>
    <meta charset=utf-8 />
    <title>Ventrilo with YQL</title>
    <style>
      body { font: 8pt sans-serif; }
      p { display: inline; }
      #ventriloStatus{ width: 600px; }
    </style>
    </head>
    <body>
      <h1>Ventrilo Status</h1>
      <div id="ventriloStatus"></div>
    </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to retrieve information about a hard disk and am using the statfs
I need to retrieve information from a SQL server and insert into a XML
I'm making a game in c++ that will need to store and retrieve information
I'm using the themoviedb.org's API to retrieve information about films. It's returning this JSON
I need to retrieve some information from a Liferay server with Javascript. I build
I'm using Data::Dumper to retrieve information from a server with SOAP messaging and need
I need to retrieve random rows from SQL Server database. I am looking for
I need to retrieve the data information from a database and bind the image
I'm using WMI to retrieve information about physical drives on the system: SELECT *
Essentially I need to retrieve some account information from the dbase table where they

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.