If you receive “Call-time pass-by-reference has been removed” error in your website after upgrading your PHP to newer version :

Open the proper php file and change   &$var   to  $var.

This is because newer version of PHP doesn’t like  to work with variables by reference 🙂