Jump to content

Manage Inactive Members


-RAW-

Recommended Posts

  • Replies 371
  • Created
  • Last Reply

Hi,



Did as you said now it just gives me the



"There appears to be an error with the database."



screen when I try to go to any menu associated with this.



Could you check what those errors are? You'll find the SQL error logs in your ACP logs page, you want the file that either has todays date on it, or ends with "-latest.cgi".
It may contain personal and/or sensitive information, so feel free to PM me the content of the log.
Link to comment
Share on other sites

Im getting errors when installing. I removed the older version as it was causing errors after upgrading to 3.2

Now when i reinstall i get these errors ...


The following errors have been found:

· ALTER TABLE ibf_members ADD `inactive_notified` TINYINT( 1 ) NOT NULL DEFAULT '0';

Duplicate column name 'inactive_notified'
· ALTER TABLE ibf_members ADD `inactive_lastNotified` INT( 10 ) NOT NULL DEFAULT '0';

Duplicate column name 'inactive_lastNotified'
· ALTER TABLE ibf_members ADD `inactive_oldGroup` SMALLINT( 3 ) NOT NULL DEFAULT '0';

Duplicate column name 'inactive_oldGroup'
· ALTER TABLE ibf_members ADD `inactive_moved` INT( 10 ) NOT NULL DEFAULT '0';

Duplicate column name 'inactive_moved'
· ALTER TABLE ibf_members ADD `inactive_notified` TINYINT( 1 ) NOT NULL;

Duplicate column name 'inactive_notified'
· ALTER TABLE ibf_members ADD `inactive_lastNotified` INT( 10 ) NOT NULL;

Duplicate column name 'inactive_lastNotified'
· ALTER TABLE ibf_members ADD `inactive_oldGroup` SMALLINT( 3 ) NOT NULL;

Duplicate column name 'inactive_oldGroup'
· ALTER TABLE ibf_members ADD `inactive_moved` INT( 10 ) NOT NULL;

Duplicate column name 'inactive_moved'


Do i just click carry on regardless ?

Link to comment
Share on other sites


Hi, I love the mod, but I was wondering if I could change it so when someone is moved to the "inactive" group, they remain there, even if they return, until they can be manually changed back by an admin.



Set "Do NOT move the member back automatically" to "Yes" in the settings for "Move Inactive Members".
Link to comment
Share on other sites


I'm getting a problem, under the view logs in the Notify Inactive Members area it shows that 1 user was notified of being inactive but when I click on to see who it is, it just shows this:



when I click on the d it just takes me to a driver error page. and strangely enough it is reflecting the join data from my account (which the date was messed up in the forum conversion) and the d is from the first letter of my username as well. a it's found a few 1 user inactive and they all show that message. I ran debug mode but that didn't show anything:





any help with this?




I have the same problem with IP 3.2 and version 1.3.3
Link to comment
Share on other sites

  • 2 weeks later...

When I want to move inactive members to a particular group the specifications I've set are not correct.
I've set that all members from group A needs to be moved to group B if their postcount is equal/more then 10
And when I check the moved members there are a lot in there that even has zero posts.

Any help?
Thanks in advanced.

Link to comment
Share on other sites


I have the same problem with IP 3.2 and version 1.3.3


I'm having a similar problem.. running the latest IPB and the latest of this file.

Member name Joined Posts Group t Dec 31 1969 04:00 PM t

When I click the t I get


An Error Occurred

Sorry, an error occurred. If you are unsure on how to use a feature, or don't know why you got this error message, try looking through the help files for more information.

[#10246] We could not find the member whose profile you were attempting to view.
Link to comment
Share on other sites

Sorry for the delay guys. The issue you have been reporting in recent posts is one that have haunted me for quite some time, and I were finally able to find the cause of it.

v1.3.4 is our, with these changes:

  • Bug: Log window for Notify Inactive only have one invalid entry
  • Bug: Admin notifications in Notify Inactive were not sent
  • New: The sender in admin notifications in Notify Inactive is from one of the notified members (The member does not know this)


Also, in the future when you report bugs or ask questions, please mention what task you have issues with.
Link to comment
Share on other sites


Sorry for the delay guys. The issue you have been reporting in recent posts is one that have haunted me for quite some time, and I were finally able to find the cause of it.



v1.3.4 is our, with these changes:

  • Bug: Log window for Notify Inactive only have one invalid entry
  • Bug: Admin notifications in Notify Inactive were not sent
  • New: The sender in admin notifications in Notify Inactive is from one of the notified members (The member does not know this)

Also, in the future when you report bugs or ask questions, please mention what task you have issues with.




Version 1.3.4 fixed the problem, thanks.
Link to comment
Share on other sites

Now i have another problem, Inactive Members are not moved back even tough they return to the board.

"Choose the members based on their last post or last activity?" option is set to "Last Activity" and "Do NOT move the member back automatically" is set to "No".

When i run Manage Inactive Members task in debug mode the result is this:


SELECT member_id, members_display_name, posts, email, member_group_id, mgroup_others, members_disable_pm, allow_admin_mails, inactive_oldGroup, inactive_moved, joined, last_activity, last_visit, last_post
FROM ibf_members
WHERE ( last_activity <= 1306651255 OR last_activity IS NULL ) AND joined <= 1319611255 AND member_group_id IN (2,8,10,11,12,18,19,23)
LIMIT 0,250

Found 0 inactive users


Array
(
)

shouldn't there be a query which checks returned members?

Link to comment
Share on other sites

Returned members are moved back using a hook, not the task that moves them to the inactive group.
The member will not be moved back if you've manually changed that members group.

If there is a member you know should have been moved back, can you run this query, and pass me the result?

FROM ibf_members WHERE member_id = X;

SELECT member_id, members_display_name, posts, email, member_group_id, mgroup_others, members_disable_pm, allow_admin_mails, inactive_oldGroup, inactive_moved, joined, last_activity, last_visit, last_post

Where X is the members ID #. Or

FROM ibf_members WHERE members_display_name = "Display Name";

SELECT member_id, members_display_name, posts, email, member_group_id, mgroup_others, members_disable_pm, allow_admin_mails, inactive_oldGroup, inactive_moved, joined, last_activity, last_visit, last_post

Link to comment
Share on other sites


Returned members are moved back using a hook, not the task that moves them to the inactive group.


The member will not be moved back if you've manually changed that members group.



If there is a member you know should have been moved back, can you run this query, and pass me the result?


FROM ibf_members WHERE member_id = X;

SELECT member_id, members_display_name, posts, email, member_group_id, mgroup_others, members_disable_pm, allow_admin_mails, inactive_oldGroup, inactive_moved, joined, last_activity, last_visit, last_post

Where X is the members ID #. Or

FROM ibf_members WHERE members_display_name = "Display Name";

SELECT member_id, members_display_name, posts, email, member_group_id, mgroup_others, members_disable_pm, allow_admin_mails, inactive_oldGroup, inactive_moved, joined, last_activity, last_visit, last_post

Should i do something to activate this hook that you mention.


member_id members_display_name posts email member_group_id mgroup_others members_disable_pm allow_admin_mails inactive_oldGroup inactive_moved joined last_activity last_visit last_post

322 tempzerg 100 tempzerg@bilkentftp.com 36 ,28, 0  2 1322084496 1066425171 1322202850 1322202771 1095245698

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.

×
×
  • Create New...