276

(28 replies, posted in PunBB 1.3 additions)

You can select the Copper style in your profile.

277

(75 replies, posted in Supported extensions)

I will upgrade the extension for correct work with openid extension.

Thanks for the idea. Added to the Wiki as feature request.

279

(75 replies, posted in Supported extensions)

Thanks for reporting, chovy. Fixed in [1458].

Thanks. Fixed in 1457.

I believe that the fewer actions for a user to make on a page the better. Double checking will not be useful in this case. If you send an error report, you can send another with revocation of your previous report.

282

(2 replies, posted in PunBB 1.3 troubleshooting)

udhien wrote:

1. My Forum using own style, called "mytheme" and I already copied the Oxygen buttons to "mytheme" buttons in /forum/extensions/pun_bbcode/buttons/mytheme

Does the pun_bbcode panel appear when the user uses the Oxygen style?

udhien wrote:

2. There is some error when i tried to access manifest.xml (http://www.mydomain.com/forum/extensions/pun_bbcode/manifest.xml

For what purposes do you try to get this page?

Could you study the php errors log at your server? Perhaps, there is some errors there.

284

(20 replies, posted in Feature requests)

Have you tried this extension by Garciat?

The extern.php file is not used for userlist generation. Study the code of the "<FORUM_ROOT>/userlist.php" file.

286

(4 replies, posted in PunBB 1.3 additions)

Could you please provide a link to a forum with this style? You can create your own style with using of the style generator.

287

(3 replies, posted in PunBB 1.3 extensions)

I tried to register at your forum, but I get:

Connection Interrupted

The connection to the server was reset while the page was loading

.

Did you make any changes in the Forum core? By default the online list looks like:

Gsus, Darkman

289

(75 replies, posted in Supported extensions)

This is a first release of new extension pun_stop_bots. The extension will ask some questions to prevent bot registration and posting. More information you can find in the Wiki. There are only two questions in the DB after installation, so don't forget to add more questions.
Links:

It will be great to hear your opinions and suggestions on improvement of the extension.

290

(31 replies, posted in PunBB 1.3 extensions)

Thanks for your work!
I tested it and I have the error. As administrator I have posted the message:

[hide=100]
Hidden message
[/hide]

When I read this post as usual member I have this error:
  Notice: Undefined offset: 1 in ...\include\parser.php(808) : eval()'d code on line 37

Check for file extension looks like this:

$file_extension = substr(strrchr($url, '.'), 1);
switch ($file_extension) 
{
    case 'png':
        $file_type = 'image/png';
        break;
        ...
}

And add the file type to object tag:

...<object type="'.$file_type.'" ...

Have you found the solution of your problem?

Thanks for sharing this.

You can use the function "pun_htmlspecialchars" in chat messages output. It will sanitize messages.

Are there any log messages during the process? Was the process active when you canceled it?

This feature will be implemented in the pun_approval extension. It is in development now.

Unfortunately there is no such RSS feed yet, but it would be very useful. We will think how to do this in the best way.

298

(5 replies, posted in PunBB 1.3 additions)

There is no off-the-shelf solution for this, it can be implemented as an extension. You need to:

  • Add the corresponding fields in the "users" table

  • Add the additional fields to the identity page of user profile

  • Handle the Submit button presses on this page

  • Add new information about the user to the introduction page.

You can determine the mime type of some files by the file extension. Use this code to extract the extension of a file:

substr(strrchr($url, '.'), 1)

300

(1 replies, posted in Feature requests)

Thanks for the idea. We will think about it.
If you want to change this page by yourself, you need to edit the function "error" in the "<FORUM_ROOT>/include/functions.php".