• Resolved draco678

    (@draco678)


    Fatal error: Call-time pass-by-reference has been removed in C:\xampp\htdocs\wordpress\wp-content\plugins\column-posts\column-posts.php on line 270
    Solution according to:
    http://stackoverflow.com/questions/8971261/php-5-4-call-time-pass-by-reference-easy-fix-available
    forum.civicrm.org/index.php?topic=26601.0

    Removed “&” from line 270
    changing
    $this->print_endposts($cp_class, $col_cat, $cp_column, &$cp_str);
    To
    $this->print_endposts($cp_class, $col_cat, $cp_column, $cp_str);

    Plugin activated but shows:

    Warning: Creating default object from empty value in C:\xampp\htdocs\wordpress\wp-content\plugins\column-posts\includes\admin.php on line 371

    The plugin generated 177 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.

    http://wordpress.org/extend/plugins/column-posts/

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author lebasca

    (@lebasca)

    Hi draco678,

    As I am using php 5.3.5, I don’t see this issue but I will upgrade my php or I will see how to remove the pass by reference variable in the function print_endposts.

    Regards,
    Lebasca

    Harry Allen

    (@harryallen00gmailcom)

    Same issue here. Had to delete the plugin.

    Same here in php 5.4.4-14+deb7u3

    I’ll check back! Looks great.

    Hi I have same problem, Fatal error. I create site with localhost xampp php 5.5.27 wp ver 3.5.1
    How to fix it, please help me

    I decided to buy GridFX. It does a similar thing in a very visual style. Its also skinnable so we were able to coerce it to do what we wanted.

    Good option to have.

    My site on localhost (xampp). I try upload to hosting and no problem no error code, I try to change back
    $this->print_endposts($cp_class, $col_cat, $cp_column, $cp_str);
    To
    $this->print_endposts($cp_class, $col_cat, $cp_column, &$cp_str);

    yeah good plugin nothing error code again. This problem may be related to xampp

    Plugin Author lebasca

    (@lebasca)

    Hi there,

    I released a new version fixing this issue.

    Lebasca

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Column-posts(C3.4.2) – fatal error correction’ is closed to new replies.