vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3 Articles (https://vborg.vbsupport.ru/forumdisplay.php?f=187)
-   -   How To New Pages in vb style (https://vborg.vbsupport.ru/showthread.php?t=88565)

Mokster 11-29-2004 05:57 PM

bump :)

TheEnd 11-29-2004 06:18 PM

1 Attachment(s)
Thanks a bunch.
I did EVERYTHING you said to do, but I get this

roster2.php
Code:

$headinclude </head> <body> $header $navbar
<table width="100%" height="100%" border="0" align="center" cellpadding="0" cellspacing="$stylevar[cellspacing]" class="all">
<thead>
<tr align="center">
<td align="left" valign="top" class="thead">
<div align="left"></div>
<div align="left">
<table width="100%" border="0" cellpadding="3" cellspacing="0">
<tr>
<td class="tcat">**********Test Page**********</td>
</tr>
<tr>
<td>********Page Content would go here **********</td>
</tr>
</table>
<font size="2"><font face="Verdana, Arial, Helvetica, sans-serif"></font></font></div></td>
<if condition="$vboptions[showmoderatorcolumn]"> </if> </tr>
</thead>
$forumbits
<tbody>
</tbody>
</table>
$footer
</body>
</html>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<!DOCTYPE html PUBLIC "-

Output in IE:
Code:

$headinclude $header $navbar **********Test Page**********
********Page Content would go here **********
 
$forumbits  $footer ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<!DOCTYPE html PUBLIC "-

The PHP file is located in my /forums/ directory. Is that a problem? I am trying to get a page that I can use HTML on and update about once every week that is linked from my VB Index on VB 3.0.0 RC4. I want all the VB Index stuff surrounding it, but have where normally is news to be a clan roster.

I eventually want to have multipul styles so I don't want to half-*** it.
I attached an image of what i'm trying to do. There might be an easier way. And no, I don't want to have a forum for each page and post the roster in a forum and have VB Index read it. I want to fully HTML whats inside each block (eg. block= roster)

The problem:
roster2.php

TheEnd 11-30-2004 06:16 PM

Ok, I got it working now. I copied it wrong. I edited it and it worked. Looks great!

Is there an easy way to get all the VB Index stuff on the side of the pages?

GetGamer.com 12-29-2004 07:18 PM

Is there a way to store my custom .php page in a non-forum directory?

Tony G 12-30-2004 01:25 AM

I don't think so considering all vBulletin data is read within the main directory.

Motoscene 02-08-2005 03:07 AM

I am getting a white page as well. Not sure what I did wrong. I copyed and pasted everything you typed and changed the TEMPLATE NAME to the correct template I have added. Also I created a php file as well. Do I need to change anything else besides TEMPLATE NAME to make this work. Sorry I am very new at this. But edger to learn it. Thanks, Chain

Jolten 02-08-2005 05:34 AM

Quote:

Originally Posted by GetGamer.com
Is there a way to store my custom .php page in a non-forum directory?

yes.. add

chdir('/server/path/to/forum/directory');

after

define('THIS_SCRIPT', 'yourscript');


in the php file.

Motoscene 02-09-2005 05:34 AM

Well I am still having problems with this wo if anyone could help me out that would be great. I go ahead and tell you the way I uploaded it to my site.

First made the template (rules) in my styles. Also when I did that it placed it under custom templates. I sure that is right but one thing is that it is the only templete that looks tabed out????
Rules Template
Code:

$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<!-- no cache headers -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<!-- end no cache headers -->
<title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>
<style type="text/css">
<!--
.top {
        border-top-width: 1px;
        border-right-width: 1px;
        border-bottom-width: 1px;
        border-left-width: 1px;
        border-top-style: solid;
        border-top-color: #000000;
        border-right-color: #000000;
        border-bottom-color: #000000;
        border-left-color: #000000;
}
.all {
        border: 1px solid #000000;
        background-color: #FFFFFF;
}
-->
</style>

$headinclude </head> <body> $header $navbar
<table width="100%" height="100%" border="0" align="center" cellpadding="0" cellspacing="$stylevar[cellspacing]" class="all">
  <thead>
    <tr align="center">
      <td align="left" valign="top" class="thead">
<div align="left"></div>
        <div align="left">
<table width="100%" border="0" cellpadding="3" cellspacing="0">
            <tr>
              <td class="tcat">**********Test Page**********</td>
            </tr>
            <tr>
              <td>********Page Content would go here :)**********</td>
            </tr>
          </table>
          <font size="2"><font face="Verdana, Arial, Helvetica, sans-serif"></font></font></div></td>
      <if condition="$vboptions[showmoderatorcolumn]"> </if> </tr>
  </thead>
  $forumbits
  <tbody>
  </tbody>
</table>
$footer
</body>
</html>

And here is the php file that I made with notepad:
PHP Code:

<?php
 
// ####################### SET PHP ENVIRONMENT ###########################
 
error_reporting(E_ALL & ~E_NOTICE);
 
 
// #################### DEFINE IMPORTANT CONSTANTS #######################
 
define('NO_REGISTER_GLOBALS'1);
 
define('THIS_SCRIPT''yourscript');
 
 
// ################### 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(
 
'rules'
 
);
 
 
// pre-cache templates used by specific actions
 
$actiontemplates = array();
 
 
// ######################### REQUIRE BACK-END ############################
 
require_once('./global.php');
 
 
// ### ALL DONE! SPIT OUT THE HTML AND LET'S GET OUTA HERE... ###
 
 
eval('$navbar = "' fetch_template('navbar') . '";');
 eval(
'print_output("' fetch_template('rules') . '");');
 
 
 
?>


Jolten 02-09-2005 06:33 AM

you don't mention what the problems are.

Motoscene 02-09-2005 04:53 PM

oh sorry the problem is that I still get a white page like the others were getting. I not sure if I did all the code correctly.


All times are GMT. The time now is 06:30 AM.

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

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02016 seconds
  • Memory Usage 1,759KB
  • 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
  • (3)bbcode_code_printable
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)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