Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 01-19-2011, 08:14 PM
leonarrias leonarrias is offline
 
Join Date: Oct 2007
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Possible template issue

Hi there, had a good look around the articles area before deciding to post this asking for help.

Looked at the 'how to add custom vbulletin page for VB4' done the new template named it, done the php file and added a nice little dropdown box to link it to.

However, when i try to add content to the page i have my major issue:

Presently i have the custom page content in the actual php page, resulting in said content being at the very top of the page.

The content is php code to check if a server(s) is online or offline....if i try to put this into the customer template i made, then all i get is what i pasted coughed up on the page, unparsed.

That is my problem....putting the php code in the php file makes it work, but it sticks at the top of the page, if i put the code in the template, the format works, but it doesn't parse in php.

Page in question: http://flexgaming.net/servers.php

Anyone able to help with this?

Many thanks!
Reply With Quote
  #2  
Old 01-19-2011, 09:14 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You'll need to post your full php page and your template in order for anyone to see what is wrong. Please use the code tags when you do so.
Reply With Quote
  #3  
Old 01-19-2011, 09:18 PM
leonarrias leonarrias is offline
 
Join Date: Oct 2007
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay here's the template and php code.

Template:
Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
  <head>
    <title>{vb:raw vboptions.bbtitle} - {vb:raw pagetitle}</title>
    {vb:raw headinclude}
    {vb:raw headinclude_bottom}
  </head>
  <body>
    
    {vb:raw header}
    
    {vb:raw navbar}
    
    <div id="pagetitle">
      <h1>{vb:raw pagetitle}</h1>
    </div>
        <h2 class="blockhead">Title</h2>
    <div class="blockbody">

<-I enter my text here->

      <div class="blockrow">
      </div>
    </div>
    
    {vb:raw footer}
  </body>
</html>
PHP FILE CODE:

Code:
<?php

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

// #################### DEFINE IMPORTANT CONSTANTS #######################

define('THIS_SCRIPT', 'FlexGaming Servers List');
define('CSRF_PROTECTION', true);  
// change this depending on your filename

// ################### 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('serverslist',
);

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

// ######################### REQUIRE BACK-END ############################
// if your page is outside of your normal vb forums directory, you should change directories by uncommenting the next line
// chdir ('/path/to/your/forums');
require_once('./global.php');
$navbits[$parent] = 'Servers';
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################

$navbits = construct_navbits(array('' => 'Flex-Gaming Servers List'));
$navbar = render_navbar_template($navbits);

$data .= " 
<style> 
td,body 
{ 
font-family: Arial, Helvetica, sans-serif; 
font-size: 8pt; 
color: #444444; 
} 
</style> 
<br> 
<center> 
<div style=\"border-bottom:1px #999999 solid;width:480;\"><b> 
<font size='1' color='#3896CC'>Service Status</font></b> 
</div> 
</center> 
<br>"; 

//configure script 
$timeout = "1"; 

//set service checks 
//$port[1] = "80"; $service[1] = "Apache"; $ip[1] =""; 
$port[1] = "25565"; $service[1] = "<font size='2' color='#3896CC'>*Official FlexGaming* - MineCraft Server</font>"; $ip[1] ="81.19.212.247"; 
$port[2] = "25566"; $service[2] = "<font size='2' color='#3896CC'>*FlexGaming Member Hosted* - MineCraft Server</font>"; $ip[2] ="62.75.149.88"; 
/*$port[4] = "25"; $service[4] = "Email(POP3)"; $ip[4] =""; 
$port[5] = "143"; $service[5] = "Email(IMAP)"; $ip[5] =""; 
$port[6] = "2095"; $service[6] = "Webmail"; $ip[6] =""; 
$port[7] = "2082"; $service[7] = "Cpanel"; $ip[7] =""; 
$port[8] = "80"; $service[8] = "Internet Connection"; $ip[8] ="google.com"; 
$port[9] = "2086"; $service[9] = "WHM"; $ip[9] =""; */

// 
// NO NEED TO EDIT BEYOND HERE 
// UNLESS YOU WISH TO CHANGE STYLE OF RESULTS 
// 

//count arrays 
$ports = count($port); 
$ports = $ports + 1; 
$count = 1; 

//beggin table for status 
$data .= "<table width='480' border='1' cellspacing='0' cellpadding='3' style='border-collapse:collapse' bordercolor='#333333' align='center'>"; 

while($count < $ports){ 

if($ip[$count]==""){ 
$ip[$count] = "localhost"; 
} 

$fp = @fsockopen("$ip[$count]", $port[$count], $errno, $errstr, $timeout); 
if (!$fp) { 
$data .= "<tr><td>$service[$count]</td><td bgcolor='#FFC6C6'>Offline </td></tr>"; 
} else { 
$data .= "<tr><td>$service[$count]</td><td bgcolor='#D9FFB3'>Online</td></tr>"; 
} 
$count++; 

} 

//close table 
$data .= "</table>"; 

echo $data; 
/*$data1 .= " 
<br> 
<center> 
<div style=\"border-bottom:1px #999999 solid;width:480;\"><b> 
<font size='1' color='#3896CC'>Server Information</font></b> 
</div>
</center><BR>"; */

$data1 .= "<table width='480' border='1' cellspacing='0' cellpadding='3' style='border-collapse:collapse' 

bordercolor='#333333' align='center'>"; 

/*//GET SERVER LOADS 
$loadresult = @exec('uptime'); 
preg_match("/averages?: ([0-9\.]+),[\s]+([0-9\.]+),[\s]+(
[0-9\.]+)/",$loadresult,$avgs); 


//GET SERVER UPTIME 
$uptime = explode(' up ', $loadresult); 
$uptime = explode(',', $uptime[1]); 
$uptime = $uptime[0].', '.$uptime[1]; 

$data1 .= "<tr><td>Server Load Averages </td><td>$avgs[1], $avgs[2], $avgs[3]</td>\n"; 
$data1 .= "<tr><td>Server Uptime </td><td>$uptime </td></tr>"; 
$data1 .= "</table>"; 
echo $data1;*/


// ###### YOUR CUSTOM CODE GOES HERE #####
$pagetitle = 'Server List';

// ###### NOW YOUR TEMPLATE IS BEING RENDERED ######

$templater = vB_Template::create('serverslist');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
$templater->register('pagetitle', $pagetitle);
print_output($templater->render());

?>
Hope this helps, i've looked it over and as previously stated, really stumped.
Reply With Quote
  #4  
Old 01-19-2011, 09:27 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Do not "echo" $data. You need to put the data variable into your template after registering it. You add something like this at the bottom:

Code:
$templater->register('pagetitle', $pagetitle);
$templater->register('data', $data);

print_output($templater->render());
And this in your template:
Code:
        <h2 class="blockhead">Title</h2>
    <div class="blockbody">

{vb:raw data}

      <div class="blockrow">
Reply With Quote
  #5  
Old 01-19-2011, 09:40 PM
leonarrias leonarrias is offline
 
Join Date: Oct 2007
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That's done the trick, thank you very much.

Will explore that in better detail so i can learn from it, that had me fuming a good full day, again many thanks Lynne!
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:09 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.03704 seconds
  • Memory Usage 2,205KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (4)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (5)post_thanks_box
  • (5)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (5)post_thanks_postbit_info
  • (5)postbit
  • (5)postbit_onlinestatus
  • (5)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete