I have to work with some legacy PHP 4 code. I have PHP 5.4 installed on my machine and getting this nasty error:
"Fatal error: Call-time pass-by-reference has been removed in ..."
I already found a solution/fix, but it requires changes in existing code. My questions is - is there a way to IGNORE this error? I don't want to fix it (as it requires a LOT of code changes), but ignore and do my work. I am looking for some kind of "config" change in PHP/Apache, so I do not need to mess with legacy code.
Yes, yes... I know that is not a good practice, but unfortunately that is what I need right now.