226

(17 replies, posted in PunBB 1.3 additions)

It could be a small extension smile

227

(32 replies, posted in PunBB 1.3 troubleshooting)

Please, post a screenshot.

And how you determine who is the hostuser? Do forums have different URLs (like example.com/user1/ or user1.example.com/)?

You're welcome smile

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);

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.

felic wrote:

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.

It means that this language pack is incomplete. You can try to take url_replace.php from ./lang/English/url_replace.php.

By the way, what is the difference between 5-th and 6-th icon?

235

(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

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

So, it depends on what you have already done. If you describe it in detail, we'll be able to advise you something.

Why not to use Famfamfam Silk Icons? smile

239

(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

(1 replies, posted in PunBB 1.3 troubleshooting)

It's in CSS:

.brd .item-summary strong:first-letter {
    text-transform: uppercase;
    }

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

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

You are right. We'll see what we can do.

244

(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

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

It is not exactly so. After changing user's group, you can specify in user's profile what forums he can moderate.

247

(2 replies, posted in PunBB 1.3 discussion)

Maybe your browser cached CSS?

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

(2 replies, posted in PunBB 1.3 discussion)

Admininho wrote:

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
Admininho wrote:

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 smile

Admininho wrote:

Can I make the extension folder read-only after I'm done installing extensions?

Sure.

Admininho wrote:

Are there any more directories that need to be writeable?

/img/avatars

Admininho wrote:

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

(7 replies, posted in PunBB 1.3 troubleshooting)

Thanks for reporting. We'll investigate this issue.