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-23-2007 12:17 PM

So close!

When the page loads, "Warning: implode() [function.implode]: Bad arguments. in /page_ping.php on line 39" appears at the top. The ping works though - the results appear where they should. Once the ping is complete, the implode error disappears.

Dismounted 10-24-2007 06:40 AM

Sorry, I was a bit careless :p.
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);
    
$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 02:40 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.01089 seconds
  • Memory Usage 1,723KB
  • 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
  • (1)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
  • (2)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