You can select the Copper style in your profile.
277 2009-12-03 08:32
Re: pun_stop_bots (75 replies, posted in Supported extensions)
I will upgrade the extension for correct work with openid extension.
278 2009-12-03 08:30
Re: [extension release] pun_admin_manage_extensions_improved (13 replies, posted in PunBB 1.3 extensions)
Thanks for the idea. Added to the Wiki as feature request.
279 2009-12-02 11:26
Re: pun_stop_bots (75 replies, posted in Supported extensions)
Thanks for reporting, chovy. Fixed in [1458].
280 2009-11-30 09:48
Re: sef_friendly incorrect variable (1 replies, posted in PunBB 1.3 bug reports)
Thanks. Fixed in 1457.
281 2009-11-30 09:32
Re: Ask "Are you sure" on Report Post - Suggestion (4 replies, posted in Feature requests)
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 2009-11-30 09:31
Re: pun_bbcode not appear (2 replies, posted in PunBB 1.3 troubleshooting)
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?
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?
283 2009-11-30 09:15
Re: link http://domain/foorum/register.php is empty (3 replies, posted in PunBB 1.3 troubleshooting)
Could you study the php errors log at your server? Perhaps, there is some errors there.
284 2009-11-30 09:10
Re: Google Analytics and PunBB (20 replies, posted in Feature requests)
Have you tried this extension by Garciat?
285 2009-11-30 08:59
Re: Include Userlist to another page. (7 replies, posted in PunBB 1.3 additions)
The extern.php file is not used for userlist generation. Study the code of the "<FORUM_ROOT>/userlist.php" file.
286 2009-11-30 08:53
Re: Midievo (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 2009-11-30 08:23
Re: Some problems in Attachment (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
.
288 2009-11-27 05:47
Re: Got a small problem (hope this is the right place to post it) (1 replies, posted in PunBB 1.2 troubleshooting)
Did you make any changes in the Forum core? By default the online list looks like:
Gsus, Darkman
289 2009-11-26 13:49
Topic: pun_stop_bots (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 2009-11-26 08:59
Re: [Release] Hide tag (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
291 2009-11-26 08:19
Re: Replacing <img> with <object> (4 replies, posted in PunBB 1.3 troubleshooting)
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.'" ...
292 2009-11-25 09:47
Re: How to transfer punbb forum to new host (1 replies, posted in PunBB 1.3 troubleshooting)
Have you found the solution of your problem?
293 2009-11-25 09:38
Re: Formatting extern.php to display news items with content (3 replies, posted in PunBB 1.3 additions)
Thanks for sharing this.
294 2009-11-25 09:35
Re: chatbox. question about security. [solved] (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
You can use the function "pun_htmlspecialchars" in chat messages output. It will sanitize messages.
295 2009-11-25 09:29
Re: Problem with migration from 1.2 to 1.3 (2 replies, posted in PunBB 1.3 troubleshooting)
Are there any log messages during the process? Was the process active when you canceled it?
296 2009-11-25 09:19
Re: Admin must verify registrations (4 replies, posted in PunBB 1.3 extensions)
This feature will be implemented in the pun_approval extension. It is in development now.
297 2009-11-25 09:17
Re: RSS feed for extension announcements? (2 replies, posted in PunBB 1.3 extensions)
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 2009-11-25 09:04
Re: adding fields to the user table (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.
299 2009-11-25 08:36
Re: Replacing <img> with <object> (4 replies, posted in PunBB 1.3 troubleshooting)
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 2009-11-24 08:10
Re: 404! (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".