[Plugin: WP-Invoice – Web Invoice and Billing] Fatal Error with latest PHP 5
-
Plugin won’t activate because of PHP 5 changes (?):
Fatal error: Call-time pass-by-reference has been removed in [..] wp-content\plugins\wp-invoice\core\wpi_invoice.php on line 243
Could be to do with changes in PHP 5
For example, use:// Right way!
function myFunc(&$arg) { }
myFunc($var);
Rather than:// Wrong way!
function myFunc($arg) { }
myFunc(&$arg);
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘[Plugin: WP-Invoice – Web Invoice and Billing] Fatal Error with latest PHP 5’ is closed to new replies.