Private GIT

Skip to content
Snippets Groups Projects
Select Git revision
  • 642f10383345fbe36337b8aad3364ab4e81dfeb0
  • master default protected
2 results

check_db_install.php

Blame
  • check_db_install.php 289 B
    <?php
    
    /* check if we are able to connect to database ! */
    
    # initialize install class
    $Install = new Install ($Database);
    # try to connect, if it fails redirect to install
    $Install->check_db_connection(true);
    # connection is ok, check that table exists
    $Install->check_table("vrf", true);