Them two fields arnt in the standard PunBB core. What extensions do you have installed?
Unfortunately no one can be told what PunBB is - you have to see it for yourself.
You are not logged in. Please login or register.
PunBB Forums » Posts by Utchin
Them two fields arnt in the standard PunBB core. What extensions do you have installed?
If you havnt made any modifications to the core of PunBB then you can just upload all the files excluding the config file.
*Make sure you have a back up of both the Files and Database*
First you always need to make sure you have a back up of both the files and DB. Some hosts keep back ups them self but i wouldn't count on it.
Enable debug mode and go to a post, see what the error says, Then try find that post in the DB.
If you belive this gets too complicated, you can email me your login details and Ill see what I can do.
You might be able to use an Iframe to inlude the site, orther than that your have to ask at php-Nuke.
At the moment there are limited styles avalibe for punbb 1.3.
Have a look at this: http://www.keydogbb.info/dhtml/keydog-1 angmod.php and sort it by styles.
This request was made in 2004 and I dout the poster is still around.
However this mod would be good for 1.3.
I agree and offical documentation for changing the style will be added to our site.
To Add a new style:
Place them in directory <FORUM_ROOT>/style.
To Change a your style:
To change only your profile, so only you see the new style you go to profile and Settings
To change the forum style then go to the admin panel and settings
Please note: Changing the style in the admin panel will not update current user styles, unless ALL other styles are removed. If the main style in the admin panel is changed then any currently registered users must change theirs manually.
Sorry for the confusion. I have now added this to our Wiki.
I understand the first bit but i am having trouble trying to understand the last two lines.
If you want the music to play when someone presses play then you need an aplication, such as this: http://www.longtailvideo.com/players/jw-flv-player/
not really no. You need the IDs inplace to get the right content and searching on names isnt going to be accurate.
We may look into something like this. We have a feature on the future plans to have a feature so the forum dosnt stop working if there is no database connection. so this might be an option.
Are they valid 1.3 modifications?
From what it looks like above, that is the user title. Change that in the admin panel / User profile.
If you use the search feature ( as standard with evey Punbb forum
) http://fluxbb.org/wiki/v1.3:developing_extensions
have a look at http://fluxbb.org/wiki/v1.3:developing_ #databases
I will let the developers know, If they dont already.
This is possible to do with 1.2. The modification for attachements is avaliable at www.punres.org
Unfortunally there isnt a mod like this for 1.3, Yet.
Personally I dont think there is much of a need for advertising of Punbb sites, There hasnt really been the need in the past.
I reccomend using firefox and two extensions called ardvark and web developer, they will allow you to see what div's each box is and can allow you to change the CSS live, locally.
Added to:
This has been reported. Sorry.
Agree. I dont like working with the CSS and markup too much though. ![]()
You will have to make an extension. I havnt looked at the Poll code but you will have to use that code, Or see if the developers can help.
For this you will have to ask the developers who created 1.3.
I think your best option is to make a folder called topic_title_on_index inside extensions/ and make a file (inside the folder) called manifest.xml and put the following in and try it out:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE extension SYSTEM "ext-1.0.dtd">
<!--
/**
* @copyright topic_title_on_index Copyright (C) 2008 hcs
* @copyright Copyright (C) 2008 PunBB, partially based on code copyright (C) 2008 FluxBB.org
* @license http://www.gnu.org/licenses/gpl.html GPL version 2 or higher
* @package topic_title_on_index
*/
-->
<extension engine="1.0">
<id>topic_title_on_index</id>
<title>Topic title on forum index </title>
<version>1.0.0 Beta</version>
<description>Replace the Last Post link on the index page for the name of the topic instead of the date format.</description>
<author>hcs</author>
<minversion>1.3</minversion>
<maxtestedon>1.3.2</maxtestedon>
<hooks>
<hook id="in_qr_get_cats_and_forums"><![CDATA[
$query['SELECT'] .=', t.subject, u.id as poster_id';
$query['JOINS'][] = array(
'LEFT JOIN' => 'topics AS t',
'ON' => 'f.last_post_id=t.last_post_id'
);
$query['JOINS'][] = array(
'LEFT JOIN' => 'users AS u',
'ON' => 'f.last_poster=u.username'
);
]]></hook>
<hook id="in_start"><![CDATA[
function words($string, $words)
{
return implode(" ", array_slice(explode(' ', $string), 0, $words)) . '...';
}
function relative_time($timestamp)
{
$ago = ' temu';
$d = time() - $timestamp;
if ($d < 60)
if ($d==1)
return $d. " sekunde" .$ago;
elseif (($d%10)>=2 && ($d%10)<=4 && ($d < 12 || $d > 14))
return $d. " sekundy" .$ago;
else
return $d. " sekund" .$ago;
else
{
$d = floor($d / 60);
if($d < 60)
if ($d==1)
return $d. " minute" .$ago;
elseif (($d%10)>=2 && ($d%10)<=4 && ($d < 12 || $d > 14))
return $d. " minuty" .$ago;
else
return $d. " minut" .$ago;
else
{
$d = floor($d / 60);
if($d < 24)
if ($d==1)
return $d. " godzine" .$ago;
elseif (($d%10)>=2 && ($d%10)<=4 && ($d < 12 || $d > 14))
return $d. " godziny" .$ago;
else
return $d. " godzin" .$ago;
else
{
$d = floor($d / 24);
if($d < 7)
return $d." d".(($d==1)?'zień':'ni')." temu";
else
{
$d = floor($d / 7);
if($d < 4)
if ($d==1)
return $d. " tydzień" .$ago;
elseif (($d%10)>=2 && ($d%10)<=4 && ($d < 12 || $d > 14))
return $d. " tygodnie" .$ago;
else
return $d. " tygodni" .$ago;
}//Week
}//Day
}//Hour
}//Minute
}
$words = 4;
]]></hook>
<hook id="in_normal_row_pre_display"><![CDATA[
if(strpos($forum_page['item_body']['info']['lastpost'], $lang_index['No post info']) === false && strpos($forum_page['item_body']['info']['lastpost'], $lang_common['Never']) === false)
$forum_page['item_body']['info']['lastpost'] = '<li class="info-lastpost"><span class="label">'.$lang_index['Last post'].'</span> <strong><a href="'.forum_link($forum_url['post'], $cur_forum['last_post_id']).'">'.forum_htmlencode(words($cur_forum['subject'], $words)).'</a></strong> <cite>'.relative_time($cur_forum['last_post']).' '.sprintf($lang_index['Last poster'], '<a href="'.forum_link($forum_url['user'], $cur_forum['poster_id']).'">'.forum_htmlencode($cur_forum['last_poster']).'</a>').'</cite></li>';
]]></hook>
</hooks>
</extension>PunBB Forums » Posts by Utchin
Powered by PunBB, supported by Informer Technologies, Inc.
Currently installed 5 official extensions. Copyright © 2003–2009 PunBB.