Fixed
52 2009-02-14 12:32
Re: [Release] Go to page (8 replies, posted in PunBB 1.3 extensions)
Why do you think it's better than mine? ;P I don't think so
53 2009-02-14 11:54
Topic: [Release] Go to page (8 replies, posted in PunBB 1.3 extensions)
Go to page v1.1
Allows quickly go to the specified page. Just click on "...", type page number and click Go
54 2009-02-14 09:02
Re: how to move from /bbs to / ?? (2 replies, posted in PunBB 1.3 discussion)
Look into config.php file in your PunBB root directory.
55 2009-02-14 09:01
Re: why the language didn't work? (2 replies, posted in PunBB 1.3 additions)
I changed the language in "Settings" with administrator ID.
This is default setting for newly registered users, not for your account.
If you want to change your language, go to profile -> settings
56 2009-02-14 08:54
Re: [Release] Portal by Daris (170 replies, posted in PunBB 1.3 extensions)
You can use mod rewrite for this, but I think better for you will be moving all punbb files to parent directory (from http://mysite/forums/* to http://mysite/*). Also enable folder based url scheme in admin panel (it'll show /forum/ instead of ?forum)
57 2009-02-14 08:50
Re: [Release] GeSHi highlight (16 replies, posted in PunBB 1.3 extensions)
Thanks for reporting, fixed (added workaround for php4)
New release: 1.0.2 | Download
58 2009-02-13 22:46
Re: [Release] Portal by Daris (170 replies, posted in PunBB 1.3 extensions)
You should go to Administration -> Panels and then edit Main menu panel. You can put there html or php code, for example add:
<br /><a href="<?php echo forum_link($forum_url['page_id'], array(1, sef_friendly('Example page'))) ?>">Example page</a>
if you want to insert link to new page (change bold text, 1 = id for page, Example page = title)
If you want to add/edit pages, go to Administration -> Pages
59 2009-02-13 22:05
Re: [extension release] pun_quote 2.0.2 (40 replies, posted in PunBB 1.3 extensions)
Slavok, what do you think about inserting quote content at selected position of quick reply field? Like pun_bbcode does. Something like:
--- scripts_org.js 2009-02-13 22:59:00.625000000 +0100
+++ scripts.js 2009-02-13 22:59:16.531250000 +0100
@@ -243,7 +243,7 @@
}
}
- element.value += '[quote=' + author + ']' + post_content + '[/quote]';
+ q_insert_text(element, '[quote=' + author + ']' + post_content + '[/quote]');
}
function Reply(tid_param, qid_param, d)
@@ -329,7 +329,7 @@
}
}
- element.value += ParseMessage(post_content);
+ q_insert_text(element, ParseMessage(post_content));
form.submit();
return;
}
@@ -352,3 +352,34 @@
}
+function q_insert_text(element, content)
+{
+ // IE support
+ if (document.selection && document.selection.createRange)
+ {
+ element.focus();
+ sel = document.selection.createRange();
+ sel.text = content;
+ element.focus();
+ }
+
+ // Moz support
+ else if (element.selectionStart || element.selectionStart == '0')
+ {
+ var startPos = element.selectionStart;
+ var endPos = element.selectionEnd;
+
+ element.value = element.value.substring(0, startPos) + content + element.value.substring(endPos, element.value.length);
+ element.selectionStart = element.selectionEnd = endPos + content.length;
+ element.focus();
+ }
+
+ // Fallback support for other browsers
+ else
+ {
+ element.value += content;
+ element.focus();
+ }
+
+ return;
+}
60 2009-02-13 20:34
Re: PunBB abilities ? (8 replies, posted in PunBB 1.3 discussion)
I know that you're looking for other extension than attached in my previous post, but you can quickly edit it to get what you want
61 2009-02-13 18:46
Re: PunBB abilities ? (8 replies, posted in PunBB 1.3 discussion)
Why did you create this topic on fluxbb forums also?
The extension is here, but download links don't work. I have installed this extension on my forum, so here it is ;p
62 2009-02-13 18:04
Re: PunBB abilities ? (8 replies, posted in PunBB 1.3 discussion)
My second question , the most important one , .. my site is based on article submission (done in forums) , so I'm needing a way ; a MOD - or wathever you call this here - to put another post counter , after the original one ; but counting posts ONLY in a specific category , meaning , for example , if I call this "tutorials" , and I build a category named "tutorial submission" ; messages posted in this category will be counted ..
Currently it isn't possible to do, but there should be somewhere Skip post counting extension, you can modify it for adding next post counter.
63 2009-02-13 17:57
Re: [Release] Portal by Daris (170 replies, posted in PunBB 1.3 extensions)
Fixed in svn, you can just otherwise portal_by_daris/panels/active_topics.php file by that file
64 2009-02-13 17:04
Re: PunBB abilities ? (8 replies, posted in PunBB 1.3 discussion)
So my first question , is it possible (easy ?) to switch fromm phpBB software ?
Yes, you can convert phpBB database to PunBB 1.2 using http://punbb.informer.com/download/cont … -1.4.0.zip . Then if you want to run 1.3 version of PunBB you can just upgrade PunBB 1.2 to 1.3.
65 2009-02-13 16:53
Re: [Release] Portal by Daris (170 replies, posted in PunBB 1.3 extensions)
http://pun.fluxbb.pl/download_extension … nstall.zip
Extract and put portal_uninstall.php to punbb root directory on your server. Then execute it http://www.eroyton.co.uk/forum/portal_uninstall.php and remove that file.
67 2009-02-13 16:30
Topic: [Release] Style switcher (1 replies, posted in PunBB 1.3 extensions)
Style switcher v1.2
Allows users/guests quickly change style. When user is logged it stores current style in database, else it stores style in cookie.
(I changed name from style_changer to style_switcher)
68 2009-02-13 16:12
Re: [Release] Portal by Daris (170 replies, posted in PunBB 1.3 extensions)
This happened after I first tried install it I got some php error code.
First error message in this case will be more needed, second means that portal is already installed.
Try to uninstall extension using this link: http://path.to.your.forum/admin/extensi … l_by_daris
69 2009-02-12 22:44
Re: The page is "User list" shows only a part. (5 replies, posted in PunBB 1.3 troubleshooting)
Show us full page output (right click and select View source).
70 2009-02-12 19:56
Re: [Release] Portal by Daris (170 replies, posted in PunBB 1.3 extensions)
That was, because you added hook in_start, which name is reserved for index.php file.
New release 2.4.2 | Download
Changes:
- fixed not counted users and guests online in who is online panel
- protection for second in_start hook
71 2009-02-12 14:33
Re: [Release] Portal by Daris (170 replies, posted in PunBB 1.3 extensions)
Sorry but I still don't understand. Can you write an example, what are you doing and what happens?
You are adding for example
1 = <a href="file.php">fdsf</a>
to the main navigation links and what? It doesn't work?
72 2009-02-12 08:39
Re: [Release] Portal by Daris (170 replies, posted in PunBB 1.3 extensions)
1.) manually entered links in the main navigation of the forum doesn't work, if I click them then I'll come back to the portal site
Can you show example of that link? It works for me.
2.) Panel "who is online" shows always zero users
Fixed in svn
73 2009-02-11 20:05
Re: [extension release] pun_admin_manage_extensions_improved (13 replies, posted in PunBB 1.3 extensions)
Why this extension adds hook aex_section_install_pre_display_ext_list (it is in manifest.xml) for itself (this hook is located in extension_list.php)? (sorry for my english, but i hope you understand me )
74 2009-02-11 18:24
Re: [extension release] pun_admin_manage_extensions_improved (13 replies, posted in PunBB 1.3 extensions)
Notice: Undefined index: o_rejected_updates in C:\Program Files\VertrigoServ\www\punbb\extensions\pun_admin_manage_extensions_improved\extension_list.php(310) : eval()'d code on line 47 Notice: Undefined index: Extension by in C:\Program Files\VertrigoServ\www\punbb\extensions\pun_admin_manage_extensions_improved\extension_list.php(310) : eval()'d code on line 54 Notice: Undefined index: Hotfix description in C:\Program Files\VertrigoServ\www\punbb\extensions\pun_admin_manage_extensions_improved\extension_list.php(310) : eval()'d code on line 54 Notice: Undefined index: Install hotfix in C:\Program Files\VertrigoServ\www\punbb\extensions\pun_admin_manage_extensions_improved\extension_list.php(310) : eval()'d code on line 54 Notice: Undefined index: Reject hotfix in C:\Program Files\VertrigoServ\www\punbb\extensions\pun_admin_manage_extensions_improved\extension_list.php(310) : eval()'d code on line 54 Notice: Undefined index: Extension by in C:\Program Files\VertrigoServ\www\punbb\extensions\pun_admin_manage_extensions_improved\extension_list.php(310) : eval()'d code on line 54 Notice: Undefined index: Hotfix description in C:\Program Files\VertrigoServ\www\punbb\extensions\pun_admin_manage_extensions_improved\extension_list.php(310) : eval()'d code on line 54 Notice: Undefined index: Install hotfix in C:\Program Files\VertrigoServ\www\punbb\extensions\pun_admin_manage_extensions_improved\extension_list.php(310) : eval()'d code on line 54 Notice: Undefined index: Reject hotfix in C:\Program Files\VertrigoServ\www\punbb\extensions\pun_admin_manage_extensions_improved\extension_list.php(310) : eval()'d code on line 54
I got this after installing extension.
Also when manage extensions improved is enabled, there isn't pun repository list at end of extensions page.
75 2009-02-11 17:58
Re: [Release] Portal by Daris (170 replies, posted in PunBB 1.3 extensions)
Hmm, This portal is very extensible, someone can create shoutbox panel. I'm not good in javascript