How to find the Suppression Domains list in phpmyadmin?

xRed

Member
Aug 23, 2020
50
3
8
I accidentally added bunch of domains in global domain suppression and now unable to remove it via the mumara interface.

Only option is to remove from the phpmyadmin or via filezilla(if possible)

How can I find what database to see in?
 

mohammad

Member
Staff member
Aug 31, 2020
117
31
28
We have the option for bulk deleting domain suppression in Mumara but if you want to delete the domain suppression from the database then you can delete the record from the table "suppress_domain". Here is the query

DELETE FROM `suppress_domain` WHERE suppress_domain = "domain.com"
 
  • Like
Reactions: xRed

xRed

Member
Aug 23, 2020
50
3
8
We have the option for bulk deleting domain suppression in Mumara but if you want to delete the domain suppression from the database then you can delete the record from the table "suppress_domain". Here is the query
Thanks

How to delete All domains in supressions list?

And where to run that query inside phpmyadmin.
 

mohammad

Member
Staff member
Aug 31, 2020
117
31
28
If you want to delete all records in the "suppress_domain" table then you can run the following TRUNCATE query

TRUNCATE TABLE suppress_domain;

in the PHPMyAdmin -> SQL tab.
 
  • Like
Reactions: xRed

xRed

Member
Aug 23, 2020
50
3
8
If you want to delete all records in the "suppress_domain" table then you can run the following TRUNCATE query



in the PHPMyAdmin -> SQL tab.
Hi,

I get this error

"

Error​

SQL query:



TRUNCATE TABLE suppress_domain



MySQL said:

#1046 - No database selected
"
 

mohammad

Member
Staff member
Aug 31, 2020
117
31
28
Hi,

You have to select the database and then run the Truncate table command. If you don't have any technical experience, then it is suggested to contact your developer or someone who takes care of server stuff to run this command.
 
Last edited: