And who have spent more time on forums.
77 2010-03-30 10:31
Re: How to parse bbcodes outside forum? (8 replies, posted in PunBB 1.3 troubleshooting)
You're welcome
78 2010-03-29 10:23
Re: How to parse bbcodes outside forum? (8 replies, posted in PunBB 1.3 troubleshooting)
<?php
define('FORUM_ROOT', './');
require FORUM_ROOT.'include/common.php';
require FORUM_ROOT.'include/parser.php';
$s = 'test [b]test[/b]';
echo $s, parse_message($s, false);
79 2010-03-29 10:18
Re: [request] Make "New Private Message" link bright yellow & bold (9 replies, posted in PunBB 1.3 additions)
It's because of unescaped '. Try this:
'<strong>New messages (%d)</strong><script>window.alert(\'you\\\'ve got new private messages!\');</script>',
Or this:
'<strong>New messages (%d)</strong><script>window.alert(\'you have got new private messages!\');</script>',
80 2010-03-29 10:11
Re: time wrong (5 replies, posted in PunBB 1.3 troubleshooting)
Maybe the time settings on your server are wrong. You can check them by uploading and executing this small script:
<?php echo date("r"); ?>
It has displayed for me:
Mon, 29 Mar 2010 14:05:10 +0400
14:05 is a correct time for my timezone now and +0400 is the time shift from GMT.
81 2010-03-26 13:03
Re: Keeping posts during the file update (16 replies, posted in PunBB 1.3 discussion)
There are no such tools in PunBB.
82 2010-03-26 12:43
Re: Keeping posts during the file update (16 replies, posted in PunBB 1.3 discussion)
The list of the online users is displayed at the bottom of the forum index page.
83 2010-03-26 12:39
Re: Keeping posts during the file update (16 replies, posted in PunBB 1.3 discussion)
Didn't get your question.
An administrator can see users' IP addresses in their profiles.
84 2010-03-26 12:03
Re: Keeping posts during the file update (16 replies, posted in PunBB 1.3 discussion)
Seems like the cause is the extension that colors usernames. Try to disable it.
85 2010-03-26 11:53
Re: time wrong (5 replies, posted in PunBB 1.3 troubleshooting)
You have to set a proper timezone in your profile. Also there is the "Default timezone" parameter at the "Administration » Settings » Setup" page. It affects the default timezone for new users.
86 2010-03-26 11:49
Re: [request] Make "New Private Message" link bright yellow & bold (9 replies, posted in PunBB 1.3 additions)
You have to replace a line in this file: http://punbb.informer.com/trac/browser/ … pun_pm.php
87 2010-03-26 11:44
Re: Keeping posts during the file update (16 replies, posted in PunBB 1.3 discussion)
You are supposed to know it
Look into the config.php file. If the $db_type variable is not 'sqlite' (for example, 'mysqli'), then everything is fine.
88 2010-03-26 11:39
Re: Keeping posts during the file update (16 replies, posted in PunBB 1.3 discussion)
If you do not use the SQLite database, then everything should work fine.
89 2010-03-26 11:37
Re: Help With punbb across multiple subdomains (2 replies, posted in PunBB 1.3 troubleshooting)
There is a variable $base_url that contains the full url (http://...) without trailing slash. This variable is defined in the config.php file. Seems like you have to add some logic to the config.php that will detect the original domain (for example, fr.site.com) and set $base_url to 'http://fr.site.com'.
90 2010-03-26 11:30
Re: Keeping posts during the file update (16 replies, posted in PunBB 1.3 discussion)
Yes, you have to keep config.php file in the forum root.
Actually, you can simple overwrite files without deleting old ones.
91 2010-03-26 11:27
Re: Keeping posts during the file update (16 replies, posted in PunBB 1.3 discussion)
Posts and settings are stored in the database. So they will not be erased when you overwrite files.
Also, it's a good practice to make backups of the database and forum files before such administrative actions.
//Moved topic and altered title
92 2010-03-23 13:12
Re: Users can't register - email error (7 replies, posted in PunBB 1.3 troubleshooting)
Try to make empty all fields connected to "SMTP" at the "Administration » Settings » E-mail" page.
If this doesn't help, ask your histing support about e-mail sending from scripts.
93 2010-03-23 13:07
Re: Major Fix in your Software, (2 replies, posted in Discussions)
What forum version do you speak about?
94 2010-03-23 13:01
Re: Users can't register - email error (7 replies, posted in PunBB 1.3 troubleshooting)
Seems like you use a custom SMTP server. Could you check the log for error messages?
And if your server can send e-mails via a local mail program, you do not have to specify an SMTP server at all.
95 2010-03-22 12:05
Re: few questions (19 replies, posted in PunBB 1.3 troubleshooting)
Check this wiki page: http://punbb.informer.com/wiki/punbb13/styles
96 2010-03-22 11:44
Re: few questions (19 replies, posted in PunBB 1.3 troubleshooting)
What a template?
Now you have to rename your modified style (otherwise it will interfere with the original one) and to upload the original Oxygen style.
97 2010-03-22 11:22
Re: few questions (19 replies, posted in PunBB 1.3 troubleshooting)
Obviously, not standard. Your forum style has black and yellow colors. But the original Oxygen style has blue and gray colors.
The official downloading page is here: http://punbb.informer.com/wiki/downloads
98 2010-03-22 11:16
Re: few questions (19 replies, posted in PunBB 1.3 troubleshooting)
I'm afraid I can't help you. The bug is in the modified Oxygen style. Unfortunately, we can't support modifications done by third parties.
99 2010-03-22 11:04
Re: few questions (19 replies, posted in PunBB 1.3 troubleshooting)
You have to open <forum_root>/style/Oxygen/Oxygen_ie6.css in a text editor, add there the code above and save it. And to make the same thing with Oxygen_ie7.css.
100 2010-03-22 11:00
Re: few questions (19 replies, posted in PunBB 1.3 troubleshooting)
Ok, I see.
Try to add to Oxygen_ie6.css and Oxygen_ie7.css something like this:
.brd .user-ident .username {
zoom: 1;
}