Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter hop2us

    (@hop2us)

    Sorry that link may not work… here’s one that should: http://lulusrescue.com/?page_id=1039

    Plugin Author bridgetwes

    (@bridgetwes)

    I’m getting a 404 error on those pages. Can you set up a test page with the plugin so I can see what errors you are getting?

    Thread Starter hop2us

    (@hop2us)

    Plugin Author bridgetwes

    (@bridgetwes)

    Your PHP is not configured to allow your site to load an xml file from another site. You can try adding the following two lines to the top of the petfinder-listings.php file inside the petfinder-listings plugin folder:

    ini_set(“allow_url_fopen”, true);
    ini_set(“allow_url_include”, true);

    You can add these around line 30 right above the petfinder_listings_styles function.

    If you are still getting an error, you might need to upgrade PHP.

    Thread Starter hop2us

    (@hop2us)

    I put this in, not sure I put it in right (I added the 2 lines under “//ini_set(“allow_url_fopen”, true);”, but I’m still getting the error:

    /********** Add default styles ************/

    //ini_set(“allow_url_fopen”, true);

    ini_set(“allow_url_fopen”, true);
    ini_set(“allow_url_include”, true);

    function petfinder_listings_styles(){
    wp_register_style(‘petfinder-listings-style’, plugins_url( ‘petfinder.css’, __FILE__ ));
    wp_enqueue_style(‘petfinder-listings-style’);
    }
    add_action(‘init’, ‘petfinder_listings_styles’);

    Thread Starter hop2us

    (@hop2us)

    I have the php on the server to be PHP 5.2

    Plugin Author bridgetwes

    (@bridgetwes)

    The lines are in the right place.

    Can you upgrade to php 5.3 on your server? That fixed the issue for the last person who had this issue (http://wordpress.org/support/topic/xml-load-error?replies=10)

    Thread Starter hop2us

    (@hop2us)

    They only have the option for 5.4 but when I tried to change it to that, the whole site went down. Very frustrating.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘lots of errors’ is closed to new replies.