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