I'm running php 4.3.11 and there was a problem on line 389 of this file. I just added a $this-> to the function and it solved it.
i have the same problem where do you put that? and what ... $this-> ... <- that?
chandro, in include/class.Installer.inc you should replace line #389 : _no_tablespace($tabl); by : $this->_no_tablespace($tabl);
"$this->" reffers to the class name. It couldn't find the function because it was declared within the class and was called without "$this->".
I have the same problem. I did the change:
unset($_REQUEST['create_db']); continue; } $connection = false; $this->_no_tablespace($tabl); unset($db); break;
But now it says:
Parse error: parse error, unexpected '&' in /home/maidentu/public_html/phpopenchat/include/class.Installer.inc on line 389
Where i made a mistake? Please help me thanks.
Log in to post a comment.
I'm running php 4.3.11 and there was a problem on line 389 of this file. I just added a $this-> to the function and it solved it.
i have the same problem where do you put that?
and what ... $this-> ... <- that?
chandro, in include/class.Installer.inc you should replace line #389 :
_no_tablespace($tabl);
by :
$this->_no_tablespace($tabl);
"$this->" reffers to the class name. It couldn't find the function because it was declared within the class and was called without "$this->".
I have the same problem. I did the change:
unset($_REQUEST['create_db']);
continue;
}
$connection = false;
$this->_no_tablespace($tabl);
unset($db);
break;
But now it says:
Parse error: parse error, unexpected '&' in /home/maidentu/public_html/phpopenchat/include/class.Installer.inc on line 389
Where i made a mistake? Please help me thanks.