Hi all,
I need to be able to review profiles after someone edits it so I know what content is being placed on my site. Right now I only have ability to review a profile when they sign up. Is there a setting so I can send the profiles to cue so they can be reviewed by admin? This is extremely important that I be able to do this, most dating sites do this.
Thanks,
J
000 |
If you go into admin -> settings -> advanced settings -> moderation you'll find this:
"Preserve profile status after profile info editing"
Just un-check it and save.
Hi all,
I need to be able to review profiles after someone edits it so I know what content is being placed on my site. Right now I only have ability to review a profile when they sign up. Is there a setting so I can send the profiles to cue so they can be reviewed by admin? This is extremely important that I be able to do this, most dating sites do this.
Thanks,
J
BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
Thanks you, I found that box and unchecked it and now need to know where I can find the profiles to re-approve them. Hopefully they are not going into the approval area because the software is unbanning banned members and putting them in the approval bin which royally screws me up because htey should not go there. I have to sort all the profiles by last joined to approve them because the approval bin is mixed with new and banned users.
If you go into admin -> settings -> advanced settings -> moderation you'll find this:
"Preserve profile status after profile info editing"
Just un-check it and save.
Hi all,
I need to be able to review profiles after someone edits it so I know what content is being placed on my site. Right now I only have ability to review a profile when they sign up. Is there a setting so I can send the profiles to cue so they can be reviewed by admin? This is extremely important that I be able to do this, most dating sites do this.
Thanks,
J
000 |
Yeah, unfortunately it drops them back in with the new users who haven't been approved. I know to fix the automatic un-banning problem you have to remove some code from the cron job. I'll dig around and try to find it.
Thanks you, I found that box and unchecked it and now need to know where I can find the profiles to re-approve them. Hopefully they are not going into the approval area because the software is unbanning banned members and putting them in the approval bin which royally screws me up because htey should not go there. I have to sort all the profiles by last joined to approve them because the approval bin is mixed with new and banned users.
If you go into admin -> settings -> advanced settings -> moderation you'll find this:
"Preserve profile status after profile info editing"
Just un-check it and save.
Hi all,
I need to be able to review profiles after someone edits it so I know what content is being placed on my site. Right now I only have ability to review a profile when they sign up. Is there a setting so I can send the profiles to cue so they can be reviewed by admin? This is extremely important that I be able to do this, most dating sites do this.
Thanks,
J
BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
If you open /inc/classes/BxDolCronCmd.php and remove:
// clear ban table
if (db_res("DELETE FROM `sys_admin_ban_list` WHERE `DateTime` + INTERVAL `Time` SECOND < NOW()"))
db_res("OPTIMIZE TABLE `sys_admin_ban_list`");
The site should stop un-banning people and you can do it manually.
BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
Is this good for D7.1?
Stuart
If you open /inc/classes/BxDolCronCmd.php and remove:
// clear ban table
if (db_res("DELETE FROM `sys_admin_ban_list` WHERE `DateTime` + INTERVAL `Time` SECOND < NOW()"))
db_res("OPTIMIZE TABLE `sys_admin_ban_list`");
The site should stop un-banning people and you can do it manually.
There are none so blind as those that will not see. |
Yes, it was 7.1 files I was looking at when I found it.
Is this good for D7.1?
Stuart
If you open /inc/classes/BxDolCronCmd.php and remove:
// clear ban table
if (db_res("DELETE FROM `sys_admin_ban_list` WHERE `DateTime` + INTERVAL `Time` SECOND < NOW()"))
db_res("OPTIMIZE TABLE `sys_admin_ban_list`");
The site should stop un-banning people and you can do it manually.
BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
Many thanks for that,
Stuart
There are none so blind as those that will not see. |
No problem, glad to help. BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |