Column-posts(C3.4.2) – fatal error correction
-
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:
https://stackoverflow.com/questions/8971261/php-5-4-call-time-pass-by-reference-easy-fix-available
forum.civicrm.org/index.php?topic=26601.0Removed “&” 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.
- The topic ‘Column-posts(C3.4.2) – fatal error correction’ is closed to new replies.