Jump to content

anydes

New Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by anydes

  1. After recent updates to a wordpress site (updated non-related plugins, changed theme), the php code snippets are shooting back an error at the end of the feeds --  which were previously working fine for years. no other changes were made.


    Error Message:

    Quote

    Notice: Undefined variable: response in /nas/content/live/usafact/wp-content/plugins/insert-php-code-snippet/shortcode-handler.php(26) : eval()'d code on line 8

    URL:
    https://usafact.org/benefit/vision-care-discounts/

    PHP code:

    function do_post($url, $params)
        {
         $ch = curl_init();
         curl_setopt($ch, CURLOPT_URL, $url);
         curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
         $result = curl_exec($ch);
         curl_close($ch);
         return $response;
        }
    
    echo do_post("https://content.newbenefits.com/Feednocss.aspx", "hash=hDSJYjIb56KfGtxWE0I3OQ&Section=short_b2c");
    
    

     The plugin developer said to replace $response with $result, but that did not work. Same error shows. 

    Can someone please assist?

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.