Menu

class.Installer.inc problem

jakuta
2005-05-06
2013-04-30
  • jakuta

    jakuta - 2005-05-06

    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.

     
    • Alejandro

      Alejandro - 2005-07-29

      i have the same problem where do you put that?
      and what ... $this-> ...  <- that?

       
      • Pierre-Marie CHARAVEL

        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->".

         
    • firatbc

      firatbc - 2005-12-29

      I have the same problem. I did the change:

         unset($_REQUEST['create_db']);
                  continue;
                }
                $connection = false;
                $this-&gt;_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.