how could it be encrypted and still used? and if it is encoded anyone who knew where to get it could know how to decode it :S

3,802

(12 replies, posted in General discussion)

Iceblade your having the same conversation in punbb discusion

huh? you make 2 posts about the same thing but different? :S

3,804

(9 replies, posted in PunBB 1.2 discussion)

oh you use free hosting? its unlikly it will support php and mysql

its not like that ++ is a version of punbb with addons i guess ++ will make a 1.2 version when it comes out

3,806

(9 replies, posted in PunBB 1.2 discussion)

did you read the install.html file?

3,807

(12 replies, posted in General discussion)

google are in a pretty powerful position to market anything they want... just as long as they don't turn evil we'll be ok

the instructions aren't to hard to follow and there is a punbb++ thing in development which includes alot of mods

3,809

(277 replies, posted in PunBB 1.2 discussion)

XKL (eXtensible Kettle Language)

3,810

(4 replies, posted in PunBB 1.2 show off)

http://vnoss.org/forum/extern.php?actio … p;type=RSS ? what about that?

well, start at the top and work your way through wink

well if you encrypt the password then it can't be used to access the database can it?

remove

<?
    //Attachment Mod Block
    $post_attach_html = "";
   
    //First check if there is an attachment in this post   
    $result_two = $db->query('SELECT id,filename,extention,size,downloads FROM '.$db->prefix.'attach_files WHERE postid='.$cur_post['id']) or error($lang_attachments['Error fetch'], __FILE__, __LINE__, $db->error());
    if ($db->num_rows($result_two)==1) //an attachment found! :)
    {
        //get the info into a variable.
        list($post_attach_id, $post_attach_filename, $post_attach_extention, $post_attach_size, $post_attach_downloads) = $db->fetch_row($result_two);
       
        // time to check if current user may download
        $result_two = $db->query('SELECT rules FROM '.$db->prefix.'attach_rules WHERE affected='.$forum_id) or error($lang_attachments['Error rules'], __FILE__, __LINE__, $db->error());
        if (!$db->num_rows($result_two))
            message($lang_attachments['Error rules']);
        list($forum_attach_rules) = $db->fetch_row($result_two);
       
        if($cur_user['status'] < 1) // Normal users
            $attach_allowed = attach_rule_check($forum_attach_rules,2);
        elseif ($cur_user['status'] == 1) // Moderators
            $attach_allowed = attach_rule_check($forum_attach_rules,4);
        elseif ($cur_user['status'] > 1) // Admin
            $attach_allowed = true; // always allowed to see...
        elseif ($cookie['is_guest'])  // guess this will be right to 'sense' guests ... documentations would be handy :oP
            $attach_allowed = attach_rule_check($forum_attach_rules,1);
        else
            $attach_allowed = false;
       
        // if the user is allowed to download, show this.
        if ($cur_user['show_img'] != '0') // if he wnt to see pictures ... show him the attachment icon
        {
            $attach_icon = attach_icon($post_attach_extention);
        }else $attach_icon = '';
        if($attach_allowed){
            $post_attach_html = '<br><br><span class="pun_text">   Attachment: '. $attach_icon .'<a href="attachment.php?item=' . $post_attach_id . '" target="_blank">' . pun_htmlspecialchars(unescape($post_attach_filename)) . '</a>   <font size="1">Size: ' . number_format($post_attach_size,0) . ' bytes     Downloads: ' . $post_attach_downloads . '</font></span>';
        }
    }
   
//Attachment Mod End block
?>

and see what happens

i would guess the "compability, visual consistency and speed" would only change due to the proxy not working properly

3,815

(146 replies, posted in PunBB 1.2 modifications, plugins and integrations)

ok, i'll hold off on the naming, last thing i want to do is annoy you after borrowing (stealing) your code wink even if it is GPL etc, also my idea is not for it to come with everything but more of a set of "building blocks" which you can choose to put together the site you want, eg the most basic download would be punbb + portal, up to all the modules included, i'm trying to think of the best way of making it scaleable without restricting features.

i know alot of punbb people are good with php etc and can mod it to their needs, but this is more to tailor for people who need more of a GUI  approach for adding stuff (or are to lazy wink)

3,816

(14 replies, posted in Programming)

just add the firefox logo as your favicon to annoy IE users

ahh lol cos i was like huh why are they loading 1 at a time

3,818

(146 replies, posted in PunBB 1.2 modifications, plugins and integrations)

Rickard: what do you think about the punCMS idea and do you mind me like messing with your code and calling it pun...

3,819

(146 replies, posted in PunBB 1.2 modifications, plugins and integrations)

hcgtv wrote:

Well after a late night coding session between myself and a fellow Nucleus developer, we have a skin to show as proof of concept.

Tested in Firefox 0.9.3, 1.0pr and IE 6 on WinXP. Fellow Mac users, let me know if there are any issues.

The PunBB cloned skin: http://hcgtv.org


looks nice... ecxept in IE and except its still 1.1.5 style not 1.2

3,820

(3 replies, posted in PunBB 1.2 discussion)

yikes sorry 10k was announcment so i posted it there wink

err why are all your images different files but the same image so it has to load lots of times?

3,822

(146 replies, posted in PunBB 1.2 modifications, plugins and integrations)

hcgtv wrote:
Connorhd wrote:

hcgtv, i like a challenge wink also would be pretty cool to have a full site in the punbb style...

Ok, I say go for it then.

If speed is an issue, then check out the latest benchmarks on CMS apps:
http://www.english.rk.edu.pl/cms_benchmark.html

well i would think it would be pretty fast, i'm not going to add too much to punbbi don't think, just reorganise the code and create a couple of management systems

3,823

(3 replies, posted in PunBB 1.2 discussion)

has no one noticed? 20,000 posts wink

3,824

(26 replies, posted in Feature requests)

maybe tables are just the most effective way of displaying that?

3,825

(26 replies, posted in Feature requests)

Rod wrote:
Connorhd wrote:

have a look, http://66.98.138.31/~connorhd/pundev/vi … ?pid=38#38

well like you said in the future it should be that but i think for now most people will be happy with xtml 1.0


Waouh ... great job smile

http://66.98.138.31/~connorhd/pundev/profile.php?id=4

OK ...

why don't you use this techic for the rest where tables are used ?

With display : inline ... all is possible !


thats 1.2 dev version btw and not the most uptodate