51

(16 replies, posted in PunBB 1.3 extensions)

Fixed

52

(8 replies, posted in PunBB 1.3 extensions)

Why do you think it's better than mine? ;P I don't think so wink

53

(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

http://img291.imageshack.us/img291/397/pungotopageze4.th.jpg

Download

Look into config.php file in your PunBB root directory.

vicred wrote:

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

(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

(16 replies, posted in PunBB 1.3 extensions)

Thanks for reporting, fixed (added workaround for php4)

New release: 1.0.2 | Download

58

(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

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

(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 wink

61

(8 replies, posted in PunBB 1.3 discussion)

Why did you create this topic on fluxbb forums also? tongue

The extension is here, but download links don't work. I have installed this extension on my forum, so here it is ;p

62

(8 replies, posted in PunBB 1.3 discussion)

Tabaco wrote:

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

(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

(8 replies, posted in PunBB 1.3 discussion)

Tabaco wrote:

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

(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.

66

(13 replies, posted in PunBB 1.3 extensions)

Ajax Post Edit v1.7.1

This extension allows quickly edit post without page reloading.

http://img7.imageshack.us/img7/2677/punajaxposteditlv8.th.jpg

Download

67

(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.

http://img10.imageshack.us/img10/8394/punstyleswitchergn2.th.jpg

Download

(I changed name from style_changer to style_switcher)

68

(170 replies, posted in PunBB 1.3 extensions)

esupergood wrote:

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

Show us full page output (right click and select View source).

70

(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 wink

71

(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

(170 replies, posted in PunBB 1.3 extensions)

Meteolab wrote:

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.

Meteolab wrote:

2.) Panel "who is online" shows always zero users

Fixed in svn

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 tongue)

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

(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 wink