Viewing 5 replies - 1 through 5 (of 5 total)
  • What version of PHP are you using?

    PHP_EOL is a PHP constant that is used to make the email format properly on all platforms. However, it was introduced in PHP 4.3.10 and 5.0.2, so if you have an earlier version of PHP, you will need to upgrade.

    Thread Starter Steve

    (@steviebdotnet)

    Hi thanks for the response.

    It seems I’m running PHP 4.3.9.

    I’ll see if I can persuade the host to upgrade, they are a weird bunch so they might not, unless you can suggest any other reasons to upgrade? Any notable performance or security benefits?

    Failing that, is there a way round it?

    There have been many security fixes to PHP since version 4.3.9. See here for the changelog of the 4.x series:
    https://php.net/ChangeLog-4.php

    Please note that all updates for PHP 4 ceased at the end of 2007 – there have been no security fixes since then. I would recommend your host upgraded to the latest PHP 5.2 release, for the best balance of new version and stable, well tested release.

    To work around this problem, please try adding the following code to your wp-config.php file:

    if( ! defined( 'PHP_EOL' ) )
        define( PHP_EOL, "\r\n" );
    Thread Starter Steve

    (@steviebdotnet)

    Thanks again!

    Thread Starter Steve

    (@steviebdotnet)

    Work perfectly!

    Thanks for the workaround; my host are worse than useless!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: Job Manager] Admin E-mail formatting’ is closed to new replies.