1

(21 replies, posted in General discussion)

I would just put it back in so it doesn't matter to me. smile

Kennel, is see where you're coming from. But you have to really make it right with standards, because say if you were to have PunBB, and totally rewrote (but still no downloads we logged) it would HAVE to ve v.2 as it was completely rewrote..

Oh well it's not big deal. lol Let's just let it go.. I'll just start naming them like .01 and changing their build numbers until 1.0 if necessary. smile

1. I rewrote the code COMPLETELY, why would I name it 1.0.1 meaning I gave it a different build? It's a totally different version.

2. I will RERUN it, but THAT is EXACTLY what came out.. wink

4

(9 replies, posted in PunBB 1.2 discussion)

.. well you got me there. lol.. I am glad I know this now. I was adding the php code print to make banners work, and well it did work it's just not the proper way lol

5

(9 replies, posted in PunBB 1.2 discussion)

Nidhogg,

I am sure that Kennel will tell you I'm write too... If you want to edit the  header ( the same thing as overall_header) you will edit the header.php all HTML is kepy in there within the php code, written with either an echo or print. wink

I just stated this claim, because it is possible that Kennel has never used phpBB. wink

I wanted a custom text there. wink I will submit it now. smile

7

(6 replies, posted in General discussion)

Ok, Kennel  have fun.

I am sure we will take care for you.

Ok, got bored and fixed this. I decided it to be v.2 since it was completely rewritten.

9

(9 replies, posted in PunBB 1.2 discussion)

Darth AND Kennel -

The PunBB equivelant of  phpBB's overall_header.tpl and overall_footer would be header.php and footer.php

Darth,

phpBB uses a system to call these files from .tpl which stands for template. All though punBB makes it much more simple and puts html in php files.

simply by putting stuff like this

<?php

print <html>
print <head>

and so on for your webpage

?>

If you do need help editing the php file for editing things, the please let us know. smile

Ok, I may do that as 2.0 -

ETA - Whenever a feel like investigating. lol

##
##
##        Mod title:  Anti-Guest Profile
##
##      Mod version:  2.0
##   Works on PunBB:  1.0
##     Release date:  2003-08-20
##           Author:  Andrew West A.KA. Kriptonic
##
##      Description:  This mod gives guest the error message "You do not have
##                    permission to access this page." When trying to view
##                    profiles.
##
##   Affected files:   lang/en/en_common.php
##                          profile.php
##
##       Affects DB:  No
##
##            Notes:  This mod has been completely rewritten due to a suggestion
##                       made by Kennel and works the same.
##
##                    Generated with ModGenerator (http://modgen.cactuz.nu/)
##                    on: 2003-08-16 08:54:55
##
##       DISCLAIMER:  Please note that modifications are not officially
##                    supported by PunBB. Installation of this modification
##                    is
##                    done at your own risk. Backup your forum database and
##                    any and all applicable files before proceeding.
##
##


#
#---------[ 1. OPEN ]---------------------------------------------------------
#

profile.php


#
#---------[ 2. FIND (line: 27) ]----------------------------------------------
#

require 'include/common.php';


#
#---------[ 3. AFTER, ADD ]---------------------------------------------------
#

// Begin Anti Guest Profiles Mod
if ($cookie['is_guest'])
        message($lang_common['No Guests Reading'].' <a href="login.php">'.$lang_common['Login'].'</a> '.$lang_common['or'].' <a href="register.php">'.$lang_common['register'].'</a>.');
// Begin Anti Guest Profiles Mod


#
#---------[4. Open]------------------------------------------------------------ 
#

lang/en/en_common.php

#
#---------[4. Find (line : 8)]------------------------------------------------------------
#

'lang_encoding'            => 'iso-8859-1',


#
#---------[5. AFTER, ADD]------------------------------------------------------
#

'No Guests Reading'             =>      'Only logged in users are allowed to read profiles.',

#
#---------[ 4. SAVE/UPLOAD ]--------------------------------------------------
#

I hope this works out nicely. A small hack, but keeps bandwidth down, I mean what guest needs to read profiles?

Ok thank you.

As the title says .. "Where is the bbcode parsing done? " I am making some new BBcodes, but can't find it anywhere.