Please, use the forum search: there is a solution how to move this line out.

Can you edit forum files or add new one?

153

(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

(3 replies, posted in PunBB 1.3 extensions)

There is no such option in the pun_attachment extension.

155

(99 replies, posted in PunBB 1.3 additions)

What kind of problems do you have?

156

(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

(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).

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

(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

(115 replies, posted in Supported extensions)

rajuru wrote:

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.

First of all read this example of login integration. Provide us more with details of your site integration, please.

162

(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

(3 replies, posted in PunBB 1.3 extensions)

Could you  start a new thread with the extension release, please?

164

(1 replies, posted in PunBB 1.3 additions)

Try to use code from this example.

165

(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

(15 replies, posted in PunBB 1.3 extensions)

What does your php error log say?

167

(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.

Provide us more details, please smile

You will not lose anything. Here are the upgrade instructions.

170

(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

(5 replies, posted in Discussions)

hussam wrote:

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?

Does the bbcode panel appear? Can you use it on this forum?

173

(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.

You need to refresh hooks after such modifications.

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.