XF 1.4 Feeder only fetches 5 items?

ibrian

Well-known member
I'm currently trying to move content from a Wordpress site to my XF forums. As I've not had much luck trying to use importers, I thought I'd try to use Feeder to import the posts from Wordpress over directly into a specified board.

However, whatever I seem to do, XF will only pull and publish the first 5 items of the feed. I'd like to be able to pull in at least 100 at a time.

I noticed mention of a Zend timeout option in another thread, but editing that value didn't seem to have any affect:
https://xenforo.com/community/threads/feeder-change-timeout.73466/#post-761351

Any suggestions on how to address this, please? :)
 
Last edited:
Any suggestions on how to address this, please? :)
Pretty sure it involves modifying the .PHP file that pulls in the feeds and changing the number to what you want.. then having to do that after each upgrade of the script.

/library/XenForo/Model/Feed.php

Code:
  /**
         * Maximum number of entries to be fetched per-feed per-import.
         *
         * @var integer
         */
        protected static $_maxEntriesPerImport = 5;
 
Top Bottom