mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418

mysqli_connect(): (HY000/1045): Access denied for user 'fundaven_root'@'localhost' (using password: YES)

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function connect( $hostname = "localhost", $username = 'root', $password = '' , $charset = "utf8" , $database = null )
  5.     {
  6.         $this->connection = @mysqli_connect($hostname,$username,$password);
  7.         if( mysqli_connect_errno() == 0)
  8.         {
  9.             $this->isConnected = true;
  10.             $this->charset( $charset );
  11.             if( !empty( $database ) )

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 196

Connect failed: Access denied for user 'fundaven_root'@'localhost' (using password: YES) [1045]

  1.         }else{
  2.             trigger_error( sprintf(
  3.                 "Connect failed: %s [%d]",
  4.                 mysqli_connect_error(),
  5.                 mysqli_connect_errno()
  6.             ) , E_USER_ERROR);
  7.         }
  8.         return $this;
  9.     }
  10.     /**
  11.     * Connect with the server

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 210

mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given

  1.         {
  2.             return "NULL";
  3.         }
  4.         if( $quote === true AND !empty($data) )
  5.         {
  6.             $data = mysqli_real_escape_string ( $this->connection , $data );
  7.             $data = $quotes.$data.$quotes;
  8.         }
  9.         return $data;
  10.     }
  11.     /**

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 544

mysqli_query() expects parameter 1 to be mysqli, boolean given

  1.     * @version    0.1
  2.     * @since     0.1
  3.     */
  4.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  5.     {
  6.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  7.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  8.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  9.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  10.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  11.          $log.= "\nTime:\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 786

mysqli_errno() expects parameter 1 to be mysqli, boolean given

  1.     * @since     0.1
  2.     */
  3.     public function exec( $resultmode = MYSQLI_STORE_RESULT )
  4.     {
  5.         $this->source = mysqli_query ( $this->connection , $this->query , $resultmode );
  6.         if( $this->source === false OR mysqli_errno($this->connection) != 0 ) {
  7.          $log_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . "error.log";
  8.          $trace = print_r(debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ),true);
  9.          $log = "\nLog: ".date("d-m-Y H:i:s")."[".time()."]\n";
  10.          $log.= "\nTime:\n";
  11.          $log.= $trace."\n";

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 787

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, null given

  1.     public function fetchAssoc( $limit = null , $page = null )
  2.     {
  3.         $rows = array();
  4.         $this->exec();
  5.         
  6.         while( $row = mysqli_fetch_assoc( $this->source ) )
  7.         {
  8.             if( count($row) == 1 )
  9.             {
  10.                 $row = array_values( $row );
  11.                 $rows[] = $row[ 0 ];

In file /home/tyrcl/register.tyr.cl/_private/modules/Database/classes/services/Mysqli.php on line 418