How to find the Suppression Domains list in phpmyadmin?

xRed

Member
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?
 
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"
 
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.
 
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.
 
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
"
 
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:
Back
Top