Previous Thread
Next Thread
Print Thread
Hop To
#41544 09/13/2004 9:28 PM
Joined: Sep 2004
Posts: 16
C
stranger
stranger
C Offline
Joined: Sep 2004
Posts: 16
Hi ... i woud like to put my forum suronded in my site juste like her ... The probel is that the fonction include ou php only works with de page that is include in the site ... So i rememberde the tmpl template ... but which is the good one to edite ? And is ther a other way ?

I am using UBB.threads™ 6.1.1

#41545 09/14/2004 11:06 AM
Joined: Feb 2004
Posts: 86
K
journeyman
journeyman
K Offline
Joined: Feb 2004
Posts: 86
hi there...

in order to use templates instead of includes, you'd have to edit *every* template... each template is specific to a page.

I would highly advise against this: it'll take a LOT of work, and there's always the unfortunate task of having to make updates.

I'm not sure I understand why includes wouldn't work?


Kate Thaete
Groupee Guide: Scriptkeeper
Groupee, Inc.
#41546 09/14/2004 12:15 PM
Joined: Sep 2004
Posts: 16
C
stranger
stranger
C Offline
Joined: Sep 2004
Posts: 16
Well ...

Lets say i have a pahe call my forum.php ...

<?php
include ("nc/ubbthreads.php");
?>

When a visitor cliks on a loke hi will go back to the forum and not stay in the page that includes the forum ...

Editing envry pages is to mutch work for me ... is ther somethinf els ?

Joined: Sep 2004
Posts: 16
C
stranger
stranger
C Offline
Joined: Sep 2004
Posts: 16
I juste tryd using IFRAMES ... and its not worcking to ...
[url=http://www.newbiecenter.com/F/nc.php]See it her[/url]

#41548 09/15/2004 10:51 AM
Joined: Feb 2004
Posts: 86
K
journeyman
journeyman
K Offline
Joined: Feb 2004
Posts: 86
We advise against using frames: it can cause many cookie problems.

You won't be able to just include the board in the styled page - you'll need to include the styled pages in the board's header/footer.

To do this, go into your UBB.threads control panel, scroll down to "Includes" and use "Edit Generic Header" and "Edit Generic Footer" to include your custom HTML.

Note that the text of these fields is already included by the application into the style of the board, so you won't need to use the 'php include' - just add your HTML.

Last edited by Kate Sloan; 09/15/2004 10:52 AM.

Kate Thaete
Groupee Guide: Scriptkeeper
Groupee, Inc.
#41549 09/16/2004 12:30 AM
Joined: Sep 2004
Posts: 16
C
stranger
stranger
C Offline
Joined: Sep 2004
Posts: 16
Yeah ... but thats not what a woud like ... See the forum her has the headers, the foothers and the tow sides frum the site and the forum in the middel ... How exacly can i do that ! ... Do i direcly edite the php files or do in modifie the tmpl ? ... Is ther something els i can do ? ...

Sorry for my poor english ... ... <img src="https://www.ubbcentral.com/boards/images/graemlins/crazy.gif" alt="" />

Joined: Jun 2006
Posts: 742
enthusiast
enthusiast
Joined: Jun 2006
Posts: 742
That's done by "wrapping" the entire forum in a table.

Edit your generic header with HTML like this. (Basic example)
Code
&lt;table width="100%" border="0"
&lt;tr&gt;
&lt;td width="10%" align="center" valign="top"&gt;
Here is your left sidebar
&lt;/td&gt;
&lt;td align="center" valign="top"&gt;
&lt;!--The forum ends up going here--&gt;

Then in your generic footer file put this:
Code
&lt;/td&gt;
&lt;td width="10%" align="center" valign="top"&gt;
Put your right sidebar HTML here
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;


Expand on that as you will, but it's a pretty simple method to "wrap" the forum in a table, and thus give yourself sidebars. <img src="https://www.ubbcentral.com/boards/images/graemlins/smile.gif" alt="" />


Joshua Pettit
Web Developer
www.ThreadsDev.net | www.JoshuaPettit.com
Joined: Sep 2004
Posts: 16
C
stranger
stranger
C Offline
Joined: Sep 2004
Posts: 16
Thanks JoshPet ... the left part works great ! ... But the right is not showing him self ... Is your code good ? Or is it me ... <img src="https://www.ubbcentral.com/boards/images/graemlins/confused.gif" alt="" />

#41552 09/16/2004 10:51 AM
Joined: Jun 2006
Posts: 742
enthusiast
enthusiast
Joined: Jun 2006
Posts: 742
That should be it - it's just a basic HTML table - opened in the header and closed in the footer.


Joshua Pettit
Web Developer
www.ThreadsDev.net | www.JoshuaPettit.com
Joined: Sep 2004
Posts: 16
C
stranger
stranger
C Offline
Joined: Sep 2004
Posts: 16
... my right side is not working ...

Hers the generic headers code that i have (this one works great:

<?php
require "/f01.php";
?>
<table width="100%" border="0"
<tr>
<td width="20%" align="center" valign="top">
<?php
require "/f02.php";
?>
</td>
<td align="center" valign="top">
<!--The forum ends up going here-->

And her's my generic foothers code ...

</td>
<td width="10%" align="center" valign="top">
<?php
include("/f03.php");
?>
</td>
</tr>
</table>

Joined: Jun 2006
Posts: 742
enthusiast
enthusiast
Joined: Jun 2006
Posts: 742
I don't think you can use the PHP tags like that in the generic footer - you have to put the actual HTML inside the generic footer to create the right side. I'm pretty sure the footer is parsed differently than the way the header is processed.


Joshua Pettit
Web Developer
www.ThreadsDev.net | www.JoshuaPettit.com
Joined: Sep 2004
Posts: 16
C
stranger
stranger
C Offline
Joined: Sep 2004
Posts: 16
Her ... i juste removed the php from the left AND rignt sides ... bot the right side is still not worcking ...

Generic Headres code :
<table width="100%" border="0"<tr><td width="10%" align="center" valign="top">Here is your left sidebar</td><td align="center" valign="top"><!--The forum ends up going here-->
------------------------------------------
I get the "Here is your left sidebar" message in the leste parte of the forum.


generic footer code:
</td><td width="10%" align="center" valign="top">Put your right sidebar HTML here</td></tr></table>
------------------------------------------
I dont get the "Put your right sidebar HTML here" message at all ... ...

Joined: Jun 2006
Posts: 346
J
enthusiast
enthusiast
J Offline
Joined: Jun 2006
Posts: 346
Footer will NOT show php included files.


--
Website Development and Management
www.jcswebdev.com
Joined: Sep 2004
Posts: 16
C
stranger
stranger
C Offline
Joined: Sep 2004
Posts: 16
I know ! <img src="https://www.ubbcentral.com/boards/images/graemlins/smile.gif" alt="" />
... Thats the reason wy i took them off 3 treads upper !
I know mt english is not very good ... but still !

In my last topic, i was explaning that i replaced ALL the coding that i first hade in the Generics files ... I pasted the exact code that Jo gave me ... and the right site ( generic footer code ) is not showing him self.

Wy is that ? ... her is the code that i have right know in my generic footer.

</td><td width="10%" align="center" valign="top">Put your right sidebar HTML here</td></tr></table>

Nomaly i am supposed to see the "Put your right sidebar HTML here" message in the right part of my board ... but its not ther ! ...

Ther is NO PHP in that right ? ... <img src="https://www.ubbcentral.com/boards/images/graemlins/wink.gif" alt="" /> Only simpel HTML

Joined: Jun 2006
Posts: 742
enthusiast
enthusiast
Joined: Jun 2006
Posts: 742
It's HTML not PHP.

Where I typed "Put your right sidebar HTML here" is where you replace with the HTML of whatever you want in your sidebars. <img src="https://www.ubbcentral.com/boards/images/graemlins/wink.gif" alt="" />


Joshua Pettit
Web Developer
www.ThreadsDev.net | www.JoshuaPettit.com
Joined: Sep 2004
Posts: 16
C
stranger
stranger
C Offline
Joined: Sep 2004
Posts: 16
Oh ... gosh ... My English must be painful !
I know that! But since : "Put your right sidebar HTML here" dont appear ... the html w'ont either ... ( I tryd it ... ) I copyd the exact code entering it in my HTML ... but its NOT worcking ... I hope you understand this time ...

#41560 09/16/2004 11:13 PM
Joined: Jun 2006
Posts: 742
enthusiast
enthusiast
Joined: Jun 2006
Posts: 742
What exactly is in your generic footer file? Paste it here.


Joshua Pettit
Web Developer
www.ThreadsDev.net | www.JoshuaPettit.com
#41561 09/16/2004 11:40 PM
Joined: Sep 2004
Posts: 16
C
stranger
stranger
C Offline
Joined: Sep 2004
Posts: 16
at this moment ... This is in it:

------------------------------------------------
</td><td width="10%" align="center" valign="top">

<link rel="stylesheet" type="text/css" href="/F/styles/dark.css">
<STYLE type=text/css>
<!--
body {
scrollbar-base-color: 545454;
scrollbar-arrow-color: 5AA6EA;
scrollbar-face-color: 545454;
scrollbar-track-color: 282828;
scrollbar-shadow-color: 545454;
scrollbar-highlight-color: 646464;
scrollbar-dark-shadow-color: 282828;
scrollbar-3d-light-color: 545454;
}
}
-->
</STYLE>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="100%" class="title">
<p align="center">Title</td>
</tr>
<tr>
<td width="100%" class="std1">
<p align="center">Options</td>
</tr>
</table>

</td></tr></table>
------------------------------------------------
But its not working ...

Joined: Jun 2006
Posts: 742
enthusiast
enthusiast
Joined: Jun 2006
Posts: 742
Does it work without this:
<link rel="stylesheet" type="text/css" href="/F/styles/dark.css">
<STYLE type=text/css>
<!--
body {
scrollbar-base-color: 545454;
scrollbar-arrow-color: 5AA6EA;
scrollbar-face-color: 545454;
scrollbar-track-color: 282828;
scrollbar-shadow-color: 545454;
scrollbar-highlight-color: 646464;
scrollbar-dark-shadow-color: 282828;
scrollbar-3d-light-color: 545454;
}
}
-->
</STYLE>

I'd start with some simple text to make sure the basic table is working - then work your way up. That way you can tell which part isn't working.


Joshua Pettit
Web Developer
www.ThreadsDev.net | www.JoshuaPettit.com
Joined: Sep 2004
Posts: 16
C
stranger
stranger
C Offline
Joined: Sep 2004
Posts: 16
nope ... its still not it ...

I juste tryd this:

</td><td width="10%" align="center" valign="top">Put your right sidebar HTML here</td></tr></table>

( the exact code you gave me ... I shoud see the "Put your right sidebar HTML here" message ... but its not ther ... )

#41564 09/17/2004 12:54 PM
Joined: Jun 2006
Posts: 742
enthusiast
enthusiast
Joined: Jun 2006
Posts: 742
How about a link so we can view the source and see what's happening?


Joshua Pettit
Web Developer
www.ThreadsDev.net | www.JoshuaPettit.com
Joined: Sep 2004
Posts: 16
C
stranger
stranger
C Offline
Joined: Sep 2004
Posts: 16
Her is the source of the main index.

<!-- START OF header.tmpl TEMPLATE -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="/nc/stylesheets/dark.css" type="text/css" />
<link rel="shortcut icon" href="/nc/images/favicon.ico" />
<title>NewbieCenter - Forum</title>
</head>
<body>



<!-- END OF header.tmpl TEMPLATE -->

<html>
<head>
<link rel="stylesheet" type="text/css" href="/F/styles/dark.css">
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"><title>Comment hacker?</title><meta name="description" content="NewbieCenter - Forum"><meta name="robots" content="index, follow"><meta name="GENERATOR" content="Microsoft FrontPage 4.0"><LINK REL="SHORTCUT ICON" HREF="favicon.ico"><link rel="stylesheet" href="styles/dark.css" type="text/css">
<meta http-equiv="Content-Language" content="fr-ca">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Comment hacker ?</title>
<STYLE type=text/css>
<!--

input,select,textarea,checkbox {
background: #404040;
color: #9C9C9C;
border: 1px solid #9C9C9C;
}

body {

scrollbar-base-color: 545454;
scrollbar-arrow-color: 5AA6EA;
scrollbar-face-color: 545454;
scrollbar-track-color: 282828;
scrollbar-shadow-color: 545454;
scrollbar-highlight-color: 646464;
scrollbar-dark-shadow-color: 282828;
scrollbar-3d-light-color: 545454;
}

}
-->
</STYLE>
<link rel="stylesheet" type="text/css" href="/F/styles/dark.css">
<STYLE type=text/css>
<!--
body {

scrollbar-base-color: 545454;
scrollbar-arrow-color: 5AA6EA;
scrollbar-face-color: 545454;
scrollbar-track-color: 282828;
scrollbar-shadow-color: 545454;
scrollbar-highlight-color: 646464;
scrollbar-dark-shadow-color: 282828;
scrollbar-3d-light-color: 545454;
}

}
-->
</STYLE>
</head>
<body topmargin="0" leftmargin="0" bgcolor="#000000">

<table border="0" width="100%">
<tr>
<td width="100%">
<table border="0" width="102%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" class=title>
<p align="center"><b><font size="1" face="Verdana" color="#999999">Menu</font></b></td>
</tr>
<tr>
<td width="100%" class=std0>
<p style="margin-top: 1; margin-bottom: 1" align="center"><font color="#999999" size="1" face="Verdana"><b>·
</b></font><b><a href="/F/a.php"><font color="#999999" size="1" face="Verdana">NewbieCenter
Site</font></a><font color="#999999" size="1" face="Verdana">
</font></b><font color="#999999" size="1" face="Verdana"><b>·
</b>
</font><b><a href="/F/"><font color="#999999" size="1" face="Verdana">
Forum</font></a><font color="#999999" size="1" face="Verdana">
· </font><a href="/F/ezine/"><font color="#999999" size="1" face="Verdana">
E-Zine</font></a><font color="#999999" size="1" face="Verdana">
· </font><a href="http://www.chalenge.newbiecenter.com/"><font color="#999999" size="1" face="Verdana">
Challenges</font></a></b></p>
</td>
</tr>
<tr>
<td width="100%" class=std0>
<p style="margin-top: 1; margin-bottom: 1" align="center"><b><font size="1" face="Verdana" color="#FFFFFF">Partenaires:</font></b><b><font color="#999999" size="1" face="Verdana">
· </font><a href="http://www.securityclan.ch/scbann/indexbann.php?url=http://www.newbiecenter.com" target="_blank"><font color="#999999" size="1" face="Verdana">SecurityClan</font></a><font color="#999999" size="1" face="Verdana">
· </font><a target="_blank" href="http://www.viriis.com/partenaire/entree.php?id=15 ."><font color="#999999" size="1" face="Verdana">Viriis</font></a><font color="#CCCCCC"><font size="1" face="Verdana">
(Nouveau)</font></font></b></p>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table border="0" width="100%" height="39" cellspacing="0" cellpadding="0">
<tr>
<td width="78%" height="35" valign="top" align="left">
<table border="0" width="100%">
<tr>
<td width="51%" height="10">
<img border="0" src="/logo.bmp" width="264" height="84">

</td>
<td width="149%" height="10">
<div align="center">
<center>
<table border="0" width="100%" cellspacing="0" cellpadding="0" height="21">
<tr>
<TD class=title height="1">
<p align="center"><b><font color="#808080" size="1" face="Verdana">NewbieCenter
T'chat</font></b></td>
</tr>
<tr>
<TD class="std1" height="28">
<p style="margin-top: 0; margin-bottom: 0" align="center"><b><font face="Verdana" size="1" color="#FFFFFF">Newbiecenter
T'chat ! Il ya actuellement <script language="javascript" src="http://www.fantasya.org/compteurs/compteur.php?salon=newbiecenter"></script>
personnes de connecter ! </font></b></p>
<p style="margin-top: 0; margin-bottom: 0" align="center"><b><font face="Verdana" size="1"><font color="#FFFFFF">Accédez
par</font> <a href="irc://chat.fantasya.org#newbiecenter"><font color="#FF9900">IRC</font></a>
<font color="#FFFFFF">ou par l'interface</font> <a href="/F/tchat.php"><font color="#FF9900">WEB</font></a><font color="#FFFFFF">.
Connectez-vous et d'autre viendront.</font></font></b>
</td>
</tr>
<tr>
<TD class=title height="1" align="center">
<p align="center">

<p class="PHPCOUTPUT">Vous ètes le visiteur 180 depuis 15 Sep 04.</p>

</td>
</tr>
</table>
</center>
</div>
</td>
</tr>
</table>
</table>


<table width="100%" border="0"
<tr>
<td width="20%" align="center" valign="top">

<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>

<TD class="subtitle" valign="top" align="left" width="100%">
<p align="center">Menu</TD>

</tr>
<tr>

<TD class="std0" valign="top" align="left" width="100%">

<p style="margin-top: 0; margin-bottom: 0">&nbsp;&nbsp; <head>
<link rel="stylesheet" type="text/css" href="/F/styles/dark.css">
<STYLE type=text/css>
<!--

body {

scrollbar-base-color: 545454;
scrollbar-arrow-color: 5AA6EA;
scrollbar-face-color: 545454;
scrollbar-track-color: 282828;
scrollbar-shadow-color: 545454;
scrollbar-highlight-color: 646464;
scrollbar-dark-shadow-color: 282828;
scrollbar-3d-light-color: 545454;
}

}
-->
</STYLE>
</head>

<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="/F/a.php">NewbieCenter Index</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="http://www.chalenge.newbiecenter.com">Challenges</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="http://www.e-zine.newbiecenter.com">E-zine</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· </b><b><a href="/F/mailer.php">Mailer
Anonyme</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="/F/mentaliter.php">La mentalité NC</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="/F/lien.php">Lien
Underground</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="/F/faq.php">FAQ - Aide</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="/F/doc1.php">Documentation</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="/F/down1.php">Download</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="ht/F/gallery/NCgal/">Gallery</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="/F/contact.php">Me contacter</a></b></p>


</p>

</TD>

</tr>

<tr>

<td width="100%">&nbsp;&nbsp; </td>

</tr>

<tr>

<TD class="subtitle" valign="top" align="left" width="100%">

<p align="center">Challenges</TD>

</tr>

<tr>

<TD class="std0" valign="top" align="left" width="100%">

<p style="margin-top: 0; margin-bottom: 0">&nbsp;&nbsp; <head>



<link rel="stylesheet" type="text/css" href="/F/styles/dark.css">



<STYLE type=text/css>



<!--







body {







scrollbar-base-color: 545454;



scrollbar-arrow-color: 5AA6EA;



scrollbar-face-color: 545454;



scrollbar-track-color: 282828;



scrollbar-shadow-color: 545454;



scrollbar-highlight-color: 646464;



scrollbar-dark-shadow-color: 282828;



scrollbar-3d-light-color: 545454;



}







}



-->



</STYLE>



</head>











<p style="margin-top: 0; margin-bottom: 0" align="left"><b>&nbsp;· <a href="http://www.challenge.newbiecenter.com/">Acceuil</a></b></p>
<p style="margin-top: 0; margin-bottom: 0" align="left"><b>&nbsp;· <a href="http://www.challenge.newbiecenter.com/epreuve.php">Epreuves</a></b></p>



<p style="margin-top: 0; margin-bottom: 0" align="left"><b>&nbsp;· <a href="http://www.challenge.newbiecenter.com/connection.php">Connection</a></b></p>



<p style="margin-top: 0; margin-bottom: 0" align="left"><b>&nbsp;· <a href="http://www.challenge.newbiecenter.com/index.php?page=inscr">Inscription</a></b></p>



<p style="margin-top: 0; margin-bottom: 0" align="left"><b>&nbsp;· <a href="http://www.challenge.newbiecenter.com/index.php?page=class">Classement</a></b></p>



<p style="margin-top: 0; margin-bottom: 0" align="left"><b>&nbsp;· </b><b><a href="/nc/ubbthreads.php?Cat=&amp;C=7">Forum



- Aide</a></b></p>


</p>

</TD>

</tr>

<tr>

<td width="100%">&nbsp;&nbsp; </td>

</tr>

<tr>

<TD class="subtitle" valign="top" align="left" width="100%">

<p align="center">Rechercher</TD>

</tr>

<tr>

<TD class="std0" valign="top" align="left" width="100%">

<p style="margin-top: 0; margin-bottom: 0"><head>
<link rel="stylesheet" type="text/css" href="/F/styles/dark.css">
<STYLE type=text/css>
<!--

body {

scrollbar-base-color: 545454;
scrollbar-arrow-color: 5AA6EA;
scrollbar-face-color: 545454;
scrollbar-track-color: 282828;
scrollbar-shadow-color: 545454;
scrollbar-highlight-color: 646464;
scrollbar-dark-shadow-color: 282828;
scrollbar-3d-light-color: 545454;
}

}
-->
</STYLE>
<title></title>
</head
<p>&nbsp;
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="/F/recherche.php">Recherche sur NC</a></b></p>


</p>

</TD>

</tr>

<tr>

<td width="100%">&nbsp;&nbsp; </td>

</tr>

<tr>

<TD class="subtitle" valign="top" align="left" width="100%">

<p align="center">Download</TD>

</tr>

<tr>

<TD class="std0" valign="top" align="left" width="100%">

<p style="margin-top: 0; margin-bottom: 0">&nbsp;&nbsp; <head>
<link rel="stylesheet" type="text/css" href="/F/styles/dark.css">
<STYLE type=text/css>
<!--

body {

scrollbar-base-color: 545454;
scrollbar-arrow-color: 5AA6EA;
scrollbar-face-color: 545454;
scrollbar-track-color: 282828;
scrollbar-shadow-color: 545454;
scrollbar-highlight-color: 646464;
scrollbar-dark-shadow-color: 282828;
scrollbar-3d-light-color: 545454;
}

}
-->
</STYLE>
</head>

<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;</b>·<b> <a href="/F/down_h_p01.php">Hacking</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;</b>·<b> <a href="/F/down_c_p01.php">Cracking</a></b></p>
<p style="margin-top: 0; margin-bottom: 0">&nbsp;· <a href="/F/down_p_p01.php"><b> Programation</b></a></p>
<p style="margin-top: 0; margin-bottom: 0">&nbsp;· <a href="/F/down_v_p00.php"> Virus</a></p>
<p style="margin-top: 0; margin-bottom: 0">&nbsp;· Protection</p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;</b>·<b> <a href="/F/down_crypto_p01.php">Cryptographie</a></b></p>
<p style="margin-top: 0; margin-bottom: 0">&nbsp;· Phreacking</p>
<p style="margin-top: 0; margin-bottom: 0">&nbsp;· Unix - Linux - Windows</p>


</p>

</TD>

</tr>

<tr>

<td width="100%">&nbsp;&nbsp; </td>

</tr>

<tr>

<TD class="subtitle" valign="top" align="left" width="100%">

<p align="center">Documentation</TD>

</tr>
<tr>

<TD class="std0" valign="top" align="left" width="100%">

<p style="margin-top: 0; margin-bottom: 0">&nbsp;&nbsp; <head>
<link rel="stylesheet" type="text/css" href="/F/styles/dark.css">
<STYLE type=text/css>
<!--

body {

scrollbar-base-color: 545454;
scrollbar-arrow-color: 5AA6EA;
scrollbar-face-color: 545454;
scrollbar-track-color: 282828;
scrollbar-shadow-color: 545454;
scrollbar-highlight-color: 646464;
scrollbar-dark-shadow-color: 282828;
scrollbar-3d-light-color: 545454;
}

}
-->
</STYLE>
</head>

<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="/F/doc_h_p01.php">Hacking</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="/F/doc_c_p01.php">Cracking</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="/F/doc_p_p01.php">Programation</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="/F/doc_v_p01.php">Virus</a></b></p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· </b> Protection</p>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· </b> Crypto</p><b>
<p style="margin-top: 0; margin-bottom: 0"><b>&nbsp;· <a href="/F/doc_a_p01.php">Autre (Non classer)</a></b></p></b></p>

</TD>

</tr>
<tr>

<td width="100%">&nbsp;&nbsp;&nbsp; </td>

</tr>

<tr>

<TD class="subtitle" valign="top" align="left" width="100%">

<p align="center">ShoutBox</TD>

</tr>

<tr>

<TD class="std0" valign="top" align="left" width="100%">

<p style="margin-top: 0; margin-bottom: 0">&nbsp;&nbsp; <head>
<link rel="stylesheet" type="text/css" href="/F/styles/dark.css">
<title></title>
</head>


<body topmargin="0" leftmargin="0">


<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<TD vAlign=middle bgcolor=#000000 align="center" width="100%">
<div align="center">
<center>
<TABLE cellSpacing=0 cellPadding=1 width=100% bgColor=#354463 border=0>
<TBODY>
<TR>
<TD class=info valign=middle bgcolor=#000000 height=17 width=100% align="center">

<IFRAME src="/F/shoutbox/oxyshout_view.php" width="100%" <body topmargin="0" leftmargin="0"> frameBorder=0 width="100%"
height=1700>Votre navigateur ne supporte pas les IFRAMES</IFRAME>


</TD></TR></TBODY></TABLE></center>
</div>
</TD>
</tr>
</table>
</p>

</TD>

</tr>

<tr>

<td width="100%">&nbsp;&nbsp;&nbsp; </td>

</tr>

</table>

</td>
<td align="center" valign="top">
<!--The forum ends up going here-->
<table width="100%" align="center" cellpadding="1" cellspacing="1" class="tablesurround">
<tr>
<td>
<table cellpadding="0" cellspacing="0" width="100%" class="tableborders">

<tr>
<td align="center" class="menubar">

<a href = "/nc/admin/login.php?Cat=" target="_top">Admin</a> |
<a href = "/nc/categories.php?Cat=" target="_top">Main Index</a>
|
<a href = "/nc/search.php?Cat=" target="_top">Search</a>
|
<a href = "/nc/login.php?Cat=" target="_top">My Home</a>
|
<a href = "/nc/online.php?Cat=" target="_top">Who's Online</a>
|
<a href = "/nc/faq.php?Cat=" target="_top">FAQ</a>
|
<a href = "/nc/logout.php?Cat=" target="_top">Logout</a>
| <a href="/nc/showmembers.php?Cat=&amp;page=1" target="_top">User List</a>
|
<a href = "/nc/markallread.php?Cat=" target="_top">Mark all read</a>
</td>
</tr>

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

<br />
<table width="100%" align="center" cellpadding="1" cellspacing="1" class="tablesurround">
<tr>
<td>
<table cellpadding="0" cellspacing="0" width="100%" class="tableborders">

<tr>
<td class="tdheader" colspan="2">
Category
</td>
<td width="12%" align="center" class="tdheader">
Forums
</td>
<td width="12%" align="center" class="tdheader">
Threads
</td>
<td width="12%" align="center" class="tdheader">
Posts
</td>
</tr>
<!-- CATEGORIES LOOP - DO NOT ALTER COMMENTS! --><tr>
<td class="lighttable" width="2%">
<img src="/nc/images/nonewposts.gif" alt="" />
</td>
<td class="lighttable">
<font class="forumtitle">
<a href="/nc/ubbthreads.php?Cat=&amp;C=1">
Admin
</a>
</font>
<br />
<table cellpadding="0" cellspacing="0">
<tr>
<td>
&nbsp;&nbsp;&nbsp;
</td>
<td class="forumdescript">

</td>
</tr>
</table>
</td>
<td class="darktable" align="center">
2
</td>
<td class="lighttable" align="center">
2

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->


</td>
<td class="darktable" align="center">
4

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->

</td>
</tr><tr>
<td class="lighttable" width="2%">
<img src="/nc/images/nonewposts.gif" alt="" />
</td>
<td class="lighttable">
<font class="forumtitle">
<a href="/nc/ubbthreads.php?Cat=&amp;C=2">
Membre Privilégiés
</a>
</font>
<br />
<table cellpadding="0" cellspacing="0">
<tr>
<td>
&nbsp;&nbsp;&nbsp;
</td>
<td class="forumdescript">

</td>
</tr>
</table>
</td>
<td class="darktable" align="center">
3
</td>
<td class="lighttable" align="center">
2

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->


</td>
<td class="darktable" align="center">
2

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->

</td>
</tr><tr>
<td class="lighttable" width="2%">
<img src="/nc/images/newposts.gif" alt="" />
</td>
<td class="lighttable">
<font class="forumtitle">
<a href="/nc/ubbthreads.php?Cat=&amp;C=3">
Général
</a>
</font>
<br />
<table cellpadding="0" cellspacing="0">
<tr>
<td>
&nbsp;&nbsp;&nbsp;
</td>
<td class="forumdescript">

</td>
</tr>
</table>
</td>
<td class="darktable" align="center">
3
</td>
<td class="lighttable" align="center">
6

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->


</td>
<td class="darktable" align="center">
23

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->

</td>
</tr><tr>
<td class="lighttable" width="2%">
<img src="/nc/images/nonewposts.gif" alt="" />
</td>
<td class="lighttable">
<font class="forumtitle">
<a href="/nc/ubbthreads.php?Cat=&amp;C=4">
Documentations
</a>
</font>
<br />
<table cellpadding="0" cellspacing="0">
<tr>
<td>
&nbsp;&nbsp;&nbsp;
</td>
<td class="forumdescript">

</td>
</tr>
</table>
</td>
<td class="darktable" align="center">
8
</td>
<td class="lighttable" align="center">
53

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->


</td>
<td class="darktable" align="center">
55

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->

</td>
</tr><tr>
<td class="lighttable" width="2%">
<img src="/nc/images/nonewposts.gif" alt="" />
</td>
<td class="lighttable">
<font class="forumtitle">
<a href="/nc/ubbthreads.php?Cat=&amp;C=5">
Downloads
</a>
</font>
<br />
<table cellpadding="0" cellspacing="0">
<tr>
<td>
&nbsp;&nbsp;&nbsp;
</td>
<td class="forumdescript">

</td>
</tr>
</table>
</td>
<td class="darktable" align="center">
6
</td>
<td class="lighttable" align="center">
0

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->


</td>
<td class="darktable" align="center">
0

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->

</td>
</tr><tr>
<td class="lighttable" width="2%">
<img src="/nc/images/nonewposts.gif" alt="" />
</td>
<td class="lighttable">
<font class="forumtitle">
<a href="/nc/ubbthreads.php?Cat=&amp;C=6">
NewbieCenter
</a>
</font>
<br />
<table cellpadding="0" cellspacing="0">
<tr>
<td>
&nbsp;&nbsp;&nbsp;
</td>
<td class="forumdescript">

</td>
</tr>
</table>
</td>
<td class="darktable" align="center">
4
</td>
<td class="lighttable" align="center">
0

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->


</td>
<td class="darktable" align="center">
0

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->

</td>
</tr><tr>
<td class="lighttable" width="2%">
<img src="/nc/images/nonewposts.gif" alt="" />
</td>
<td class="lighttable">
<font class="forumtitle">
<a href="/nc/ubbthreads.php?Cat=&amp;C=7">
Challenges
</a>
</font>
<br />
<table cellpadding="0" cellspacing="0">
<tr>
<td>
&nbsp;&nbsp;&nbsp;
</td>
<td class="forumdescript">

</td>
</tr>
</table>
</td>
<td class="darktable" align="center">
5
</td>
<td class="lighttable" align="center">
0

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->


</td>
<td class="darktable" align="center">
0

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->

<!-- HTML for is defined in categories.php because this is not -->
<!-- always displayed -->

</td>
</tr><!-- END OF CATEGORIES LOOP -->

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


<br />

<table width="100%" align="center" cellpadding="1" cellspacing="1" class="tablesurround">
<tr>
<td>
<table cellpadding="0" cellspacing="0" width="100%" class="tableborders">

<tr>
<td colspan="3" class="tdheader">
<b>Extra information</b>
</td>
</tr>
<tr class="lighttable">
<td width="45%" class="small" valign="top">
You are logged in as, CyberSee
<br />
18 Registered User(s).
<br />
Welcome to our newest member,
<a href="/nc/showprofile.php?User=20&amp;What=ubbthreads">
babini3
</a>
<br />
There are 2 registered and 2 anonymous users online.
</td>
<td width="30%" class="small" valign="top">
<b>View recent messages</b>
<br />
&nbsp;
&nbsp;
&nbsp;
<a href="/nc/dosearch.php?Cat=&amp;Forum=All_Forums&amp;Words=&amp;Match=Entire+Phrase&amp;Old=1day&amp;Limit=25">
Past 24 hours
</a>
<br />
&nbsp;
&nbsp;
&nbsp;
<a href="/nc/dosearch.php?Cat=&amp;Forum=All_Forums&amp;Words=&amp;Match=Entire+Phrase&amp;Old=2days&amp;Limit=25">
Past 48 hours
</a>
<br />
&nbsp;
&nbsp;
&nbsp;
<a href="/nc/dosearch.php?Cat=&amp;Forum=All_Forums&amp;Words=&amp;Match=Entire+Phrase&amp;Old=1week&amp;Limit=25">
Past 7 days
</a>

</td>
<td class="small" valign="top">
<b>Legend:</b>
<br />
&nbsp;
&nbsp;
&nbsp;
<img src="/nc/images/newposts.gif" alt="*" />
New posts
<br />
&nbsp;
&nbsp;
&nbsp;
<img src="/nc/images/nonewposts.gif" alt="*" />
No new posts

</td>
</tr>

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


<br />

Joined: Jun 2006
Posts: 742
enthusiast
enthusiast
Joined: Jun 2006
Posts: 742
Ugh - Impossible to read that mess posted here with all the left right scrolling. <img src="https://www.ubbcentral.com/boards/images/graemlins/tongue.gif" alt="" />

But it doesn't seem to have the footer included. Not sure what version you had - maybe there was a bug with the footer getting included in your version?

You could try putting it in the ubbt_footer.tmpl template file.


Joshua Pettit
Web Developer
www.ThreadsDev.net | www.JoshuaPettit.com
Joined: Sep 2004
Posts: 16
C
stranger
stranger
C Offline
Joined: Sep 2004
Posts: 16
WOW !!! It works !!! Thanks man ! <img src="https://www.ubbcentral.com/boards/images/graemlins/laugh.gif" alt="" />
Your my hero ! <img src="https://www.ubbcentral.com/boards/images/graemlins/grin.gif" alt="" />

Joined: Jun 2006
Posts: 742
enthusiast
enthusiast
Joined: Jun 2006
Posts: 742
You're welcome. <img src="https://www.ubbcentral.com/boards/images/graemlins/smile.gif" alt="" />


Joshua Pettit
Web Developer
www.ThreadsDev.net | www.JoshuaPettit.com

Link Copied to Clipboard
ShoutChat
Comment Guidelines: Do post respectful and insightful comments. Don't flame, hate, spam.
Recent Topics
spam issues
by ECNet - 03/19/2024 11:45 PM
Looking for a forum
by azr - 03/15/2024 11:26 PM
Editing Links in Post
by Outdoorking - 03/15/2024 9:31 AM
Question on barkrowler and the like
by Mors - 02/29/2024 6:51 PM
Member Permissions Help
by domspeak - 02/27/2024 6:31 PM
Who's Online Now
1 members (Havenofsobriety), 522 guests, and 99 robots.
Key: Admin, Global Mod, Mod
Random Gallery Image
Latest Gallery Images
Los Angeles
Los Angeles
by isaac, August 6
3D Creations
3D Creations
by JAISP, December 30
Artistic structures
Artistic structures
by isaac, August 29
Stones
Stones
by isaac, August 19
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20230217)