screenshot or link?
52 2012-05-03 07:41
Re: Installing all extensions gives Errors (2 replies, posted in PunBB 1.4 troubleshooting)
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 2012-04-27 15:16
Re: Time zone (3 replies, posted in PunBB 1.4 troubleshooting)
Profile>Settings: Your timezone
54 2012-04-17 01:29
Re: testing pun_wysiwyg (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';
55 2012-04-15 06:14
Re: dear admins may you help us please (1 replies, posted in General discussion)
56 2012-04-07 13:16
Re: Load specific CSS instead of default one. (2 replies, posted in PunBB 1.4 troubleshooting)
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 2012-04-06 13:04
Re: Mobile Phone Version (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 2012-04-06 13:00
Re: Hiding commercials (4 replies, posted in General discussion)
The decision depends on how you have implemented an advertisement
59 2012-04-06 12:53
Re: [Release][Extension] Thanks (37 replies, posted in PunBB 1.4 additions)
Developer_helper can download here: https://github.com/downloads/ashcs/punb … helper.zip
60 2012-04-06 12:48
Re: How I can convert PunBB to Arabic ? (3 replies, posted in PunBB 1.4 bug reports)
1. Set lang_direction in lang/Your_lang/common.php to "rtl", see English for example.
2. More bb-codes can be installed extensions
61 2012-04-01 15:17
Re: 我论坛不能设置简体中文为默认语言 (11 replies, posted in PunBB 1.4 additions)
May be a server error log will give a hint?
62 2012-04-01 07:18
Re: 我论坛不能设置简体中文为默认语言 (11 replies, posted in PunBB 1.4 additions)
Our Chinese is much worse!
63 2012-03-27 05:32
Re: testing pun_wysiwyg (52 replies, posted in Supported extensions)
Lightokun, what version of the browser?
64 2012-03-26 08:04
Re: 1.42 big bug (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 2012-03-26 06:02
Re: 1.42 big bug (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 2012-03-25 08:13
Re: (Theme Release) - Artstyle (25 replies, posted in PunBB 1.4 additions)
Excellent! I really liked it!
67 2012-03-19 10:35
Re: Manage extension interface - unofficial extensions repository (4 replies, posted in Discussions)
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 2012-03-18 10:15
Re: testing pun_wysiwyg (52 replies, posted in Supported extensions)
Its work for me in GOOGLE CHROME & OPERA.
Any debug info or link to forum?
69 2012-03-18 05:14
Re: testing pun_wysiwyg (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
70 2012-03-14 05:43
Re: small community forum - modified copper design, own banner/header (4 replies, posted in PunBB show off)
AOAS, speak English. This is the last warning.
71 2012-03-11 15:55
Re: Next page not work 1.4.2 (3 replies, posted in PunBB 1.4 bug reports)
You changed a files? Restore the original files.
72 2012-03-10 18:18
Topic: [release] pun_admin_manage_extensions_improved (0 replies, posted in Supported extensions)
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.
73 2012-03-10 18:09
Re: 我论坛不能设置简体中文为默认语言 (11 replies, posted in PunBB 1.4 additions)
I think it is fair to block users who use to communicate in this forum language other than English.
74 2012-03-07 13:18
Re: Please i need help with downloading extension pun_approval 1.4.1 (1 replies, posted in Discussions)
75 2012-03-07 04:09
Re: Recaptcha on registration (2 replies, posted in Discussions)
reCAPTCHA - a mockery of the forum users.
Use the fancy_stop_spam