vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Need help - custom ping script! (https://vborg.vbsupport.ru/showthread.php?t=160626)

rayw 10-20-2007 05:23 AM

Need help - custom ping script!
 
Using this mod I want to imbed a custom Ping script into the page.

The script works fine, it pings a web address or IP fine however, the results are outputted to the very top of the web page, above the logo. I want the results to output right underneath the field that you type the web address/IP into.

Here is the ping script:
Code:

<?php
 
error_reporting(E_ALL & ~E_NOTICE);
 
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'page_ping'); // change this depending on your filename
 
$phrasegroups = array(

);
 
$specialtemplates = array(
   
);
 
$globaltemplates = array(
    'page_ping',
);
 
$actiontemplates = array(

);
 
chdir('/home/USERNAME/public_html/');
require_once('./global.php'); 

// Start Ping
$_ip = $_SERVER['REMOTE_ADDR'];
if($_GET['do'] == 'ping')
{
$_domain = $_POST['domain'];
                echo "<pre>";
                  system ("ping -w 10 -c 5 $_domain");

                  echo "</pre>";
}

// End Ping

$pingresult = $_POST['ping -w 10 -c 5 $_domain'];

$navbits = array();
$navbits[$parent] = 'Ping';

$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('page_ping') . '");');

?>


Here is my template:
Code:

$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle]</title>
$headinclude
</head>
<body>
$header

$navbar

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">Ping</td>
</tr>
<tr>
<td class="alt1">

Enter the IP Address or domain name of the server that you want to ping.<br>


<form method='post' action='page_ping.php?do=ping'><input type='text' name='domain' value=''>&nbsp;<input type='submit' value='Ping'></form>

<br /><br />

$pingresult

<br />

</td>
</tr>
</table>

$footer
</body>
</html>

You can try it yourself here: http://www.itresource.com.au/page_ping.php

What do I need to do to get this working correctly? I've tried many different things to get this working - currently this seems to be the most 'functional' for lack of a better word.

Any help would be greatly appreciated.

Thanks! :)

Marco van Herwaarden 10-20-2007 05:58 AM

Create a template for it instead of using 'echo'.

Regular echo is only suitable for debug with vBulletin.

rayw 10-20-2007 10:35 AM

Sorry, I'm going to need a bit more detail. I don't understand! :(

Dismounted 10-20-2007 12:07 PM

All your display should be in your templates. The PHP code should not print any output into the browser (except for the final print_output), but instead assign all the data into variables for use in the template.

rayw 10-23-2007 09:21 AM

Hmmm! Not having much luck with this. I even tried dynamic AJAX inclusions using a script from dynamic drive and I still couldn't get it to work properly.

Unfortunately, I'm not the most talented coder out there. :(

Dismounted 10-23-2007 09:54 AM

Use this PHP instead of yours. The template doesn't need to be changed (keep the one you posted above).
PHP Code:

<?php 
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// ##################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_SCRIPT''page_ping');

// #################### PRE-CACHE TEMPLATES AND DATA ###################### 
// get special phrase groups 
$phrasegroups = array();

// get special data templates from the datastore 
$specialtemplates = array();

// pre-cache templates used by all actions 
$globaltemplates = array(
    
'page_ping'
);

// pre-cache templates used by specific actions 
$actiontemplates = array();

// ########################## REQUIRE BACK-END ############################ 
chdir('/home/USERNAME/public_html');
require_once(
'./global.php'); 

// ######################################################################## 
// ######################### START MAIN SCRIPT ############################ 
// ######################################################################## 

// do pinging
if ($_GET['do'] == 'ping')
{
    
$domain $_POST['domain'];
    
system("ping -w 10 -c 5 $domain"$pingresult);
}

// prepare navbits
$navbits = array();
$navbits[] = 'Ping';
$navbits construct_navbits($navbits);

// spit out html
eval('$navbar = "' fetch_template('navbar') . '";');
eval(
'print_output("' fetch_template('page_ping') . '");');
?>


rayw 10-23-2007 10:08 AM

I had something similar to what you have posted but I there were a few errors in mine when I tried to run it.

There are no errors in yours but check it out now (http://www.itresource.com.au/page_ping.php). I wont bother explaining, you will see the results yourself.

Dismounted 10-23-2007 10:24 AM

PHP Code:

<?php 
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// ##################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_SCRIPT''page_ping');

// #################### PRE-CACHE TEMPLATES AND DATA ###################### 
// get special phrase groups 
$phrasegroups = array();

// get special data templates from the datastore 
$specialtemplates = array();

// pre-cache templates used by all actions 
$globaltemplates = array(
    
'page_ping'
);

// pre-cache templates used by specific actions 
$actiontemplates = array();

// ########################## REQUIRE BACK-END ############################ 
chdir('/home/USERNAME/public_html');
require_once(
'./global.php'); 

// ######################################################################## 
// ######################### START MAIN SCRIPT ############################ 
// ######################################################################## 

// do pinging
if ($_GET['do'] == 'ping')
{
    
$domain $_POST['domain'];
    
exec("ping -w 10 -c 5 $domain"$temp$pingresult);
}

// prepare navbits
$navbits = array();
$navbits[] = 'Ping';
$navbits construct_navbits($navbits);

// spit out html
eval('$navbar = "' fetch_template('navbar') . '";');
eval(
'print_output("' fetch_template('page_ping') . '");');
?>


rayw 10-23-2007 11:04 AM

Now no results appear, just a 0 under the form.

Dismounted 10-23-2007 11:22 AM

PHP Code:

<?php 
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// ##################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_SCRIPT''page_ping');

// #################### PRE-CACHE TEMPLATES AND DATA ###################### 
// get special phrase groups 
$phrasegroups = array();

// get special data templates from the datastore 
$specialtemplates = array();

// pre-cache templates used by all actions 
$globaltemplates = array(
    
'page_ping'
);

// pre-cache templates used by specific actions 
$actiontemplates = array();

// ########################## REQUIRE BACK-END ############################ 
chdir('/home/USERNAME/public_html');
require_once(
'./global.php'); 

// ######################################################################## 
// ######################### START MAIN SCRIPT ############################ 
// ######################################################################## 

// do pinging
if ($_GET['do'] == 'ping')
{
    
$domain $_POST['domain'];
    
exec("ping -w 10 -c 5 $domain"$output);
}

// implode output
$pingresult implode('<br />'$output);

// prepare navbits
$navbits = array();
$navbits[] = 'Ping';
$navbits construct_navbits($navbits);

// spit out html
eval('$navbar = "' fetch_template('navbar') . '";');
eval(
'print_output("' fetch_template('page_ping') . '");');
?>



All times are GMT. The time now is 07:01 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01898 seconds
  • Memory Usage 1,776KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (3)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete