Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
October 31, 20168 yr Author On 28/10/2016 at 11:38 PM, Square Wheels said: Same here, it was running fine, then it seems to have stopped. I'm on 4.1.15. Any results from the troubleshooting tips from the post before yours?
October 31, 20168 yr 17 hours ago, Mike John said: Any results from the troubleshooting tips from the post before yours? I got the email when everything else was turned off. I noticed the PM subject was blank when I turned it back on. I turned on the topic, ran the task, and the topic was created. I also got the PM. There was a person on the calendar yesterday and the day before, a topic was not created.
November 2, 20168 yr Author 12 hours ago, Michael R said: So is this officially broke? I can't get this to work since the upgrade. https://invisionpower.com/forums/topic/416242-birthday-greeter-support/?do=findComment&comment=2660819 On 01/11/2016 at 5:11 AM, Square Wheels said: I got the email when everything else was turned off. I noticed the PM subject was blank when I turned it back on. Are you using cron to run your tasks?
November 2, 20168 yr 8 hours ago, Mike John said: https://invisionpower.com/forums/topic/416242-birthday-greeter-support/?do=findComment&comment=2660819 Are you using cron to run your tasks? It only seems to work correctly if I DISABLE the Activity Cut Off Limit setting.
November 2, 20168 yr 10 hours ago, Mike John said: Are you using cron to run your tasks? Yes, it's listed in tasks to run every day.
November 3, 20168 yr Author @Square Wheels Any difference when you disable the setting Michael mentioned?
November 3, 20168 yr 7 minutes ago, Mike John said: @Square Wheels Any difference when you disable the setting Michael mentioned? We'll see , no birthday's until Friday . I unchecked it and set it to 5000 days. should I just leave the field blank?
November 3, 20168 yr Author Just now, Square Wheels said: We'll see , no birthday's until Friday . I unchecked it and set it to 5000 days. should I just leave the field blank? Yes if you wouldn't mind disabling it instead. As soon as I get home I'll look in this direction instead.
November 3, 20168 yr 3 minutes ago, Mike John said: Yes if you wouldn't mind disabling it instead. As soon as I get home I'll look in this direction instead. Sorry, my mistake. it was disabled. I unchecked it. maybe mine is the opposite . Edited November 3, 20168 yr by Square Wheels
November 3, 20168 yr Author 18 hours ago, Square Wheels said: Sorry, my mistake. it was disabled. I unchecked it. maybe mine is the opposite . What do you have set for the "age range" and do the upcoming members having their birthdays have the year set as well?
November 4, 20168 yr 16 hours ago, Mike John said: What do you have set for the "age range" and do the upcoming members having their birthdays have the year set as well? 0-100 years Yes, there was one on the calendar today with the full birthday, including year. It ran at 7:37, no post.
November 7, 20168 yr Author On 04/11/2016 at 11:38 PM, Square Wheels said: Yes, there was one on the calendar today with the full birthday, including year. It ran at 7:37, no post. I'll need acp and ftp login details to troubleshoot this further. I'm just not able to reproduce this locally.
February 24, 20177 yr @Mike John I'm getting the following error when trying to access this in Members -> Birthday Greeter -> Settings. Currently running 4.1.18.1 - Also uninstalled and reinstalled just to be sure. Class 'IPS\Helpers\Form\NumberRange' not found in /home/nginx/domains/bariatricpal.com/public/applications/birthdaygreeter/modules/admin/settings/settings.php on line 53
February 27, 20177 yr Author On 25/02/2017 at 5:40 AM, BariatricPal said: I'm getting the following error when trying to access this in Members -> Birthday Greeter -> Settings. Currently running 4.1.18.1 - Also uninstalled and reinstalled just to be sure. I've encountered this recently with another customer. Check that you have the NumberRange.php file in /system/Helpers/Form/. If you don't, you might want to check it's in your IPB4 zip and re-upload it again.
February 27, 20177 yr 14 hours ago, Mike John said: I've encountered this recently with another customer. Check that you have the NumberRange.php file in /system/Helpers/Form/. If you don't, you might want to check it's in your IPB4 zip and re-upload it again. @Mike John Unfortunately - it doesn't exist, not on my system, nor in the zip. I'm unsure as to why, but IPB decided to remove the NumberRange class altogether as of 4.1.18.
March 1, 20177 yr Is this broken now? It seems to be either all or nothing with the settings. I have tried setting it for inactivity of 365 days and members who are active are not getting listed.
March 7, 20177 yr Author On 01/03/2017 at 9:04 AM, BariatricPal said: Just checking in to see if you'll be updating the app to work with v.4.1.18+? On 02/03/2017 at 5:18 AM, Michael R said: Is this broken now? It seems to be either all or nothing with the settings. I've provided a patch for the settings issue. It looks like an old form helper was removed.
March 7, 20177 yr 11 hours ago, Mike John said: I've provided a patch for the settings issue. It looks like an old form helper was removed. Will you have this as a regular update soon?
March 14, 20177 yr Author On 08/03/2017 at 0:28 AM, Michael R said: Will you have this as a regular update soon? I'll be working on a beta round for all my apps again. But for an urgent fix, I would recommend applying the patch.
April 22, 20177 yr I have bought it and installed. There was no error. But when i click ACP->Members->Birthday Greeter/Settings cannot open page. Because of HTTP Error 500 Error detail: [Sat Apr 22 21:58:02.321990 2017] [:error] [pid 20889] [client X.X.X.X:53970] PHP Fatal error: Class 'IPS\\Helpers\\Form\\NumberRange' not found in /var/www/ibp/applica$ Edited April 22, 20177 yr by thomasdouscha
April 24, 20177 yr Author On 23/04/2017 at 6:03 AM, thomasdouscha said: I have bought it and installed. There was no error. Here is a patch to fix this. New version will be out soon to include this. Open applications/birthdaygreeter/modules/admin/settings/settings.php Find: $form->add( new \IPS\Helpers\Form\NumberRange( 'abg_age_range', \IPS\Settings::i()->abg_age_range ? array( 'start' => reset( $ageRange ), 'end' => end( $ageRange ) ) : array( 'start' => 0, 'end' => 100 ), FALSE, array(), NULL, NULL, NULL, 'abg_age_range' ) ); Replace With: $form->add( new \IPS\Helpers\Form\Custom( 'abg_age_range', \IPS\Settings::i()->abg_age_range ? array( 'start' => reset( $ageRange ), 'end' => end( $ageRange ) ) : array( 'start' => 0, 'end' => 100 ), FALSE, array( 'getHtml' => function( $element ) { return "<input type='text' value='{$element->value['start']}' name='abg_age_range[start]' min='0' class='ipsField_short'> - <input type='text' value='{$element->value['end']}' name='abg_age_range[end]' min='0' class='ipsField_short'>"; } ), NULL, NULL, NULL, 'abg_age_range' ) ); Save.
May 4, 20177 yr Author I've released a new version that fixes a critical issue with the settings page noticed by relatively new installations of IPB4.