I have updated this plugin.

1) Fixed bug found by KeyDog
2) Add some more pages and links with forum name link
3) Fixed crumbs modifications

I don't think so tongue

Honestly i didn't check topic with pagination so there is a problem i think. I'll check it and try to fix.

Thanks for your feedback.

53

(8 replies, posted in Language packs)

I could upload here translations for the plugins i've used but i don't use every extension for punBB so it doesn't make sense to translate all. I'll try to put them here asap.

Pozdrawiam smile

I've made it but used a hook:
http://punbb.informer.com/forums/topic/ … optimizer/

55

(11 replies, posted in PunBB 1.4 additions)

I've fixed it and add some more features:

http://punbb.informer.com/forums/topic/ … optimizer/

This extension add some SEO optimizations. Majority of it's functionality is url redirect from different schema and add more information into url link

Features:
- redirect urls between schemes to remove duplicate content.
- prevent from manual changing hardcoded links in forum when administrator change url scheme.
- add forum title into topic link
- removes "Page 1" from first page of list. Only second and more has "Page x"


Demo:
RCT Forum
(Check the url: It's build from forum title + topic title)


Download:
Quadric SEO Optimizer 1.0.0
Quadric SEO Optimizer 1.1.0
Quadric SEO Optimizer 1.1.1
Quadric SEO Optimizer 1.1.2


Changelog:
15 Feb 2012, v1.1.2

- Core:
  . Compatibility for PunBB 1.4.2
  . Fixed pagination bug on default url format

08 Jan 2012, v1.1.1

- Core:
  . Fixed crumbs (First page doesn't contains page number) in title

30 Dec 2011, v1.1.0

- Core:
  . Fixed bad post url generation method
  . Add pages and crumbs forum name into post url
  . Fixed crumbs title generation for special pages
  . Dropped crumbs modifications code (oryginal code by Helid) from previous
    version because it was invalid

28 Dec 2011, v1.0.0

- Core:
  . First Release

Url scheme gives the ability to make file or folder based url which is very nice feature in PunBB but it's not very good when forum is structurize like this


Magazine A
- Number 1
- Number 2

Magazine B
- Number 1
- Number 2


The problem is that the url for topics will look like this:

/forums/topic/1/number-1/
/forums/topic/3/number-1/

So there is no visible information from what "magazine" this topic is. I think it should look like:

/forums/topic/1/magazine-a-number-1/
/forums/topic/3/magazine-b-number-1/

I've tried to find proper hook but i couldn't find a valid one to help me modify this behavior. If someone knows how to do this or where is a good place to start searching please let me know.

Thanks.

Before RC2 release i'd like to make sure if this is OK

/**
 * Upload image or use already uploaded and put into a post as bbcode tag
 * Extension for PunBB 1.4
 *
 * quadric_image_assistant
 * @copyright (C) 2011 quadric quadmachine@wp.pl
 * @license http://www.gnu.org/licenses/gpl.html GPL version 2 or higher
 * 
 * Extension for PunBB (C) 2011 PunBB
 * @license http://www.gnu.org/licenses/gpl.html GPL version 2 or higher
 * 
 * Based on code hcs_image_uploader Copyright (C) 2010 hcs hcs@mail.ru
 * @license http://www.gnu.org/licenses/gpl.html GPL version 2 or higher
 * 
 * Based on code upload.php Copyright 2011, Moxiecode Systems AB
 * Released under GPL License.
 * License: http://www.plupload.com/license
 * Contributing: http://www.plupload.com/contributing  
 */

KeyDog:
2) I'll check it out

hcs:
1) That's why i've proposed splitting it into a dates. I think it should make it cleaner.

2) You're right. But how would you prevent such situation? Check if there a post with a picture included? Or maybe drop delete image functionality from common user?

3) Yes, this is my first extension and it's inspired by your extension - it is closest to what i've want to achieve that's why i used it as my base (becouse i didn't even know how to write extensions). At first i want to make such extension for myself but it works nice so i want to share it. I've used some parts of your code but to be honest i thought that you've got uploading parts from the plupload examples 1:1 so i'm sorry for this situation.

OK. Reinventing the whell is not the best solution because some parts of code used here are very common tasks. I didn't change anything in upload.php code so i'll fix this header to contains you oryginal copyright info and any other script that i've based on it i'll add info that is based on your extension, OK? Again sorry for this situation. I didn't want to steal or use you work without permission i just want to make it fast for my own purpose. Most of the code will be rewritten in the final release.

And thanks for your feedback. I hope you're not discouraged of this situation. I'd like to make this extension as good as possible.

Hi KeyDog. Thanks for your feedback.
According to your questions:
1) I'll try to fix it ASAP
2) So you click "upload images" and when browsing 10-20 seconds your browser get unresponsive? What browser and what OS do you have? And what version of flash (if any)
3) This is very strange. I'm affraid that's a plupload problem/bug but i'll try to find some info about that - maybe i've made sth wrong.

About your last comment:
I think about split images into a groups of upload dates... so it should like

28 December 2011
[__] [__] [__]

27 December 2011
[__] [__]

26 December 2011
[__] [__] [__] [__]


What do you think about that?

Problem
Standard pun_attachment connect files on the end of the post.
Fancy extensions use external servers to handle image uploads.
Hcs extension upload image and connect to a post and drop when not in post.

I want a simple but effective image uploader for PunBB which stores images and let them use whenever you need but i couldn't find an appropriate extension. So i wrote such thing myself:

This extension allows user to upload images or use already uploaded image when writing a post and put it into a message as img or url tag. Images may be used many times in many posts or wherever you want. Images are never deleted automaticly.


Features:
1) Upload images when writing post (plupload)
2) Insert as img or url
3) Images are connected to user so they can be used in many posts
4) Browse already uploaded images
5) Delete images
6) Image preview (fancybox)
7) Polish and English translation
8) Admin configuration


Dependencies:
1) pun_jquery
2) pun_bbcode


Demo:
RCT Forum
(For the effect. If you want to upload image you have to be authenticated)


Download:
Quadric Image Assistant 1.0.0 RC1
Quadric Image Assistant 1.0.1
Quadric Image Assistant 1.0.2
Quadric Image Assistant 1.1.0 (not compatible with 1.0.x) (How to upgrade?)
Quadric Image Assistant 1.1.1
Quadric Image Assistant 1.1.2
Quadric Image Assistant 1.1.3
Quadric Image Assistant 1.1.4
Quadric Image Assistant 1.1.5


Notice:
It uses fancybox (2.0.4) and plupload (1.5.1.1)


Changelog:
15 Feb 2012, v1.1.5

- Core:
  . Compatibility for PunBB 1.4.2

12 Jan 2012, v1.1.4

- Core
  . Fixed transaction commit for sqlite
  . Fixed delete security - basename on file

12 Jan 2012, v1.1.3

- Core
  . Fixed bug for root fixed misc.php functions controller

- Plupload:
  . Upgrade to 1.5.2
  . Fixes in upload.php from old examples

10 Jan 2012, v1.1.2

- Core:
  . Fixed bug truncating /t in full string (found by fu86)

04 Jan 2012, v1.1.1

- Core:
  . Fixed dir permission to use 0775

04 Jan 2012, v1.1.0

- Core:
  . Code optimizations (reuse some code from pun_attachment)
  . Upload code improvement (faster upload)
  . Changed upload dir from ext_path to root_path (shorter path)
  . Database backend
  . Image browser use database to show user images
  . Fixed image browser max height
  . 0.8 Opacity action icons

- Plupload
  . Changed html5 be before flash. Html5 is better (but msie use flash engine)
  . Fixed button not being hovered (still not hovered when flash engine)


31 Dec 2011, v1.0.2

- Admin:
  . Fixed breadcrumbs


30 Dec 2011, v1.0.1

- Core:
  . Code cleanup
  . Fixed button align
  . Fixed fancybox links request (see them as a group)

- Plupload:
  . Update to 1.5.1.1



26 Dec 2011, v1.0.0 RC1

- Core:
  . First Release


This is my first such big extension for PunBB so please if you try it and find some bugs or suggestions feel free to tell me and i'll try as soon as possible to fix it. Please consider this extensions as RC1 version.

This extension use some parts from HCS image uploader extension

Warning: This extension depends on pun_attachment also but i may create create independant version

I've noticed that there is no GA integration to punBB 1.4 with newest tracking code implementation. So i've created such thing.

Features:
1) PunBB 1.4 compatible
2) Newest google analytics tracking code implementation
3) Options for domain tracking type (single, multi subdomain and multi-top level)
4) English and Polish language included


Demo:
RCT Forum
(Look at the code for google analytics)


Download:
Quadric Google Analytics Integration 1.0.0
Quadric Google Analytics Integration 1.0.1


Changelog
Quadric Google Analytics for PunBB 1.4
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||

15 Feb 2012, v1.0.1

- Core:
  . Compatibility for PunBB 1.4.2

24 Dec 2011, v1.0.0

- Core:
  . First Release

63

(47 replies, posted in PunBB 1.4 additions)

Now it's perfect!
Thank You very much.

64

(47 replies, posted in PunBB 1.4 additions)

Hi. I've just noticed that you've made a cleanup in a file structure. Now it looks very nice, but there are still 2 problems.

Please take a look at footer you've made:


// Template code:

<div id="brd-about">
    <!-- forum_about -->
    <p id="copyright">Theme <strong>Hydrogen</strong> by <a href="http://punbb.informer.com/forums/user/61300/" />Kushi</a></p>
</div>

// Parsed into:

<p id="copyright">Forum oparte o: <strong><a href="punbb.informer.com/">PunBB</a></strong></p>
        <p id="copyright" class="visual-hidden">Theme <strong>Hydrogen</strong> by <a href="punbb.informer.com/forums/user/61300/" />Kushi</a></p>

As You may see:

2) The id="copyright" is duplicated in standard punBB footer and your paragraph.
3) You've made link do forum punbb.informer.com/forums/user/61300/ with self closed "a" tag. "/>"

Fixing these 2 simple problems you're template become 100% HTML 5 valid

65

(11 replies, posted in PunBB 1.4 additions)

Hi Helid. Your extension is very useful but i've got the same problem as SiCo.

The problem is that You've made a redirect for viewforum.php?id= and viewtopic.php?pid= but not for viewtopic.php?id=

In Hook: vt_modify_topic_info you check if there is $pid != 0. It works for viewtopic.php?pid= which is for "view post" But there is another version for viewing topic = viewtopic.php?id= This is when You click topic on viewforum list. then $pid param will always be 0 that's why it doesn't work.

So your extension should handle viewtopic with $id and $pid params. Could you please update your extension to make it work for post and topic?

And a suggestion: I'm not an expert but i think you should die/exit script after making header with location to prevent code execution

Demo:
RCT Forum
(this is polish forum which uses this translation)


Download for PunBB 1.4.1:
Polish Language Pack 1.0.0

Download for PunBB 1.4.2:
Polish Language Pack 1.0.0
Polish Language Pack 1.0.1


I'd like to make translations for extensions very soon.

If you found any problem with translation please tell me and i'll try to fix it.

Pozdrawiam rodaków smile

67

(47 replies, posted in PunBB 1.4 additions)

Hi. First of all i want to say that this template is really awesome and i really like it. I'd like to contribute in making this template even better so i want to share some info about problems and bugs i found.

1) On Black Main Menu when "New Alerts" appear it sticks to "Index" text link. I recommend fix this by chaning in CSS

FROM:

#brd-admod span {
    margin-left: 0.75em;
}

TO:

#brd-admod span {
    margin-left: 0.75em;
    margin-right: 1em;
}