Correction.andreask wrote: The status "Active" is for the forum. Meaning that they are "activated accounts".
Since they are in that list that means that they have not visited your board for the last x amount of days (amount is set in reminder settings "Interval")
Maybe I am being impatient, but no reminders have been sent after about two hours since activating this EXT. Hopefully later today that will have changed.andreask wrote: The ext should start sending reminders after a few (~minutes) when you will enable it in "Inactive user reminder settings", depending on your traffic since it uses the phpbb scheduler.
Check the admin logs (in maintenance) of your board to see if there is a line that says "{### reminders were sent.}"
Code: Select all
PHP Fatal error: Can't use function return value in write context in /var/www/forum/ext/andreask/ium/acp/main_module.php on line 216
No problem, I'm waiting for this extension!andreask wrote: Thanks for your time!
Hi, could you please install the new release?whocarez wrote:@andreask
installed Beta 3 on a phpbb 3.1.10 board with PHP 5.4.45-0+deb7u5 (cli) (built: Aug 30 2016 20:15:34) and got the following error message when I try to choose one of these three configuration options
- IUM configuration
- Inactive Users List
- Ignore/Delete Approval List
Code: Select all
PHP Fatal error: Can't use function return value in write context in /var/www/forum/ext/andreask/ium/acp/main_module.php on line 216
No problem!potku wrote:I know these are n00b questions, but that's me.
The date is now x-x-x. How could it be changed to x.x.x.?
The topics in the e-mail are "Topic". How could that be changed to Topic?
andreask/ium/classes/reminder.php
find:
Code: Select all
'LAST_VISIT' => date('d-m-Y', $sleeper['user_lastvisit']),
'REG_DATE' => date('d-m-Y', $sleeper['user_regdate']),
Code: Select all
'LAST_VISIT' => date('d.m.Y', $sleeper['user_lastvisit']),
'REG_DATE' => date('d.m.Y', $sleeper['user_regdate']),
andreask/ium/classes/reminder.php
find:
Code: Select all
foreach ($top_user_topics as $item)
{
$topic_links .= PHP_EOL;
$topic_links .= '"' . $item['topic_title'] . '"' . PHP_EOL;
Code: Select all
foreach ($top_user_topics as $item)
{
$topic_links .= PHP_EOL;
$topic_links .= $item['topic_title'] . PHP_EOL;
andreask/ium/classes/reminder.php
find:
Code: Select all
foreach ($top_forum_topics as $item)
{
$forum_links .= PHP_EOL;
$forum_links .= '"' . $item['topic_title'] . '"' . PHP_EOL;
Code: Select all
foreach ($top_forum_topics as $item)
{
$forum_links .= PHP_EOL;
$forum_links .= $item['topic_title'] . PHP_EOL;
Thanks, it's working. So I can play around with the options.andreask wrote: Hi, could you please install the new release?
https://github.com/andreaskou/PHPBB_IUM ... 2-beta.zip
and let me know if it worked for you?
Thanks, I fixed the users_per_page problem (will be on next update) min max (in pagination) I think they are hardcoded I don't think there is something that I can do. I've set min to 10 and max to 50 because less is pointless and more than 50 I think it's too much.whocarez wrote:Thanks, it's working. So I can play around with the options.andreask wrote: Hi, could you please install the new release?
https://github.com/andreaskou/PHPBB_IUM ... 2-beta.zip
and let me know if it worked for you?
As far as I see the "users_per_page" value isn't shown on the Inactive user page, but I can change it from 10 to 999. But the max value is 50.
напишите на русском, я понимаю (я половина русский).RomaamoR wrote:I need to an email was in Russian. How to make?
Please post your messages on this board in English.RomaamoR wrote:Добрый вечер. Как сделать что бы письма с напоминанием, на почтовый ящик пользователей приходили на русском языке ?