the following diagnosis on postman can help understand what is the problem:
OS: Linux host2.itclever.com 2.6.18-348.4.1.el5 #1 SMP Tue Apr 16 15:40:06 EDT 2013 x86_64
Platform: PHP Linux 5.3.24 / WordPress 4.1.1
PHP Dependencies : iconv=Yes : spl_autoload=Yes : openssl=Yes : allow_url_fopen=No
WordPress Plugins : LayerSlider WP : Contact Form 7 : Essential Grid : Fusion Core : Postman SMTP : Revolution Slider : UberMenu – Flat Skins Pack Extension : UberMenu 3 – see
The Ultimate WordPress Mega Menu : W3 Total Cache : WordPress SEO : WP Fastest Cache : WP-Optimize : WP Parallax Content Slider
Postman Version: 1.5.10
Postman Sender:
Postman Transport URI: smtp:tls:login://ge*****td@yahoo.fr:**********@smtp.mail.yahoo.fr:587
Postman Transport Status (configured|ready|connected): Yes|Yes|No
Postman Deliveries (Success|Fail): 0|0
Postman Bind (success|failure): No|Yes
Postman Available Transports : SMTP (1.5.10)
Postman LogLevel: 40000
Postman TCP Timeout (Connection|Read): 10|60
HTTP User Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0
can u answer about the plugin that i must desactivate?
thanks
daniel
Duplicate of https://wordpress.org/support/topic/trying-to-use-with-bbpress-getting-conflict-message?replies=8
I’m only familiar with two of those plugins. Deactivate each one, one at a time until the error goes away.
if you can’t find which plugin is locking the mail function, send a mail to info@itclever.com. it’s possible they have disabled mail on your WordPress system.
@bangkok108 did you deactivate the plugins? also try temporarily deactivating the theme. another of my users had a theme that was causing mail problems.
i did deactivate the plugins, but Contact form7 is still not working.always the same message pops up in red box.i contacted my hosting company who says everything works with other customers.
where can i find the Theme on WP?
can you recommend me another contact form?
thanks
daniel
hi from thailand
this is the message that pops up in WordPress when i go to menus page:
“If this message does not disappear, it means that UberMenu has not been able to load. This most commonly indicates that you have a javascript error on this page, which will need to be resolved in order to allow UberMenuto run.
How to check for javascript errors”
it’s getting technical. do u know what’s wrong with javascript?
daniel gerbault
http://www.apsaraventure.com
No, I’ve never used UberMenu.
I use Safari as my web browser and to inspect Javascript errors I go to Developer -> Show Error Console. If you can do the same for whatever browser you use, I’m sure you’ll see the Javascript error. You can send the error to the developer of the plugin/theme as they are the best person to ask.
Daniel, thank-you for letting me login to your server. I discovered what was causing the conflict. There is a nasty (hidden) plugin of the “Must Use” class installed in your WordPress by your host:
<?php
/**
* Plugin Name: No localhost emails
* Description: Overwrites WP pluggable function wp_mail
*/
if ( !function_exists( 'wp_mail' ) ) :
function wp_mail() {} // KILL EMAILS IN LOCALHOST
endif;
I changed it to ignore Postman, and now you can send e-mail.
<?php
/**
* Plugin Name: No localhost emails
* Description: Overwrites WP pluggable function wp_mail
*/
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
if ( !function_exists( 'wp_mail' ) && !is_plugin_active('postman-smtp/postman-smtp.php') ) :
function wp_mail() {} // KILL EMAILS IN LOCALHOST
endif;
If one of the administrators disables your mail again, I would take your business elsewhere.