402 2009-10-06 07:32
Re: DeBug Help needed? (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 2009-10-05 08:20
Re: DeBug Help needed? (13 replies, posted in PunBB 1.3 troubleshooting)
You have already posted this message. Did you try to do this?
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.
404 2009-10-05 07:48
Re: PunBB 1.3.4 Announcements section (2 replies, posted in PunBB 1.3 troubleshooting)
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" : '';
405 2009-10-05 07:36
Re: how to hide userlist from visitors? (1 replies, posted in PunBB 1.3 discussion)
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.
406 2009-10-05 07:17
Re: Create a external form for login (35 replies, posted in PunBB 1.3 additions)
Are you sure the file "<FORUM_ROOT>/include/common.php" is included in your code?
407 2009-10-05 07:16
Re: How do I remove "Moderated by" at the forum index? (1 replies, posted in PunBB 1.3 troubleshooting)
You need just to comment this line.
408 2009-10-05 07:05
Re: DeBug Help needed? (13 replies, posted in PunBB 1.3 troubleshooting)
What is the error message?
409 2009-10-02 07:16
Re: migrate phpbb to punbb forums (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 2009-10-02 06:55
Re: PunBB Right To Left Style (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 2009-09-30 06:24
Re: Arabic language Problem (32 replies, posted in PunBB 1.3 troubleshooting)
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 2009-09-29 07:11
Re: Arabic language Problem (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").
413 2009-09-29 06:42
Re: Problem changing settings (in admin/settings.php) (2 replies, posted in PunBB 1.3 troubleshooting)
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 2009-09-28 08:41
Re: pun_admin_broadcast_email (31 replies, posted in Supported extensions)
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.
415 2009-09-28 08:21
Re: Quick Reply not working when not logged in (13 replies, posted in PunBB 1.3 troubleshooting)
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.
416 2009-09-28 08:15
Re: Enabling the feature 'User has posted' causes severe error (4 replies, posted in PunBB 1.3 bug reports)
Thanks for reporting. We will investigate this problem.
417 2009-09-28 08:12
Re: WordPress 2.8.4 и punBB 1.3 Integration Problem (9 replies, posted in PunBB 1.3 troubleshooting)
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 2009-09-28 07:52
Re: Arabic language Problem (32 replies, posted in PunBB 1.3 troubleshooting)
Post here the error message, please.
419 2009-09-28 07:52
Re: Multiforum script punbb hosting (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.
420 2009-09-28 07:39
Re: set_magic_quotes_runtime() and "Cannot modify header information" (3 replies, posted in PunBB 1.2 troubleshooting)
Comment the line with function set_magic_quotes_runtime() in the "<FORUM_ROOT>/include/common.php".
421 2009-09-28 07:31
Re: pun_poll (115 replies, posted in Supported extensions)
Thanks for reporting! Fixed in pun_poll 1.1.5.
422 2009-09-25 15:15
Re: Static page added - want to create the correct redirect url (2 replies, posted in PunBB 1.3 troubleshooting)
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
423 2009-09-25 14:59
Re: Trying to inject accounts from a website into punbb. Howto? (17 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Study out the script from this post, it should help you.
424 2009-09-25 14:51
Re: pun_admin_broadcast_email (31 replies, posted in Supported extensions)
Did you try increasing the server timeout directive in the server config?
425 2009-09-25 14:15
Re: $_POST issue external login form (3 replies, posted in PunBB 1.3 troubleshooting)
Describe your external authorization in more detail, please. What page do you want to use for logging in at your site?