Jump to content

Philip_B

Clients
  1.    Marc reacted to a post in a topic: Enhancement: Search
  2. Philip_B posted a post in a topic in Feedback
    Yeah I see this after searching but no option before searching or to change the default anywhere.
  3. Philip_B posted a post in a topic in Feedback
    Yeah this is great and I use it every day as well as the advanced search. However, where is the place you can set the order by?
  4. Philip_B posted a post in a topic in Feedback
    Thanks I don’t see any sort by option. Am I missing something?
  5. Philip_B started following Search by title
  6. Expected: searching by title will return individual topics which match the search criteria Actual: searching by title also searches the body and returns multiple results for the same topic
  7. Philip_B posted a post in a topic in Feedback
    Currently there doesnt appear to be any way to search by date without first searching and then changing the dropdown sort by. This often hits flood control for users who want to directly search by date. You can tweak the priority algo to be flat but then this would make relevant searches defunct. Is this something that can be included?
  8.    Philip_B reacted to a post in a topic: Profile Field Order
  9. thanks @Jim M - the internal marker stored in core_pfields_content -> field_{n} is adjusted? Looks the same on a small sample size
  10. I have a list of flags for country - any reason there is a statement that changing the order affects existing values? I can see these being stored in core_pfields_content with the name rather than the index so order should not be impacted? Second follow up question, can we have the ability to add key, value for these (essentially internal id and display id) - this is useful if you want to link this to for example a flag image.
  11.    Philip_B reacted to a post in a topic: Sub-forum specific widget?
  12. This might be expected but would suggest there is a difference between deleting a topic or post and deleting the whole forum. Might be worth adding another option at the global level for this.
  13. thanks admin access should be setup for my website. Going to /events/2-events/?&view=month this is the club forum. Clicking Create Event at the top takes you to the default calendar and not the club event cal.
  14. Unfortunately not, it looks to be creating an event in the main calendar. This means pressing this button for a club leader is denied but pressing the smaller in day + is allowed.
  15. On the club calendar there is a button in the top right (create event) to add to the main calendar and an in day + sign to add an event into the club calendar. Is this expected, even when you are inside the club calendar in the breadcrumb menu and link from the club? If so this is (a) confusing (b) leads to people not having permission to create events in the main cal vs the club and (c) on the mobile removes the ability to add a club event.
  16. not sure how these are triaged. Ive had to update the code so no longer present on my site. I was having 100+ comments a day. \applications\blog\sources\entry\entry.php | 813 else if(!$member->member_id) { return FALSE; }
  17. Also thought i could skip running background processes on 4.x as they showed up on 5.x. Had a ton of errors in the logs, even though the process looked like it was progressing and completing. I had to run all of these on 4.x including rebuilding posts which took ~ 1 day even after changing the increment batch size.
  18. thanks this is very timely. I had to add an additional check - some data was not serialized and just a string of one question (very old data ~2006). Edge case so accepting this will be lost. public function get_choices(): array { $choices = json_decode($this->_data['choices'], true); # If json_decode fails, try unserialize as a fallback if (json_last_error() !== JSON_ERROR_NONE) { $choices = @unserialize($this->_data['choices']); # If the result is a proper array update the database to use JSON if ( is_array($choices) ) { $this->choices = $choices; $this->save(); } } if ( !is_array($choices) ) { $choices = []; } return $choices; }