http://hsv-netcom.com/news.php
the script called snews
only thing i would like is the virtual folder system changed to regular file system
cause it effects my links
click on contact then try the home link at the top!
oh and my site a punbb and csstemplate inegrataions
punbb controls every function of my site except the news script

my goal is to have a snews mod made for punbb

that kewl
i got snews up and running
but i dont like the virtual folder system
all my links are screwed up by it
http://hsv-netcom.com/news.php

snews and the newsletter script?

ok pep's here is my moded gallery
http://www.nalan.org/uploaded/PBB_Gallery2_mod.rar
over right anyfiles....
well make a backup copy of your mysql.php in the include/dblayer folder rename it to mysql_old.php
it works fine on http://nalan.org/gallery.php
do it at ya own risk!
Q

Does anyone that know how to make a mod want to make some money?
Im very close getting this script moded.. but i need some help! it works but i need some redirect fixed!
and some db issue !
holla if you have msn aim yahoo
scot405583 aim,yahoo
scot405583@passport.com msn

sure scott @ nalan.org

i start working on one.. and had a few people helping me out, but they all lost interest in it.
http://nalan.org/store.php
just need some db work done....

1,633

(0 replies, posted in General discussion)

here is the winipcfg.exe for windows 2k and windows xp

http://www.nalan.org/uploaded/winipcfg.rar


usefull little tools that i fount on the internet!
http://www.svrops.com/svrops/default.htm


Q

1,634

(4 replies, posted in PunBB 1.2 show off)

site looks good ! keep it up!
http://bunpai.com my play toy site.

ty!

part of it
i got it posted on my forum
http://bunpai.com/viewforum.php?id=5

1,637

(5 replies, posted in PunBB 1.2 troubleshooting)

either that or all the files didnt get uploaded....

i just copied a few lines..hehe...

<?php

define('PUN_ROOT', './');
define('PUN_QUIET_VISIT', 1);
require PUN_ROOT.'include/common.php';
define('PUN_ALLOW_INDEX', 1);
require PUN_ROOT.'lang/'.$pun_user['language'].'/index.php';
require PUN_ROOT.'lang/'.$pun_user['language'].'/common.php';
require PUN_ROOT.'lang/'.$pun_user['language'].'/topic.php';
require PUN_ROOT.'lang/'.$pun_user['language'].'/login.php';
require PUN_ROOT.'include/parser.php';

$page_title = pun_htmlspecialchars($pun_config['o_board_title']);
define('PUN_ALLOW_INDEX', 1);

$newsid = '1'; //This is the forum the news is retrieved from
$newsdisplay = '5'; //This is how many news articles are displayed.

if ($pun_config['o_users_online'] == '1')
{
    // Fetch users online info and generate strings for output
    $num_guests = 0;
    $users = array();
    $result = $db->query('SELECT user_id, ident FROM '.$db->prefix.'online WHERE idle=0 ORDER BY ident', true) or error('Unable to fetch online list', __FILE__, __LINE__, $db->error());

    while ($pun_user_online = $db->fetch_assoc($result))
    {
        if ($pun_user_online['user_id'] > 1)
            $users[] = "\n\t\t\t\t".'<dd><a href="profile.php?id='.$pun_user_online['user_id'].'">'.pun_htmlspecialchars($pun_user_online['ident']).'</a>';
        else
            ++$num_guests;
    }

    $num_users = count($users);
}

$result = $db->query('SELECT COUNT(id)-1 FROM '.$db->prefix.'users') or error('Unable to fetch total user count', __FILE__, __LINE__, $db->error());
$stats['total_users'] = $db->result($result);

$result = $db->query('SELECT id, username FROM '.$db->prefix.'users ORDER BY registered DESC LIMIT 1') or error('Unable to fetch newest registered user', __FILE__, __LINE__, $db->error());
$stats['last_user'] = $db->fetch_assoc($result);

$result = $db->query('SELECT SUM(num_topics), SUM(num_posts) FROM '.$db->prefix.'forums') or error('Unable to fetch topic/post count', __FILE__, __LINE__, $db->error());
list($stats['total_topics'], $stats['total_posts']) = $db->fetch_row($result);
?>

Then you need to add this code to where you want the topics posted

<p class="page_title"><div class="blockform" >
        <p class="page_title">Latest News</p><p></p>
        <div class="clearer">
                <table>
                    <tr>
                        <td>
                            <?
                                $result = $db->query('SELECT t.id, t.subject, t.forum_id, p.poster, p.poster_id, p.message, p.hide_smilies, p.posted, g.g_title, f.forum_name FROM '.$db->prefix.'topics AS t INNER JOIN '.$db->prefix.'posts AS p ON p.topic_id=t.id AND p.posted=t.posted INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id LEFT JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id INNER JOIN '.$db->prefix.'forums AS f ON f.id=t.forum_id WHERE t.forum_id='.$newsid.' AND t.moved_to IS NULL AND f.redirect_url IS NULL ORDER BY t.posted DESC LIMIT '.$newsdisplay) or error('Unable to fetch announcements', __FILE__, __LINE__, $db->error());
                   
                    if ($db->num_rows($result))
                    {
                            while($cur_post = $db->fetch_assoc($result))
                            {
                                    $cur_post['message'] = parse_message($cur_post['message'], $cur_post['hide_smilies']);
                                echo "\t\t\t\t\t\t\t".'<p><strong><a href="forum.php">Forum</a> » <a href="viewforum.php?id='.$cur_post['forum_id'].'">'.pun_htmlspecialchars($cur_post['forum_name']).'</a> » <a href="viewtopic.php?id='.$cur_post['id'].'">'.pun_htmlspecialchars($cur_post['subject']).'</a></strong> - Posted '.format_time($cur_post['posted']).' <span class="byuser'.(isset($cur_post['g_title']) ? ' '.strtolower(str_replace(' ', '', $cur_post['g_title'])) : '').'"><strong> » </strong><a href="profile.php?id='.$cur_post['poster_id'].'" class="username">'.pun_htmlspecialchars($cur_post['poster']).'</a></span></p>'."\n";
?>
                                <div class="clearer">
                                    <?php echo $cur_post['message']."\n" ?>
                                </div>
                                <br />
                                <?php
                                if ($cur_post['poster_id'] == $pun_user['id'] || $pun_user['g_id'] < PUN_GUEST)
                                {
                                    echo '<span style="float:right"><a href="delete.php?id='.$cur_post['id'].'">'.$lang_topic['Delete'].'</a> | <a href="edit.php?id='.$cur_post['id'].'">'.$lang_topic['Edit'].'</a></span>';
                                }
                                ?>
                            <br />
                            <?
                            }
                        }
                        else
                        {
                            echo 'No news';
                        }   
                            ?>                   
                        </td>
                    </tr>
                </table>
                                         
           
           
        </div>

http://bunpai.com

can u move it for me.. i didnt know where to put it.

u got yahoo msn aim?

do you agree with the terms above form.
it is a simple checkbox!

open file up and read the // area....on how to configure it.
see it in actions on http://nalan.org/contest_terms.php
at the bottom
I accept:  These terms!


http://nalan.org/terms.rar

wow, kewl layout.. do u got that in a css template?
or is that a psd template?
i did a css template intergration with punbb !
http://bunpai.com

i started playing with the frontpage_punbb then decided to make my own cms sorta. i took it to the next level and took a css template and modified punbb to be the back engine of the site controlling everything from membership to forum and members pages.
first attempt was
http://ibt-media.com
then as i learned more about the punbb system i got it to a clean looking css template.
http://bunpai.com
with the easy of changing the index.php and the main.tpl to change the template
right now i got 4 things that have to be installed with the db.
soon im going to work on a simple one install function for my monster that i created.
i can do any psd template but it is a pain. so that is why i like css templates im not big on images loading...
tell me what ya think.

1,644

(6 replies, posted in PunBB 1.2 troubleshooting)

that will be 1000 pesos... lol...
anytime!

1,645

(6 replies, posted in PunBB 1.2 troubleshooting)

create a file call config.php open with notepad paste info in there.. then upload
make sure that the ext is php not config.php.txt

if you upload the config.php.txt
in the ftp after you upload it just rename it to config.php

1,646

(7 replies, posted in PunBB 1.2 bug reports)

can we say m0n0wall? hehehe...

1,647

(2 replies, posted in PunBB 1.2 troubleshooting)

what program are you using to ftp?
what OS?
xp and smartftp?

1,648

(6 replies, posted in PunBB 1.2 troubleshooting)

lol. copy that config info to a new php file called config.php then upload it to ur site that it.

1,649

(4 replies, posted in PunBB 1.2 show off)

sweet site!, what did u use for your newsletter script?

1,650

(19 replies, posted in General discussion)

is there any instructions on how to set it up?