Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > Project U-232
Reply
  #1  
Old 28th November 2014, 16:18
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default Coming Soon
This has been shared here first due to I am lazy and its just a image for now & snippet of code as I am recoding the forums template so it might be easier for others to enjoy as I have been told many times " Why 1 script? " " Can you make it different ".

I don't care what anyone says about this as its free so bitch as much as you like but in the end I programmed it by just reading html and css.

this is my next beta release so always use with care and yes you can convert or change it yourself.

Click the image to open in full size.

Partly Recoded:
Code:
<?php
require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'include'.DIRECTORY_SEPARATOR.'bittorrent.php');
require_once(INCL_DIR.'user_functions.php');
require_once(INCL_DIR.'bbcode_functions.php');
require_once(INCL_DIR.'pager_functions.php');
require_once(INCL_DIR.'html_functions.php');
require_once(INCL_DIR.'mood.php');
dbconn();

/** Basic Settings **/
$flood_mod = true;
$poll_mod = true;
$forum_stats_mod = true;
$minutes = 5;
$limit = 10;

define('UC_SCENE_DEVELOPER', 34);
define('DEVELOPER_CLASS', UC_SCENE_DEVELOPER);
$maxfilesize = 40096 * 1024;
ini_set("upload_max_filesize", $maxfilesize);
$attachment_dir = ROOT_DIR . "forum_attachments";
$allowed_file_extensions = array('rar', 'zip');
$postsperpage = (empty($CURUSER['postsperpage']) ? 25 : (int)$CURUSER['postsperpage']);

if (function_exists('parked')) {
  
     parked();
}

if ($TBDEV['forums_online'] == 0 AND $CURUSER['class'] < UC_MODERATOR) {

     stderr('Information', 'The forums are currently offline for maintainance work');
}
     
echo '<link type="text/css" rel="stylesheet" href="/css3/forum.css">';

// BreadCrumb Menu By BamBam0077
echo '<div id="breadmenubar">
                 <div class="breadBoxTop">
                 <nav>
                 <fieldset class="breadcrumb">
                 <div id="movebread">
                 <span class="crumbs">
                 <span class="crust selectedTabCrumb">
                 <a class="crumb"><span itemprop="title">'.$TBDEV['site_name'].'</span></a>
                 <span class="arrow"><span></span></span>
                 </span> 
                 <span class="crust selectedTabCrumb">
                 <a class="crumb"><span itemprop="title">Forums</span></a>
                 <span class="arrow"><span></span></span>
                 </span>                  
                 </span>
                 </fieldset>
                 </div></nav></div></div>';
                                  
echo "<table class='main' border='0' cellspacing='0' cellpadding='0' align='center'>
    <tr align='center'>
        <td class='embedded'><img src='".$TBDEV['pic_base_url']."unlockednew.gif' alt='New Unlocked' style='margin-right: 5px' /></td>
        <td class='embedded'>New posts</td>
        <td class='embedded'><img src='".$TBDEV['pic_base_url']."locked.gif' alt='Locked' style='margin-left: 10px; margin-right: 5px' /></td>
        <td class='embedded'>Locked topic</td>
    </tr>
    </table>";

Last edited by BamBam0077; 28th November 2014 at 16:39. Reason: added snippet of code
Reply With Quote
  #2  
Old 28th November 2014, 17:13
Jinx's Avatar
Jinx Jinx is offline
Senior Member
 
Join Date: Jun 2014
United Kingdom
Posts: 44
Default Hi Bam
sweet
Reply With Quote
The Following User Says Thank You to Jinx For This Useful Post:
BamBam0077 (10th December 2014)
  #3  
Old 19th December 2014, 23:11
TLO TLO is offline
Senior Member
 
Join Date: May 2009
United Kingdom
Posts: 35
Default mixing html5 and xhtml not advisable
Just a quick note, be careful when adding code to u-232 to u-232v4 as they are optimised for xhtml. When you start adding HTML5 tags like nav you are asking for issues in the future, unless you like pages full of errors.
Reply With Quote
  #4  
Old 20th December 2014, 04:08
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default
I agree
Reply With Quote
  #5  
Old 20th December 2014, 12:30
WhyMe WhyMe is offline
Banned
 
Join Date: Apr 2014
P2P
Posts: 160
Default
lol
Reply With Quote
  #6  
Old 25th December 2014, 19:18
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default
Further Projects:
You will Not be require to add my css code snippets into your default name.css as I have come really attached to a better approach makes life easy and it makes sense like reading a book.

Code:
<div style='background-color: #456632; -moz-border-top-left-radius: 3px; -moz-border-top-right-radius: 3px; width: 80%; height: 15%; font-size: 12pt; margin-top: 25px; margin-left: 550px;text-align: center;colour: #567938;'>

$php_code

</div>
it will be a easy way to teach you css3,html,jQuery,php & mysqli in away you feel like a programmer. The more you program the more attractive your programing becomes. Never be shy to fiddle with programming languages and always try your utter best to push your knowledgebase.
Reply With Quote
  #7  
Old 26th December 2014, 23:10
WhyMe WhyMe is offline
Banned
 
Join Date: Apr 2014
P2P
Posts: 160
Default
mate everyone already using this i use it
Reply With Quote
  #8  
Old 27th December 2014, 02:18
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default
I have not yet seen 1 designer nor developer use it for an entire script they use a Cascading Style Sheet but never the less my preference is this approach since i used with in my shoutbox design.
Reply With Quote
  #9  
Old 27th December 2014, 04:54
Joe Joe is offline
Senior Member
 
Join Date: Apr 2010
P2P
Posts: 167
Default
The approach your using is just like straight HTML lol for kids... CSS sheets make life easy. Like you can use the same DIV over and over with CSS sheets.. IF you do it your way then you will need to write it all out over and over and over wow take to long.. Just my 2 cents
Reply With Quote
The Following User Says Thank You to Joe For This Useful Post:
DND (27th December 2014)
  #10  
Old 27th December 2014, 11:03
DND DND is online now
VIP
 
Join Date: Dec 2008
Posts: 1,241
Default
Agree. PRO css :)
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
Reply With Quote
Reply

Tags
comming

Thread Tools

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 +2. The time now is 22:26. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.