Please, use the forum search: there is a solution how to move this line out.
151 2010-03-10 14:39
Re: removing the extension line from the footer (2 replies, posted in PunBB 1.3 troubleshooting)
152 2010-03-05 13:29
Re: extracting punbb database - trouble with ownforum.org/portbb.com (9 replies, posted in Discussions)
Can you edit forum files or add new one?
153 2010-03-04 17:54
Re: Sort userlist by default? (2 replies, posted in PunBB 1.3 additions)
By default it sets on the 29 line of "<FORUM_ROOT>/userlist.php" (variable $forum_page['sort_by']).
154 2010-03-04 17:39
Re: Watermark (3 replies, posted in PunBB 1.3 extensions)
There is no such option in the pun_attachment extension.
155 2010-03-01 07:38
Re: Languages (99 replies, posted in PunBB 1.3 additions)
What kind of problems do you have?
156 2010-02-26 14:25
Topic: Forum news (pun_forum_news) (15 replies, posted in Supported extensions)
A new extension pun_forum_news has just been released. This extension allows users to mark topics or posts as “news”. The news is shown on a special page. More information you can find in the Wiki. It is already installed on our forums, you can see it in action right now.(http://punbb.informer.com/forums/news/, http://punbb.informer.com/forums/feed/rss/news/.)
Links:
Feel free to post bug reports and make a suggestions about extension improving.
157 2010-02-26 09:21
Re: Registration via Python (2 replies, posted in PunBB 1.3 discussion)
PunBB has 2 fields related to passwords: salt, password_hash. Salt is a random string which is used for password_hash generating. The salt is generated by "random_key" function (line 1070 of the "<FORUM_ROOT>/include/functions.php" file). The password hash is generated by "forum_hash" function (line 1114 of the "<FORUM_ROOT>/include/functions.php" file).
158 2010-02-26 09:18
Re: Number-of-views in the show-my-topics feature (experience needed!) (2 replies, posted in PunBB 1.3 additions)
Could you please place blocks of php code in the tag "code"?
The count of topic views is not selected from the database. To select it, you need to edit the line 539 of the <FORUM_ROOT>/include/search_functions.php file:
'SELECT' => 't.id AS tid, t.poster, t.subject, t.first_post_id, t.posted, t.last_post, t.last_post_id, t.last_poster, t.num_replies, t.closed, t.sticky, t.forum_id, f.forum_name, t.num_views',
In your code posted above you need to use the $cur_set variable. Also, don't forget to add the "Views" column to table's header.
159 2010-02-24 11:37
Re: pun_poll (115 replies, posted in Supported extensions)
The pun_poll 1.1.10 extension has been released. Changes from the previous version:
added encoding of html entities in the poll answers list.
160 2010-02-24 11:35
Re: pun_poll (115 replies, posted in Supported extensions)
Hello,
Can you kindly make it (the poll options in quick reply and reply page) collapsible by default (can be configurable too by admin). It will make posting/replying more comfortable.
Thanks for the idea. We will think about it.
161 2010-02-24 10:58
Re: Integrate the PunBB Forum Login with a PHP Shopping Cart (2 replies, posted in General discussion)
First of all read this example of login integration. Provide us more with details of your site integration, please.
162 2010-02-24 09:56
Re: Attachments (pun_attachment) (118 replies, posted in Supported extensions)
1. Edit the group permissions for guests. The "Allow users to download files" option should be checked.
2. There are some permissions checking at this page. Are you sure that the user haven't rights to download files?
163 2010-02-24 09:20
Re: help me about pun_attachment (3 replies, posted in PunBB 1.3 extensions)
Could you start a new thread with the extension release, please?
164 2010-02-18 15:01
Re: Syndication: last posts (1 replies, posted in PunBB 1.3 additions)
Try to use code from this example.
165 2010-02-18 14:56
Re: Full Backup Mod (15 replies, posted in PunBB 1.3 extensions)
We haven't developed this extension at the moment. But I hope we will finish it in the nearest feature.
166 2010-02-17 13:00
Re: Full Backup Mod (15 replies, posted in PunBB 1.3 extensions)
What does your php error log say?
167 2010-02-17 12:59
Re: Disable hooks cache? (1 replies, posted in PunBB 1.3 extensions)
Unfortunately, there is no such option now. For easier devlopment, you can use the pun_admin_manage_extensions_improved extension. It has a possibility to refresh hooks without uninstalling your extension.
168 2010-02-17 12:54
Re: how to colors in the pun bbcode (1 replies, posted in PunBB 1.3 discussion)
Provide us more details, please
169 2010-02-12 14:20
Re: Upgrade from 1.2.6 to 1.2.22 (1 replies, posted in PunBB 1.2 troubleshooting)
You will not lose anything. Here are the upgrade instructions.
170 2010-02-12 14:12
Re: Viability of my integration (5 replies, posted in Discussions)
Some thoughts:
Registration, I think, should be available only on the main site as a login form.
For common authorization and correspondence between a forum profile and a profile on your site, you can add the "external_id" (or something like that) column to the forum users table. It will be list the id of a user on the main site.
The user authentication happens in the "cookie_login" function in the "<FORUM_ROOT>/include/functions.php" file. Add the code you used on the main site to this function and init the $forum_user variable.
When a user visits forum for first time, add him to the forum users table.
Add redirection from the login/logout/registrations page to corresponding pages on your main stie.
You can implement the integration extension-wise, this will solve the problem of forum updating.
171 2010-02-12 13:37
Re: googlebot and punbb (5 replies, posted in Discussions)
If googlebot can't see them as a guest, how is it trying to crawl them to begin with? or does punbb let googlebot see private forum sections?
No, if a forum is private, googlebot can't crawl it. Could you post here (or send me a pm with) the links or something what can confirm your thoughts?
172 2010-02-12 13:09
Re: BBCode buttons arent working Please help (13 replies, posted in PunBB 1.3 extensions)
Does the bbcode panel appear? Can you use it on this forum?
173 2010-02-11 15:30
Re: quick posts and editing (4 replies, posted in General discussion)
Thanks for reporting this. It was a bug in the experimental forum branch, which was installed on our forums. It was fixed, and now the Quick quote and the edit link appear correctly.
174 2010-02-09 06:59
Re: Problems downloading Attachments in IE (6 replies, posted in PunBB 1.3 extensions)
You need to refresh hooks after such modifications.
175 2010-02-08 10:33
Re: Problems downloading Attachments in IE (6 replies, posted in PunBB 1.3 extensions)
Perhaps, this hack will help you. Replace the line
header('Content-Type: '.$attach_info['file_mime_type']);
with this
header('Content-Type: application-download');
in manifest.xml on line 949.