Push pico's reputation extension to 3.3?

Looking for an Extension? Have an Extension request? Post your request here for help. (Note: This forum is community supported; while there is an Extensions Development Team, said team does not dedicate itself to handling requests in this forum)
Suggested Hosts
IoHL-be
Registered User
Posts: 46
Joined: Tue Oct 09, 2018 3:50 pm

Push pico's reputation extension to 3.3?

Post by IoHL-be »

Is there any chance for something like what happened in this topic to happen again?

viewtopic.php?t=2402516

I tested the extension on PHPBB 3.3 on a local forum and it now makes PHPBB crash apparently because of outdated Symfony code.

So, I'm throwing a bottle in the sea here, is there any chance that this extension could be pushed to become compatible with PHPBB 3.3?

https://github.com/jbreu/phpBB-Reputation-System

What I would like to avoid is to lose the reputation points that have now been accumulated by my forum users for 1.5 year.

Thanks in advance for your answers.
User avatar
Mick
Support Team Member
Support Team Member
Posts: 26886
Joined: Fri Aug 29, 2008 9:49 am

Re: Push pico's reputation extension to 3.3?

Post by Mick »

Extension support is offered by the extension author(s) only.

You should seek help wherever you downloaded it.
  • "The more connected we get the more alone we become” - Kyle Broflovski© 🇬🇧
KYPREO
Registered User
Posts: 392
Joined: Fri Feb 02, 2018 9:56 am

Re: Push pico's reputation extension to 3.3?

Post by KYPREO »

Mick wrote: Tue Jan 07, 2020 9:58 am Extension support is offered by the extension author(s) only.

You should seek help wherever you downloaded it.
The OP's post and the link made it pretty clear that the extension was abandoned. The linked GitHub page has not been updated in 3 years and there is a 2 year old pull request that has gone ignored. I don't think seeking support from the extension author is particularly helpful here.

The OP was asking whether someone might pick up development of the extension again, which I think is an appropriate request in this section.
phpBB user since 2002
www.AusRotary.com
User avatar
mrgoldy
Former Team Member
Posts: 1394
Joined: Tue Oct 06, 2009 7:34 pm
Location: The Netherlands
Name: Gijs

Re: Push pico's reputation extension to 3.3?

Post by mrgoldy »

One time deal, not going to support any of it.
Replace the entire contents of pico/reputation/config/routing.yml with:

Code: Select all

reputation_clear_post_controller:
    path: /reputation/clear/post/{post_id}
    defaults:
        _controller: pico.reputation.action.controller:clear_post
    requirements:
        post_id: \d+

reputation_clear_user_controller:
    path: /reputation/clear/user/{uid}
    defaults:
        _controller: pico.reputation.action.controller:clear_user
    requirements:
        uid: \d+

reputation_delete_controller:
    path: /reputation/delete/{rid}
    defaults:
        _controller: pico.reputation.action.controller:delete
    requirements:
        rid: \d+

reputation_details_controller:
    path: /reputation/{uid}/{sort_key}/{sort_dir}/{page}
    defaults:
        _controller: pico.reputation.details.controller:details
        sort_key: 'id'
        sort_dir: 'dsc'
        page: 1
    requirements:
        uid: \d+
        sort_key: 'id|username|time|point|action'
        sort_dir: 'asc|dsc'

reputation_post_details_controller:
    path: /reputation/details/post/{post_id}/{sort_key}/{sort_dir}
    defaults:
        _controller: pico.reputation.details.controller:postdetails
        sort_key: 'id'
        sort_dir: 'dsc'
    requirements:
        post_id: \d+
        sort_key: 'id|username|time|point'
        sort_dir: 'asc|dsc'

reputation_post_rating_controller:
    path: /reputation/rate/post/{mode}/{post_id}
    defaults:
        _controller: pico.reputation.rating.controller:post
    requirements:
        mode: 'positive|negative'
        post_id: \d+

reputation_user_details_controller:
    path: /reputation/details/user/{uid}/{sort_key}/{sort_dir}
    defaults:
        _controller: pico.reputation.details.controller:userdetails
        sort_key: 'id'
        sort_dir: 'dsc'
    requirements:
        uid: \d+
        sort_key: 'id|username|time|point|action'
        sort_dir: 'asc|dsc'

reputation_user_rating_controller:
    path: /reputation/rate/user/{uid}
    defaults:
        _controller: pico.reputation.rating.controller:user
    requirements:
        uid: \d+
phpBB Studio / Member of the Studio

Contributing: You can do it too! Including testing Pull Requests (PR).
phpBB Development and Testing made easy.
IoHL-be
Registered User
Posts: 46
Joined: Tue Oct 09, 2018 3:50 pm

Re: Push pico's reputation extension to 3.3?

Post by IoHL-be »

It worked!

Thank you so much, kind sir :).
alsthom
Registered User
Posts: 78
Joined: Fri Oct 05, 2012 5:19 pm

Re: Push pico's reputation extension to 3.3?

Post by alsthom »

Hello.
I was having the same problem after the update.
Thanks to you I solved it! :D
User avatar
Maks33
Registered User
Posts: 57
Joined: Sat Sep 04, 2010 8:25 pm

Re: Push pico's reputation extension to 3.3?

Post by Maks33 »

Please keep us updated on any bugs etc.

I think it's due time phpbb gets a like/reputation feature officially. You won't find a community that doesn't have it or doesn't want it.
jtb33
Registered User
Posts: 76
Joined: Thu Dec 02, 2004 11:36 pm

Re: Push pico's reputation extension to 3.3?

Post by jtb33 »

Thanks!
User avatar
P_I
Community Team Member
Community Team Member
Posts: 2559
Joined: Tue Mar 01, 2011 8:35 pm
Location: Western Canada 🇨🇦

Re: Push pico's reputation extension to 3.3?

Post by P_I »

STN wrote: Wed Jan 15, 2020 6:56 pm I think it's due time phpbb gets a like/reputation feature officially. You won't find a community that doesn't have it or doesn't want it.
I respect your viewpoint that it's important for your boards. But the rest is a broad generalization. None of the boards that I operate have or want it.

If you search here (or Google) you'll see there is no consensus as to whether or not it should be part of phpBB.

If you feel strongly enough about it then ideas/ is the place to solicit making it an official feature.
Normal people… believe that if it ain’t broke, don’t fix it. Engineers believe that if it ain’t broke, it doesn’t have enough features yet. – Scott Adams
User avatar
Flor1s
Registered User
Posts: 31
Joined: Sun Sep 13, 2009 7:47 am
Location: Netherlands

Re: Push pico's reputation extension to 3.3?

Post by Flor1s »

Thanks for the one time fix!
IoHL-be
Registered User
Posts: 46
Joined: Tue Oct 09, 2018 3:50 pm

Re: Push pico's reputation extension to 3.3?

Post by IoHL-be »

After the update to the 3.3.9 of phpBB, I got an HTTP 500 error. I quickly figured out that it had something to do with pico's reputation extension, given it has to be the oldest on my forum and the support ended a while ago.

Is there any chance that someone qualified could figure out where the problem comes from so that the extension could keep running on 3.3.9? If it could just be a matter of changing a couple of code lines like the transition from 3.2 to 3.3, that would be great.

Thanks in advance for the help!
User avatar
HiFiKabin
Community Team Member
Community Team Member
Posts: 6833
Joined: Wed May 14, 2014 9:10 am
Location: Swearing at the PC, UK
Name: James

Re: Push pico's reputation extension to 3.3?

Post by HiFiKabin »

As mentioned above, extension support must be sought in the place you downloaded it. If the extension is no longer supported you have three options.
  1. Remove the extension
  2. Ask the author to update it
  3. Post in Wanted and hope someone will be able to achieve what you want
As such I am closing this topic

Return to “Extension Requests”