• Hi Tung Pham

    First, thanks for the good work. I hope I can say the same for mine :o)

    When I put the source to “RSS reader” I get this mesaage on the top of the URL input field:

    Deprecated: iconv_set_encoding(): Use of iconv.internal_encoding is deprecated in ../wp-content/plugins/wp-pipes/includes/string/string.php on line 27
    Deprecated: iconv_set_encoding(): Use of iconv.input_encoding is deprecated in ../wp-content/plugins/wp-pipes/includes/string/string.php on line 28
    Deprecated: iconv_set_encoding(): Use of iconv.output_encoding is deprecated in ../wp-content/plugins/wp-pipes/includes/string/string.php on line 29

    I think I need your assistance terribly, please.

    Thank you in advance,
    Alex Gahr

    https://wordpress.org/plugins/wp-pipes/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Alex Gahr

    (@alex-gahr)

    And these are the lines in string.php:

    iconv_set_encoding(“internal_encoding”, “UTF-8”);
    iconv_set_encoding(“input_encoding”, “UTF-8”);
    iconv_set_encoding(“output_encoding”, “UTF-8”);

    Plugin Contributor Tung Pham

    (@phamtungpth)

    Hi Alex,

    Please try to add this code

    elseif (PHP_VERSION_ID >= 50600)
    {
    	ini_set('default_charset', 'UTF-8');
    }

    at line#31 of that file.

    Best Regards!

    Thread Starter Alex Gahr

    (@alex-gahr)

    Hi Tung

    Thank you for your prompt reply! I appreciate that.
    I put the code in the line 31 of string.php and I get this notice:

    Deprecated: iconv_set_encoding(): Use of iconv.internal_encoding is deprecated in ../wp-pipes/includes/string/string.php on line 27 Deprecated: iconv_set_encoding(): Use of iconv.input_encoding is deprecated in /../wp-pipes/includes/string/string.php on line 28 Deprecated: iconv_set_encoding(): Use of iconv.output_encoding is deprecated in ../wp-pipes/includes/string/string.php on line 29

    Plugin Contributor Tung Pham

    (@phamtungpth)

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘RSS reader: /wp-pipes/includes/string/string.php on line 29’ is closed to new replies.