It could be a small extension
226 2009-10-06 08:34
Re: Show-my-topics feature (17 replies, posted in PunBB 1.3 additions)
227 2009-10-06 08:29
Re: Arabic language Problem (32 replies, posted in PunBB 1.3 troubleshooting)
Please, post a screenshot.
228 2009-10-05 11:17
Re: PunBB Multi Forum Hosting ... (5 replies, posted in PunBB 1.3 troubleshooting)
And how you determine who is the hostuser? Do forums have different URLs (like example.com/user1/ or user1.example.com/)?
229 2009-10-05 10:36
Re: Changing output of extern.php to charset iso-8859-1 (5 replies, posted in PunBB 1.3 troubleshooting)
You're welcome
230 2009-10-05 10:08
Re: Changing output of extern.php to charset iso-8859-1 (5 replies, posted in PunBB 1.3 troubleshooting)
So, you have to wrap "include" with buffering commands and then to change the encoding.
It should be like this:
ob_start();
include ...
$output = ob_get_contents();
ob_end_clean();
echo iconv("UTF-8", "ISO-8859-1", $output);
231 2009-10-05 09:51
Re: few questions about editing punbb's style (5 replies, posted in PunBB 1.3 additions)
Fibi, try to see how it's made in the Informer style (how to download it).
A style can have its own templates (*.tpl files). You can add there a header or a footer.
Feel free to ask questions if you have ones.
232 2009-10-05 09:38
Re: Changing output of extern.php to charset iso-8859-1 (5 replies, posted in PunBB 1.3 troubleshooting)
Unfortunately i used to include some post tiltles with the extern.php file on a page which outputs rely on the latin encoding.
Please, describe exactly how it was included. Maybe it's possible to convert strings somewhere.
233 2009-10-01 13:52
Re: Error after changing board language (2 replies, posted in PunBB 1.3 troubleshooting)
It means that this language pack is incomplete. You can try to take url_replace.php from ./lang/English/url_replace.php.
234 2009-10-01 13:33
Re: [Release] Simple Blue-Black BB-Style (6 replies, posted in PunBB 1.3 additions)
By the way, what is the difference between 5-th and 6-th icon?
235 2009-10-01 12:53
Re: Arabic language Problem (32 replies, posted in PunBB 1.3 troubleshooting)
It's for PunBB 1.2. PunBB 1.3 lang files differ from 1.2. The best way you can do the translation is to edit these files manually in a simple text editor that supports UTF-8. They have very simple structure, see an example. Ctrl + C and Ctlr + V will help to avoid starting again.
236 2009-10-01 09:59
Re: DeBug Help needed? (13 replies, posted in PunBB 1.3 troubleshooting)
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.
237 2009-10-01 09:48
Re: PunBB Multi Forum Hosting ... (5 replies, posted in PunBB 1.3 troubleshooting)
So, it depends on what you have already done. If you describe it in detail, we'll be able to advise you something.
238 2009-10-01 09:43
Re: [Release] Simple Blue-Black BB-Style (6 replies, posted in PunBB 1.3 additions)
Why not to use Famfamfam Silk Icons?
239 2009-10-01 09:05
Re: Arabic language Problem (32 replies, posted in PunBB 1.3 troubleshooting)
Seems like your lang files do not UTF-8 encoded. You have to use a text editor that supports UTF-8. (I prefer to use Notepad++.)
Edit:
By the way, what Puntranslator do you use? I'm not sure it's compatible with PunBB 1.3.
240 2009-10-01 08:51
Re: UCFirst Language Problem ... (1 replies, posted in PunBB 1.3 troubleshooting)
.brd .item-summary strong:first-letter {
text-transform: uppercase;
}
241 2009-09-30 09:01
Re: Topic view count should not increase if viewed by admin (1 replies, posted in PunBB 1.3 discussion)
I don't think that we should include this feature into the core.
You can create a simple extension from your patch. Use "vt_qr_increment_num_views" hook for that.
242 2009-09-29 12:08
Re: Arabic language Problem (32 replies, posted in PunBB 1.3 troubleshooting)
It means that your language pack is incomplete. By the way, you can open and edit these files in a text editor that supports UTF-8 encoding.
243 2009-09-29 08:51
Re: Enabling the feature 'User has posted' causes severe error (4 replies, posted in PunBB 1.3 bug reports)
You are right. We'll see what we can do.
244 2009-09-29 08:33
Re: DeBug Help needed? (13 replies, posted in PunBB 1.3 troubleshooting)
You have to obtain access to the server (FTP or SSH). Otherwise we will not be able to help you. We don't even know what kind of error you have encountered.
245 2009-09-28 11:09
Re: bugs in rss feeder? (7 replies, posted in PunBB 1.3 troubleshooting)
We don't find any bugs. Could you post the link to RSS or its source that gives errors, please?
246 2009-09-28 10:20
Re: Set member as a moderator of a forum (5 replies, posted in PunBB 1.3 discussion)
It is not exactly so. After changing user's group, you can specify in user's profile what forums he can moderate.
247 2009-09-28 10:11
Re: Style generator problem (2 replies, posted in PunBB 1.3 discussion)
Maybe your browser cached CSS?
248 2009-09-28 10:03
Re: Enabling the feature 'User has posted' causes severe error (4 replies, posted in PunBB 1.3 bug reports)
This issue has already been reported. It's because sqlite doesn't fully support subqueries.
If it's possible to avoid the subquery without a performance decrease, we'll do it.
249 2009-09-24 12:42
Re: Securing PunBB (2 replies, posted in PunBB 1.3 discussion)
what are the minimum privilegies required by the database user with regards to PunBB?
I think the following will be enough for PunBB:
Select
Insert
Update
Delete
Create
Drop
Alter
Create tmp tables
I got the warning that cache should be writable (chmod 777), but would it be more secure if the files all belong to www-user and are only user writable?
It would. But one may not change file owners on most shared hostings. You can change if you want
Can I make the extension folder read-only after I'm done installing extensions?
Sure.
Are there any more directories that need to be writeable?
/img/avatars
Is there any gain in creating another user in the same group as www-user and let him be the owner of the files so that www-user has no chance of changing permissions on files?
Maybe yes.
Make your changes step by step and verify if the forum works fine after each change.
250 2009-09-23 13:29
Re: bugs in rss feeder? (7 replies, posted in PunBB 1.3 troubleshooting)
Thanks for reporting. We'll investigate this issue.