remove all but profile views from spy?

hi all, i know you are all sick of me now :( but this will be the last one (he says) for a while :)

 

how do i remove all data from spy except for profile views? i thought i had done it but im still getting photo uploads, and profile edits shown :(

 

cheers

 

Charlie 

You Creature!!
Quote · 23 Jul 2012

 

hi all, i know you are all sick of me now :( but this will be the last one (he says) for a while :)

 

how do i remove all data from spy except for profile views? i thought i had done it but im still getting photo uploads, and profile edits shown :(

 

cheers

 

Charlie 

 i have to agree with you on that one. lol Tongue Out

Quote · 23 Jul 2012

 Well i must say you have commented on a few of my posts but never actually given any real advice to any of my issues :s, but would like to say thanks to everyone else who has helped me and not complained that i actually ask for advice in the forums, as i did think this was what they were here for??? :)

 

cheers :)

 

 

hi all, i know you are all sick of me now :( but this will be the last one (he says) for a while :)

 

how do i remove all data from spy except for profile views? i thought i had done it but im still getting photo uploads, and profile edits shown :(

 

cheers

 

Charlie 

 i have to agree with you on that one. lol Tongue Out

 

You Creature!!
Quote · 23 Jul 2012

Go to phpmyadmin and run this sql

SET @iHandlerId:= (SELECT `id` FROM `sys_alerts_handlers` WHERE `name`='bx_spy_content_activity' LIMIT 1);

DELETE FROM `sys_alerts_handlers` WHERE `id` = @iHandlerId;

DELETE FROM `sys_alerts` WHERE `handler_id`= @iHandlerId;

It will remove the content update from spy and if you want to remove profile activity like profile edit, profile rate etc

run this

SET @iHandlerId:= (SELECT `id` FROM `sys_alerts_handlers` WHERE `name`='bx_spy_profiles_activity' LIMIT 1);

SELECT * FROM `sys_alerts` WHERE `handler_id`= @iHandlerId;

and delete what you want to.

Enjoy :)

so much to do....
Quote · 24 Jul 2012

 Great work again bud, cheers for that :)

 

Go to phpmyadmin and run this sql

SET @iHandlerId:= (SELECT `id` FROM `sys_alerts_handlers` WHERE `name`='bx_spy_content_activity' LIMIT 1);

DELETE FROM `sys_alerts_handlers` WHERE `id` = @iHandlerId;

DELETE FROM `sys_alerts` WHERE `handler_id`= @iHandlerId;

It will remove the content update from spy and if you want to remove profile activity like profile edit, profile rate etc

run this

SET @iHandlerId:= (SELECT `id` FROM `sys_alerts_handlers` WHERE `name`='bx_spy_profiles_activity' LIMIT 1);

SELECT * FROM `sys_alerts` WHERE `handler_id`= @iHandlerId;

and delete what you want to.

Enjoy :)

 

You Creature!!
Quote · 24 Jul 2012
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.