Hey guys,
This issue has been resolved.
Could you please update your plugin and let us know?
Cheers
Adrian
Wrong thread, AIO Support Center Still has this problem.
Just wanted to add a quick way to scan for plugins that use pluggable.
Use the following linux command in the wp root directory (or change . to /path/)
find ./wp-content -name \*.php | xargs grep "/pluggable.php"
You’ll get a list of all plugins using pluggable.php
./wp-content/plugins/automatic-domain-changer/auto-domain-change.php: require_once(ABSPATH .’wp-includes/pluggable.php’);
In my case it was only Automatic Domain Changer that used it and caused it.
Disabled it and it worked fine.
Thanks eveyone!
grep -R pluggable ./wp-content/*
Hello
I have similar problem.
“Postman: wp_mail has been declared by another plugin or theme, so you won’t be able to use Postman until the conflict is resolved.” error in the admin panel. So, I’ve read this thread and figured out the compatibility problem. And I’ve figured out what this plugin is (our payment gateway).
It really was declaring “require_once( ABSPATH . “wp-includes/pluggable.php” );”
I’ve found it and deleted, and no other files in the plugin have it. But, I still have the same error in the admin panel. When I disable payment gateway plugin, Postman smtp works perfectly.
Do you have any other ideas what may cause the compatibility issue?
Thanks.
I have a similar issue with Postman and a plugin called “content-modal”: “Postman: wp_mail has been declared by another plugin or theme, so you won’t be able to use Postman until the conflict is resolved.”
Is there a chance to resolve that if I send you the (quite small) plugin?