screenshot or link?

2dimkalinux, the problem is incorrect zip-archive.

felixturner, thanks for the post.
We are working on it. You can use the tar archive: http://punbb.informer.com/extensions/1.4/extensions.tgz

53

(3 replies, posted in PunBB 1.4 troubleshooting)

Profile>Settings: Your timezone

54

(52 replies, posted in Supported extensions)

add into portal by daris for index.php:

if (!defined('FORUM_PARSER_LOADED'))

before

require FORUM_ROOT.'include/parser.php';

https://www.google.com/#hl=en&q=Can … ugh+socket

Maybe override $forum_user['style'] and $tpl_path  in hd_pre_template_loaded hook?
example without overriding tpl:

        <hook id="hd_head"><![CDATA[
        $useragent=$_SERVER['HTTP_USER_AGENT'];
        if(preg_match('/android.+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i',$useragent)||preg_match('/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|e\-|e\/|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(di|rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|xda(\-|2|g)|yas\-|your|zeto|zte\-/i',substr($useragent,0,4)))
        { 
            $original_style = $forum_user['style'];
            $forum_user['style'] = 'kt_mobile';
        }
        ]]></hook>

Then it can be in style/kt_mobile/kt_mobile.php add logic:

            if (isset($original_style) AND $original_style != 'Oxygen' && file_exists($ext_info['path'].'/css/'.$original_style.'/kt_mobile.css')) {
                $forum_loader->add_css($ext_info['url'].'/css/'.$original_style.'/kt_mobile.css', array('type' => 'url', 'group' => FORUM_CSS_GROUP_SYSTEM, 'media' => 'screen'));
            }
            else {
                $forum_loader->add_css($ext_info['url'].'/css/Oxygen/kt_mobile.css', array('type' => 'url', 'group' => FORUM_CSS_GROUP_SYSTEM, 'media' => 'screen'));
            }

and draw META in hd_head hook:

        <hook id="hd_head"><![CDATA[
if (isset($original_style))
{
echo('<meta content=\'width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;\' name=\'viewport\'>');
}
        ]]></hook>

57

(12 replies, posted in PunBB 1.4 troubleshooting)

Could you provide the code so the community could take part in development assistance and to identify the errors?
A good way to - to open the project on github

58

(4 replies, posted in General discussion)

The decision depends on how you have implemented an advertisement

59

(37 replies, posted in PunBB 1.4 additions)

Developer_helper can download here: https://github.com/downloads/ashcs/punb … helper.zip

1. Set lang_direction in lang/Your_lang/common.php to "rtl", see English for example.
2. More bb-codes can be installed extensions

May be a server error log will give a hint?

Our Chinese is much worse!

63

(52 replies, posted in Supported extensions)

Lightokun, what version of the browser?

64

(6 replies, posted in PunBB 1.4 bug reports)

Logging is possible if the extension is installed pun_admin_log.
Vulnerabilities may be in the extensions.

65

(6 replies, posted in PunBB 1.4 bug reports)

Please, tell step by step instructions how to reproduce this bug. Use bugreport page: http://punbb.informer.com/bugreport.php
Thanks

66

(25 replies, posted in PunBB 1.4 additions)

Excellent! I really liked it!

hklown wrote:

I think one line per extension would be good. If you plan on implementing some of these ideas, maybe incorporate them into pun_admin_manage_extensions_improved?

This is done in the new version [ release ] pun_admin_manage_extensions_improved

68

(52 replies, posted in Supported extensions)

Its work for me in GOOGLE CHROME & OPERA.
Any debug info or link to forum?

69

(52 replies, posted in Supported extensions)

Why archive contains full extension, instead of just the localization?
Please do not distribute the official extension with your modifications.
You can create a request to github to include your localization in the pun_wysiwyg: https://github.com/samclarke/PunBB-exte … issues/new

AOAS, speak English. This is the last warning.

You changed a files? Restore the original files.

Pun_admin_manage_extensions_improved is released:
http://punbb.informer.com/extensions/#1.4
Current version 1.5 compatible with PunBB 1.4.2
Interface has been modified to become a compact list of extensions.
Lists are collapsible, but this would require the installation pun_jquery.

You can get it with the help of the pun_repository extension.

I think it is fair to block users who use to communicate in this forum language other than English.

http://punbb.informer.com/trac/browser/ … l?rev=1673

75

(2 replies, posted in Discussions)

reCAPTCHA - a mockery of the forum users.
Use the fancy_stop_spam