Yes, it is possible, it can be done with CSS.
52 2010-07-22 13:05
Re: Banned myself (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.
53 2010-07-22 13:00
Re: Extension Stopforumspam Query Beta Working! (25 replies, posted in PunBB 1.3 troubleshooting)
Where can I get the latest version of the extension? The last link returns 404 error.
54 2010-07-19 08:02
Re: Extension Stopforumspam Query Beta Working! (25 replies, posted in PunBB 1.3 troubleshooting)
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.
I saw in pun_approval that tables are created like this?
This is correct way to create table.
55 2010-07-14 13:30
Re: [Open Request] Signature once per topic (1 replies, posted in PunBB 1.3 additions)
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 2010-07-14 13:22
Re: php 5.3 (1 replies, posted in Discussions)
Yes, it should. Perhaps, some extensions need updating a bit after migration.
57 2010-07-14 13:15
Re: [Open Request] How to add sidebar in punbb? (2 replies, posted in Feature requests)
There is now such extension for PunBB 1.3.4 now.
58 2010-07-14 11:49
Re: stopping spam bot registration outright? (13 replies, posted in PunBB 1.3 troubleshooting)
You can ban users by e-mail in the administration menu.
59 2010-07-14 11:24
Re: phpBB 3 to punBB (18 replies, posted in Feature requests)
We aren't working on the migration tool at the moment.
60 2010-07-14 11:23
Re: Upgarde from 1.2.x to 1.3, charset going crazy (2 replies, posted in PunBB 1.3 troubleshooting)
Could you post here the values of system variables of mysql? it can be done on the index page of phpmyadmin.
61 2010-07-14 10:51
Re: SMTP Mails not receiving at user end (2 replies, posted in PunBB 1.3 troubleshooting)
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.
62 2010-07-14 10:18
Re: [Solved] removing "Currently used extensions" (13 replies, posted in PunBB 1.3 troubleshooting)
You need to clear the hooks cache.
63 2010-07-14 10:15
Re: [Solved] How to change the subscribe (to topic) work to an image? (2 replies, posted in PunBB 1.3 troubleshooting)
It can be done by changing 212, 214 lines of the "<FORUM_ROOT>/viewtopic.php" file.
64 2010-07-14 10:09
Re: [Open] After installation and upgrading extensions - Profile error! (10 replies, posted in PunBB 1.3 troubleshooting)
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).
65 2010-06-29 08:48
Re: N-13 News / PunBB User Integration (1 replies, posted in PunBB 1.3 extensions)
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?
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 2010-06-29 08:02
Re: An error was encountered (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);
67 2010-06-29 07:51
Re: [request] punbb_tag : Display tags under topic title (6 replies, posted in PunBB 1.3 additions)
Please, add your feature request to the extension's wiki page.
68 2010-06-23 11:07
Re: Attachment extension blocking login (11 replies, posted in PunBB 1.3 troubleshooting)
Thanks for the bug report, we will fix it.
69 2010-06-23 08:28
Re: Pointing parked domains at my various sub forums? (3 replies, posted in PunBB 1.3 discussion)
Yes, it will work.
70 2010-06-22 14:27
Re: Prefix before Topic subject (1 replies, posted in Feature requests)
No, there is not such extension.
71 2010-06-22 14:25
Re: [Solved]Redirect plugin/exten (5 replies, posted in PunBB 1.3 troubleshooting)
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 2010-06-22 14:16
Re: use punbb inside my own cms (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.
73 2010-06-22 14:09
Re: Attachment extension blocking login (11 replies, posted in PunBB 1.3 troubleshooting)
I can't reproduce the problem. Could you post the site link here?
74 2010-06-22 13:38
Re: sort by date? (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Have you searched for the plugin at punres.org?
75 2010-06-22 13:28
Re: Pointing parked domains at my various sub forums? (3 replies, posted in PunBB 1.3 discussion)
No, you can't do it without code modifications. Also in case of several domains you should to solve the problem of common authorization.