version 0.8.19
- fix small error in announcer (invalid length info_hash 38, must be 40)
- small correct in lang-files
701 2010-02-02 12:06
Re: Simple BitTorrent Tracker (47 replies, posted in Supported extensions)
702 2010-02-02 12:00
Re: Simple BitTorrent Tracker (47 replies, posted in Supported extensions)
By default - yes, but u can change this in Administration - Groups.
703 2010-02-01 10:47
Re: Simple BitTorrent Tracker (47 replies, posted in Supported extensions)
Scrape is extensions for bittorent protocol. More information on http://en.wikipedia.org/wiki/Tracker_scrape
Its no important, tracker still good work wihout it. It can make big server load if u have more torrents > 1000, in current development state i not make cache for scrape.
Retracker.local is only Russian features. It add second tracker in torrent file, only utorrent and transmission > 1.8 work with more than 1 trackers. It required server-side scripts. Dont enabled it unless u know what u doing.
Allow submit IP - i dont test yet without it. Just turn it on.
704 2010-02-01 09:15
Re: Simple BitTorrent Tracker (47 replies, posted in Supported extensions)
Yonash jquery extension doesnt report to forum that it provided jquery. It`s bug.
705 2010-02-01 09:08
Re: Simple BitTorrent Tracker (47 replies, posted in Supported extensions)
Im using http://forum.lluga.net/jquery.tar.gz but fancy_tracker will work with any extension provided jquery 1.3. Maybe work and with jquery 1.2.
What error message you got?
706 2010-02-01 09:00
Re: Simple BitTorrent Tracker (47 replies, posted in Supported extensions)
You already have jquery. Just install fancy_tracker.
708 2010-02-01 08:38
Re: Simple BitTorrent Tracker (47 replies, posted in Supported extensions)
After install go to Administration » Start » Forums » Edit forum and set forum mode for selected forum.
709 2010-02-01 08:37
Topic: Simple BitTorrent Tracker (47 replies, posted in Supported extensions)
Fancy Tracker add simple tracker for your forum.
PunBB 1.3
Need any jquery-1.3-provided extensions for work — for example this http://forum.lluga.net/jquery.tar.gz
fancy_tracker.tar.gz — версия 0.8.18
PunBB 1.4
fancy_tracker - version 0.9.28.zip
710 2010-01-19 12:07
Re: SQLite and $forum_db->drop_field (2 replies, posted in PunBB 1.3 bug reports)
In a case of using SQLite DB-backend u must use $forum_db->drop_index ONLY BEFORE $forum_db->drop_field.
711 2010-01-08 07:50
Topic: SQLite and $forum_db->drop_field (2 replies, posted in PunBB 1.3 bug reports)
I have extensions http://forum.lluga.net/last_topic_title … dex.tar.gz but users that used SQllite database backend report me errors in this code of uninstall section:
$forum_db->drop_field('forums', 'last_post_subject'); [b]// Error in this line[/b]
$forum_db->drop_index('forums', 'i_last_post_subject', false);
An error was encountered
The error occurred on line 582 in D:\Programme\Apache\htdocs\forum\include\dblayer\sqlite.php
Database reported: SQL logic error or missing database (Errno: 1).
install section worker fine
$forum_db->add_field('forums', 'last_post_subject', 'VARCHAR(255)', true, NULL);
$forum_db->add_index('forums', 'i_last_post_subject', array('last_post_subject'), false, false);
In new version (0.2.1) i have not created indexes if DB is Sqllite - but yet not tested - maybe this hack is work.
What can got this error?
712 2009-12-25 07:50
Re: Bug in the extension system (2 replies, posted in PunBB 1.3 extensions)
Maybe more correctly use global instead $GLOBALS? Just style as defined other globals var in forum code.
713 2009-12-24 11:24
Re: Bug in pun_bbcode (4 replies, posted in PunBB 1.3 bug reports)
My ext - http://forum.lluga.net/spoiler_bbcode.tar.gz
It`s required this installed before — http://forum.lluga.net/jquery.tar.gz
714 2009-12-24 08:31
Topic: Bug in pun_bbcode (4 replies, posted in PunBB 1.3 bug reports)
If i use in my own extension hook pun_bbcode_pre_tags_merge than after this array $ext_info empty and not code bellow this hook in bar.php not working because use $ext_info.
bar.php from latest pun_bbcode
($hook = get_hook('pun_bbcode_pre_tags_merge')) ? eval($hook) : null;
// Let's get the list of all tags
$tags = array_unique(array_merge($tags_without_attr, $tags_with_attr));
//// NOT WORKING - $ext_info['path'] is unset.
if ($forum_user['pun_bbcode_use_buttons'])
{
if (file_exists($ext_info['path'].'/buttons/'.$forum_user['style'].'/'))
$buttons_path = $ext_info['url'].'/buttons/'.$forum_user['style'];
else
$buttons_path = $ext_info['url'].'/buttons/Oxygen';
}
715 2009-12-07 07:17
Re: [extension release] Fancy JavaScript/CSS cacher (27 replies, posted in PunBB 1.3 extensions)
U can find latest version on GIT - http://github.com/dimkalinux/fancy_js_cache
But «exception feature» not yet released.
716 2009-11-12 08:26
Re: [Release] Merge posts (23 replies, posted in PunBB 1.3 extensions)
Alternative extensions with many configurable options — Fancy Merge Posts
717 2009-10-26 13:50
Topic: FORUM.lluga.net (punbb on steroids) (0 replies, posted in PunBB show off)
http://forum.lluga.net/index.php
Work on PunBB 1.3.
Installed ~ 25 exts.
Differences from original punbb
Two new styles - Dark and Light.
New Private Message async notification (jquery+jgrowl).
AJAX version «Marks all topics as read»
New BB-code: spoiler, warn, video.
AJAX image upload.
Archive old forums http://forum.lluga.net/index.php?archive=1
AJAX Bookmarks for topics.
Collapse forum categories.
Highlight of CODE.
Lazy load of avatars (by javascript).
718 2009-10-22 05:57
Re: [release] Yet another spam blocker (YASB - a non captcha alternative) (6 replies, posted in PunBB 1.3 extensions)
In my test extension that block bots on my forum i use this idea - block all posts with more then 15 links in post. Spam bots usually posts message with big counts of links. It`s work. Also you can configure max number of links for posts, but not separately by user groups.
You can find my ext — http://forum.lluga.net/fancy_stop_spam.tar.gz
Will be cool if you move you ext development to github, i think it not last idea for make better spam-fight in Punbb forums.
719 2009-10-20 12:41
Re: Last reply title on index ? (1 replies, posted in PunBB 1.3 extensions)
For punbb 1.3 u can try my ext http://punbb.ru/topic3135-reliz-last-to … -page.html
Extensions have 2 language — English and Russian.
720 2009-08-14 06:22
Re: [Extension] OpenID 1.1.0 (58 replies, posted in PunBB 1.3 extensions)
Which version of PHP do you use?
The InvalidArgumentException is part of the Standard PHP Library which "is available and compiled by default in PHP 5.0.0". The InvalidArgumentException itself is available since 5.1. Other features of the extension require at least PHP 5.2, so this is the minimum version you should use.
PHP: 5.2.8, MySQL5, Linux server.
721 2009-08-13 11:57
Re: [Extension] OpenID 1.1.0 (58 replies, posted in PunBB 1.3 extensions)
Punbb 1.3.4, OpenID 1.0.2 in install
Fatal error: Class 'InvalidArgumentException' not found in /var/www/forum/htdocs/extensions/openid/Ext/OpenID/InvalidIdentifierException.php on line 30
722 2009-07-08 12:30
Re: [extension release] Fancy JavaScript/CSS cacher (27 replies, posted in PunBB 1.3 extensions)
Ok, i`m working on this feature.
723 2009-06-17 09:02
Re: Mark as read after large interval of innactivity (3 replies, posted in PunBB 1.3 bug reports)
Check PM.
724 2009-06-16 08:50
Topic: Mark as read after large interval of innactivity (3 replies, posted in PunBB 1.3 bug reports)
After large interval of innactivity i click link mark as read and got CSRF confirm and after this error:
An error was encountered
The error occurred on line 91 in /var/www/forum/htdocs/misc.php
Database reported: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id=2' at line 1 (Errno: 1064).
Failed query: UPDATE users SET last_visit= WHERE id=2
Forum version 1.3.4, MySQL5, PHP5.
725 2009-06-01 11:32
Topic: New hook «vt_post_loop_end» (1 replies, posted in Feature requests)
Why dont exists this hooks (vt_post_loop_end) in viewtopic page?
It will be usefull for added content just after last post.