Quote:
Originally Posted by sammyman
Fatal error: Call to a member function on a non-object in /home/user/public_html/manuals/includes/SpecialUserlogin.php on line 314
I figured it OUT! I am the smartest man alive! I googled this
Thus, I simply amended line 264 of SpecialUserlogin.php from this:
$u =& $this->initUser( $u );
to this:
$u = $this->initUser( $u );
|
Actually, there is another way to fix this error (i was getting them for a long time!!)...
on line 314, insert the following:
$unique_varname_xyzabc = $u;
The problem is actually a PHP problem (likely restricted to PHP 4.3.11)... so only a few lucky ones like sammyman and me get it!
it has something to do with php getting confused about the variable scope...