51

(1 replies, posted in PunBB 1.3 troubleshooting)

Yes, it is possible, it can be done with CSS.

52

(11 replies, posted in PunBB 1.3 troubleshooting)

Replace the contents of the "<FORUM_ROOT>/cache/cache_bans.php" file with this:

<?php

define('FORUM_BANS_LOADED', 1);

$forum_bans = array (
);

?>

This should work.

Where can I get the latest version of the extension? The last link returns 404 error.

PunBB has a function "get_remote_file" to get page content ("<FORUM_ROOT>/include/functions.php"), checking "curl" and "allow_url_fopen" for availability is implemented in the function, so you can use it.

KeyDog wrote:

I saw in pun_approval that tables are created like this?

This is correct way to create table.

There is no such option at the moment. But it will not be too hard to create an extension which would implement this. We can help you to create it.

56

(1 replies, posted in Discussions)

Yes, it should. Perhaps, some extensions need updating a bit after migration.

There is now such extension for PunBB 1.3.4 now.

You can ban users by e-mail in the administration menu.

59

(18 replies, posted in Feature requests)

We aren't working on the migration tool at the moment.

Could you post here the values of system variables of mysql? it can be done on the index page of phpmyadmin.

Make sure that the smtp host, username, password and port are set correctly at the "<FORUM_URL>/admin/settings.php?section=email" page. I have tested the function which sends emails using SMTP, it worked fine for me.
You can try to manually create an telnet session with your SMTP server and send some message.

You need to clear the hooks cache.

It can be done by changing 212, 214 lines of the "<FORUM_ROOT>/viewtopic.php" file.

I have found one reason why this error may be appearing. The solution is described in the MySQL Lists, but in PunBB "set names" is used on every page.

Could you post a collation for PunBB tables here, please? (You can view it via phpmyadmin).

Team Blast wrote:

I am looking to see if it is possible to integrate a simple program called N-13 News with PunBB's database. I haven't found any info relating the two, however, and would ask for some kind help.

What exactly do you need to add?

Team Blast wrote:

Additionally, I would like to know if there is a better way to integrate PunBB into my site's layout without iframes, as it is tightly packed into one and also have to scroll through, which I very much dislike.

Please, post here the link to your site.

66

(3 replies, posted in PunBB 1.3 troubleshooting)

First of all you need to determine what causes the error. Add this line to the config.php to see debug information:

define('FORUM_DEBUG', 1);

Please, add your feature request to the extension's wiki page.

Thanks for the bug report, we will fix it.

Yes, it will work.

70

(1 replies, posted in Feature requests)

No, there is not such extension.

Study out the "handle_url_tag" function in the "<FORUM_ROOT>/include/parser.php" file, you can add something like this:

href="http://site.com/go.php?$url"

72

(1 replies, posted in Feature requests)

Study out the "add_user", "delete_user" functions in the "<FORUM_ROOT>/include/functions.php" file. To get online userlist study out the 315-340 lines of the "<FORUM_ROOT>/index.php" file.

I can't reproduce the problem. Could you post the site link here?

Have you searched for the plugin at punres.org?

No, you can't do it without code modifications. Also in case of several domains you should to solve the problem of common authorization.