Radicore Forum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » RADICORE » RADICORE Installation Issues » PROBLEM AT LOGIN PAGE
Re: PROBLEM AT LOGIN PAGE [message #1112 is a reply to message #1110] Tue, 02 October 2007 05:31 Go to previous messageGo to previous message
AJM is currently offline  AJM
Messages: 2352
Registered: April 2006
Location: Surrey, UK
Senior Member
This means that the call to mysqli_connect() failed to make a connection to the server, which in turn made the call to mysqli_errno() fail as it was not given a valid resource.

Try changing the code inside dml.mysqli.class.inc to the following and try again.
    function getErrorNo ()
    // return number of last error.
    {
        if (empty($this->dbconnect)) {
            $errno = null;
        } else {
            $errno = mysqli_errno($this->dbconnect);
        } // if

        return $errno;

    } // getErrorNo

Hopefully this should display the reason for the failed connection.


 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Existing data do not show up in LIST2
Next Topic: radicore on edubuntu
Goto Forum:
  


Current Time: Wed Jul 17 17:20:57 EDT 2024

Total time taken to generate the page: 0.00984 seconds