401

(17 replies, posted in PunBB 1.3 additions)

This is the best place for adding a link. And this is an example of how "View all posts" link is generated. Will this information be enough for you?

402

(13 replies, posted in PunBB 1.3 troubleshooting)

As it was written above, you need to add the line

define('FORUM_DEBUG', 1);

to end of the file "<FORUM_ROOT>/config.php". Not to Mysql query.

403

(13 replies, posted in PunBB 1.3 troubleshooting)

You have already posted this message. Did you try to do this?

Parpalak wrote:

It's the HTML code generated by forum script. It can't help us to understand what's wrong.

You have to open "config.php" file (via FTP or SSH) and to add there

define('FORUM_DEBUG', 1);

You can ask your hosting provider to help in editing "config.php" file.

After enabling the debug mode you will see more information about the error.

You need to edit the 176 line of "<FORUM_ROOT>/header.php". It will look like:

$gen_elements['<!-- forum_announcement -->'] = ($forum_config['o_announcement'] == '1' && $forum_user['g_read_board'] == '1' && FORUM_PAGE == 'index') ? '<div id="brd-announcement" class="gen-content">'.($forum_config['o_announcement_heading'] != '' ? "\n\t".'<h1 class="hn"><span>'.$forum_config['o_announcement_heading'].'</span></h1>' : '')."\n\t".'<div class="content">'.$forum_config['o_announcement_message'].'</div>'."\n".'</div>'."\n" : '';

On the "edit group permissions" page there is an option "Allow users to view the user list and user profiles". That's what you need. smile

406

(35 replies, posted in PunBB 1.3 additions)

Are you sure the file "<FORUM_ROOT>/include/common.php" is included in your code?

You need just to comment this line.

408

(13 replies, posted in PunBB 1.3 troubleshooting)

What is the error message?

409

(3 replies, posted in PunBB 1.3 discussion)

There is no such migrating script for this now. I contacted our member who can help us create this tool, but he hasn't replied yet.

410

(2 replies, posted in PunBB 1.3 troubleshooting)

We will think how to do this in the best way. This problem is known to us.

411

(32 replies, posted in PunBB 1.3 troubleshooting)

Ifadah wrote:

So just few days to test it on my new forum then will upload it here.

It will be great! Add your lang pack to the Wiki, please.

412

(32 replies, posted in PunBB 1.3 troubleshooting)

  • Make sure that the Arabic language pack  is placed in the lang folder ("<FORUM_ROOT>/lang/Arabic")

  • Make sure that the file common.php exists in the directory ("<FORUM_ROOT>/lang/Arabic/common.php").

This is the content of the file "<FORUM_ROOT>/extensions/pun_admin_log/functions.php". It seems that your server don't support short PHP tags. In the SVN there is updated version of this file. You can get it and replace old file with new.

414

(31 replies, posted in Supported extensions)

N3twork2 wrote:

I have 3000 and 7500 members in my forums. And there is time out.

It's possible to send fifty by fifty email for no timeout ?

ThX

We will think how to do this in the best way.

NettiCat wrote:

I have the same problem as pcoxygen:
The Quick reply still doesn't show up to guests.

The Quick reply option will not show up for guests.

Thanks for reporting. We will investigate this problem.

Here the peace of code, which used for password hash generation:

$salt = random_key(12);
$password_hash = forum_hash($password1, $salt);

The "random_key" function generates a random string which is called "salt" (it is stored in the table "users"). Then generates a password hash with "forum_hash" function. Both these functions you can find in the file "<FORUM_ROOT>/include/functions.php".

418

(32 replies, posted in PunBB 1.3 troubleshooting)

Post here the error message, please.

419

(9 replies, posted in Discussions)

A few months ago there was a topic about free hosting for PunBB. But it seems that it is not working now.

Comment the line with function set_magic_quotes_runtime() in the "<FORUM_ROOT>/include/common.php".

421

(115 replies, posted in Supported extensions)

Thanks for reporting! Fixed in pun_poll 1.1.5.

You need to edit the .htaccess file. It will look like:

# BEGIN PunBB

<IfModule mod_rewrite.c>
# MultiViews interfers with proper rewriting
Options -MultiViews

RewriteEngine On

# Uncomment and properly set the RewriteBase if the rewrite rules are not working properly
#RewriteBase /
RewriteCond %{REQUEST_FILENAME} example$
RewriteRule . examplepage.php [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . rewrite.php [L]
</IfModule>

# END PunBB

Study out the script from this post, it should help you.

424

(31 replies, posted in Supported extensions)

Did you try increasing the server timeout directive in the server config?

Describe your external authorization in more detail, please. What page do you want to use for logging in at your site?