• Hi,

    my hostingprovider does not support parse_ini_file(), so please advice if this change to bolcom-partnerprogramma-wordpress-plugin.php could be used safely:

    Original:
    $config = parse_ini_string(file_get_contents('config.ini', true));

    Replaced by:

    $contentown = file_get_contents('config.ini', true);
    $config = parse_ini_string($contentown, true);

    Tested it with own provider, it works without the ^&%&#^$% security issue.

    https://www.ads-software.com/plugins/bolcom-partnerprogramma-wordpress-plugin/

Viewing 1 replies (of 1 total)
  • Thread Starter nlpwiki

    (@nlpwiki)

    Ah, my bad, the original line had to be this line:

    $config = parse_ini_file(‘config.ini’, true);

Viewing 1 replies (of 1 total)
  • The topic ‘Hosting provider and parse_ini_fil()’ is closed to new replies.