Title: [Plugin: FeedWordPress] Feedwordpress &amp; PHP 5.4
Last modified: August 20, 2016

---

# [Plugin: FeedWordPress] Feedwordpress & PHP 5.4

 *  Resolved [deleuzer](https://wordpress.org/support/users/deleuzer/)
 * (@deleuzer)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-feedwordpress-feedwordpress-php-54-55/)
 * I just want to make sure there is an open support ticket for the incompatibility
   of this module and php5.4. None of the resolved tickets have solutions for php5.4
   which throws the error:
 * [Sun Aug 26 16:20:18 2012] [error] [client 127.0.0.1] PHP Fatal error: Call-time
   pass-by-reference has been removed; If you would like to pass argument by reference,
   modify the declaration of do_action(). in /home/ross/projects/interoccupy/wp-
   content/plugins/feedwordpress/admin-ui.php on line 53
 * Please see about fixing this problem as the Fatal error: implies the module is
   using methods outdated for php5.3 (not just php5.4).
 * Many thanks!
 * [http://wordpress.org/extend/plugins/feedwordpress/](http://wordpress.org/extend/plugins/feedwordpress/)

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

 *  [Alabala portocala](https://wordpress.org/support/users/zcytunoy/)
 * (@zcytunoy)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-feedwordpress-feedwordpress-php-54-55/#post-2997255)
 * If you upgraded to PHP 5.4 and you are using the Feedwordpress plugin for WordPress,
   you may encounter error code 500 and fatal errors on your blog, rendering it 
   unreachable with the following errors in the error log:
 * PHP Fatal error: Call-time pass-by-reference has been removed; If you would like
   to pass argument by reference, modify the declaration of do_action()
 * Fixing the problem is easy, you need to do 3 small edits in 2 files:
 * Go to your wp-content/plugins/feedwordpress folder
    open the file admin-ui.php
 * Find the line:
 * do_action($this->dispatch.’_save’, &$post, &$this);
 * Replace it with:
 * do_action($this->dispatch.’_save’, $post, $this);
 * Find the line:
 * do_action($this->dispatch.’_post’, &$post, &$this);
 * Replace it with:
 * do_action($this->dispatch.’_post’, $post, $this);
 * Save and upload admin-ui.php
 * Now, open the file syndicatedlink.class.php
 * Find:
 *  $posts = apply_filters(
    ‘syndicated_feed_items’, $this->simplepie->get_items(),&
   $this );
 * Replace with:
 *  $posts = apply_filters(
    ‘syndicated_feed_items’, $this->simplepie->get_items(),
   $this );
 * Save and upload the file.
 * The errors now should be gone and your blog will start working again.
 *  [einsiol](https://wordpress.org/support/users/einsiol/)
 * (@einsiol)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-feedwordpress-feedwordpress-php-54-55/#post-2997263)
 * Same issue here,. This is a big nuisance and makes the plugin unusable if your
   server is using php 5.4. This should be fixed with an update to the plugin. I
   do not intent to make this change by my self. If anyone else that is working 
   on the same WordPress site updates the plugin (updating is a security issue and
   cannot be avoided) the plugin would brake the site, unless this has been fixed.
 *  Plugin Author [C. Johnson](https://wordpress.org/support/users/radgeek/)
 * (@radgeek)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-feedwordpress-feedwordpress-php-54-55/#post-2997299)
 * Hey all,
 * This issue should be fixed in the most recent release of FeedWordPress, v. 2012.1212,
   available now at:
 * [http://wordpress.org/extend/plugins/feedwordpress/](http://wordpress.org/extend/plugins/feedwordpress/)
 * Let me know if it fixes the problem you’re encountering, or if there are any 
   outstanding issues you’re still seeing after making the upgrade.
 * Thanks,
    -C

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

The topic ‘[Plugin: FeedWordPress] Feedwordpress & PHP 5.4’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/feedwordpress_a6a79a.svg)
 * [FeedWordPress](https://wordpress.org/plugins/feedwordpress/)
 * [Support Threads](https://wordpress.org/support/plugin/feedwordpress/)
 * [Active Topics](https://wordpress.org/support/plugin/feedwordpress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/feedwordpress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/feedwordpress/reviews/)

## Tags

 * [do_action()](https://wordpress.org/support/topic-tag/do_action/)

 * 3 replies
 * 4 participants
 * Last reply from: [C. Johnson](https://wordpress.org/support/users/radgeek/)
 * Last activity: [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-feedwordpress-feedwordpress-php-54-55/#post-2997299)
 * Status: resolved