email me ur aim msn yim id...
676 2007-07-23 14:44
Re: New frontpage index mod! (188 replies, posted in PunBB 1.2 modifications, plugins and integrations)
677 2007-07-23 14:41
Re: Coppermine Integration... (80 replies, posted in PunBB 1.2 modifications, plugins and integrations)
so coppermine first then punbb?
i really like the xp publisher since i got about 10 gig of photos that i have taken or worked on.. lol..
thanks
Q
678 2007-07-23 05:25
Re: New frontpage index mod! (188 replies, posted in PunBB 1.2 modifications, plugins and integrations)
ok
simple.....
ftp to site
rename index.php to forum.php
keep ftp open
open notepad copy bing code to it. add the css part to ur css.
save this file as index.php upload it via ftp.
that it.
679 2007-07-23 05:12
Re: Coppermine Integration... (80 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I have punbb 1.2.15 with coppermine latest version. when in bridge mode. everything ok. except xp publishing. i disable it and xp_publishing works fine. I have tried to search threw coppermine. alot of dead ends.... Nibbler can u help?
680 2007-07-22 23:22
Re: New frontpage index mod! (188 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Bing IM me...
681 2007-07-22 21:05
Re: New frontpage index mod! (188 replies, posted in PunBB 1.2 modifications, plugins and integrations)
682 2007-07-22 21:02
Re: New frontpage index mod! (188 replies, posted in PunBB 1.2 modifications, plugins and integrations)
rename index.php to forum.php
take this code and create a index.php then edit the file to pull u r threads....
683 2007-07-22 16:42
Re: ratings,polls, and comments code....... (2 replies, posted in Programming)
might be a good way to do some mods for punbb? take the js script and integrate it.......
Q
684 2007-07-20 19:17
Re: Calendar and Frontpage (3 replies, posted in PunBB 1.2 troubleshooting)
not sure about that... i hacked at the calendar for a while and finally got that one working...
Q
685 2007-07-20 19:08
Re: X7 Chat - Already integrates with SMF, PhpBB, XMB, MercuryBoard, etc. (33 replies, posted in PunBB 1.2 modifications, plugins and integrations)
hahaha i know... hey there has to be a evil child somewhere in the world.. trying to piss people off....
Q
686 2007-07-20 18:07
Re: Notification of new topics (7 replies, posted in PunBB 1.2 discussion)
lie2815, u da man!!
687 2007-07-20 18:05
Re: X7 Chat - Already integrates with SMF, PhpBB, XMB, MercuryBoard, etc. (33 replies, posted in PunBB 1.2 modifications, plugins and integrations)
x7chat looks ok but it to..... how can u say stupid looking... it would take a lot to design a style for it to match punbb style.
Q
688 2007-07-20 14:18
Re: Notification of new topics (7 replies, posted in PunBB 1.2 discussion)
in admin-options
there is a section called (Send new messages to Mailing list)
does that not do that function when someone makes a post it send it to the email in the mailinglist?
Q
689 2007-07-20 14:04
Re: Calendar and Frontpage (3 replies, posted in PunBB 1.2 troubleshooting)
radix,
this is what i made that pulls the events from the calendar and when it get close to that date it displays the event
old site im about to redo http://modelcrowd.com
here the code!
this file goes in the include/user folder and i place it in the main.tpl with a
<pun_include "upevents.php"> where i want it to show up....
<div class="block">
<h2><span>Calendar Events</span></h2>
<div class="box">
<div class="inbox">
<ul>
<?php
$show = isset($_GET['show']) ? intval($_GET['show']) : 15;
if ($show < 1 || $show > 50)
$show = 15;
$events= $db->query('SELECT date, id, title FROM '.$db->prefix.'calendar WHERE (date >= CURDATE()) AND (date <= DATE_ADD(CURDATE(), INTERVAL 14 DAY))') or error ('Unable to fetch date and events: '.$db->error());
while ($cur_event = $db->fetch_assoc($events))
{
if ($pun_config['o_censoring'] == '1')
$cur_event['title'] = censor_words($cur_event['title']);
$subject_truncated = pun_htmlspecialchars($cur_event['title']);
$dateformatted = preg_replace("/-/", ".", $cur_event['date']);
echo '<li><a href="'.$pun_config['o_base_url'].'/calendar.php?view=event&date='.$dateformatted.'" title="'.pun_htmlspecialchars($cur_event['title']).'">'.$subject_truncated.'</a></li><br>'."\n";
}
?>
</ul>
<p> </p>
</div>
</div>
</div>
690 2007-07-19 22:40
Re: Table Small (47 replies, posted in PunBB 1.2 troubleshooting)
http://punbb.org/docs/dev.html#syndication
There are several PunBB support forums in languages other than English; perhaps one of those might be more helpful to you than this one?
here you go...
Here are some examples using PHP include().
Show the 15 most recently active topics from all forums:
include('http://host.com/forums/extern.php?action=active');
Show the 10 newest topics from forums with ID 5, 6 and 7:
include('http://host.com/forums/extern.php?action=new&show=10&fid=5,6,7');
Show users online:
include('http://host.com/forums/extern.php?action=online');
Show users online with full listing of users:
include('http://host.com/forums/extern.php?action=online_full');
Show board statistics:
include('http://host.com/forums/extern.php?action=stats');
Here are some examples using SSI.
Show the 5 newest topics from forums with ID 11 and 22:
<!--#include virtual="forums/extern.php?action=new&show=5&fid=11,22" -->
Show board statistics:
<!--#include virtual="forums/extern.php?action=stats" -->
And finally some examples using extern.php to output an RSS 0.91
feed.
Output the 15 most recently active topics:
http://host.com/extern.php?action=active&type=RSS
Output the 15 newest topics from forum with ID=2:
http://host.com/extern.php?action=activ … &fid=2
Below you will find some variables you can edit to tailor the
scripts behaviour to your needs.
691 2007-07-19 22:36
Topic: ratings,polls, and comments code....... (2 replies, posted in Programming)
this site gives you the functions to add these items to your site with out any heavy coding or moding...
Q
692 2007-07-14 16:40
Re: Multiple banners? (10 replies, posted in PunBB 1.2 troubleshooting)
are you talking about a logo img or a ad banner?
Q
693 2007-07-13 22:05
Re: Active post how to? (13 replies, posted in PunBB 1.2 modifications, plugins and integrations)
put ur php files in the include/user folder
call them in the main.tpl
my placing a <pun_include "nameof.php">
Q
694 2007-07-10 14:53
Re: how to pack a portable webserver (8 replies, posted in Programming)
do u got yim aim or msn?
695 2007-07-10 14:51
Re: how to pack a portable webserver (8 replies, posted in Programming)
a liter version
did the appache load in the wos panel?
696 2007-07-10 13:46
Re: how to pack a portable webserver (8 replies, posted in Programming)
that kewl.. i use the apache se edition and the phpmyadmin gives you the functions like a real host....
Q
697 2007-07-09 21:57
Re: how to pack a portable webserver (8 replies, posted in Programming)
I use wos here is the link..
http://www.chsoftware.net/en/useware/wos/wos.htm
Q
698 2007-07-07 18:38
Re: how to hid the url stuff? (9 replies, posted in Programming)
what i was trying to do is hide all the urls so only bunpai.com will show no matter what page you go to or load.
gallery.php
about.php
calendar.php
nothing....
699 2007-07-05 01:19
Re: Arsamania (9 replies, posted in PunBB 1.2 show off)
site looks good.. keep it up!
Q
700 2007-07-05 01:15
Re: super duper penguin (8 replies, posted in PunBB 1.2 show off)
is that phpbb? ummm...
Q