• Hi Eric,

    Thanks for the awesome plugin. I’ve used your plugin on another site without any flaws. However, when trying to use it here,

    https://igniteachange.com/ (tell us about yourself button)

    everything seems to be functioning correctly. However, I do not receive an email (the one defined in the admin). Any ideas?

    Best,

    Jon

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hey Jon,

    Have you tried commenting out the @ in front of mail to see if you get an error msg?

    You should also check your web logs.

    What kind of server is it on? Can you send mail from that same server using other methods?

    -Eric

    Hi Eric,
    I have the same issue as Jon. Everything seems to be OK, but I′m still not receiving any e-mails from that plugin.

    I′ve changed @mail to mail only without getting any error. Also checked my logs, nothing strange there. If I use simple PHP file with mail function, it′s working. Any ideas please?

    Stan

    I′ve found out, that the form is also not showing the GETTEXT message after submit. It′s on line 23.

    _e(“Your message was successfully sent.”, “smcf”);

    So, there is some strange behavior related to XmlHttpRequest, JQuery or something like that. Nothing related to PHP itself, DNS, server issue etc. The point is maybe that I have different plugins installed and also using some jquery, the same theme have own jquery, there is also some calendar using XML HTTP request…

    I′m quite new to WordPress and don′t know how are these conflicts between more jquery.js files solved. That′s bit confusing… why are those plugins each time using their own jquery and there is not any verification about existing and already included js file. But it is up to developers and also user…

    Hope I′ll find where′s the conflict between included javascript files.

    Stan

    Have found the root cause of this problem I think. When I append OR DIE to smcf-data.php when calling wp-config.php, it is not working. Have tried a lot of different paths, but nothing is right.

    ini_set(‘display_errors’,’1′);
    require_once(“../../../wp-config.php”) or die (“Error”);

    and in frontend ->

    Warning: require_once(1) [function.require-once]: failed to open stream: No such file or directory in /www/wp-content/plugins/simplemodal-contact-form-smcf/smcf_data.php on line 4

    That′s it. Without ini_set to display errors and OR DIE construction of catching errors, there is no debug info, which takes lot of time ?? Any idea how to fix it please? I′ve already changed this to document root and ABSPATH without success.

    Thanks,
    Stan

    Got it ?? Change this line

    require_once(‘../../../wp-config.php’);

    in smcf-data.php to:

    require_once(dirname(dirname(__FILE__)) . '/../../wp-config.php');

    and here you go, it works…

    Stan

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘SimpleModal Contact Form – Not Receiving Email’ is closed to new replies.