C:\$Recycle.Bin\S-1-5-21-3967099092-2644009230-141905953-500\$RX0XZUC\php\config.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php

    
function turboGetConnectData()
    {
        return array(
            
'server' => 'localhost',
            
/* To enable experimental Postgres support change 'type' to 'postgres' */
            
'type' =>  'mysql',
            
'user' => 'admin',
            
'password' => 'mscmks71s11f132n'
            
/*
                Multi-user basic auth settings:
                Multiple users can login to TurboDbAdmin by using basic auth. To enable this login method:
                (1) comment out the previous 'user' and 'password' lines and uncomment the following 'user'
                and 'password' lines.
                (2) Password protect the TurboDbAdmin folder using Basic Auth. Basic Auth users must have
                name and password the same as their MySQL name and password.
                More options for user login will be available in the next release of TurboDbAdmin.
            */
            // 'user' => $_SERVER['PHP_AUTH_USER'],
            // 'password' => $_SERVER['PHP_AUTH_PW'],

            /* Character encoding settings. */
            //, 'encoding' => $db_encoding, // data output from the DB is utf-8 and can go directly to the browser
      //, 'names' => $db_names // MySQL 4.1 or higher only
        
);
    }

    
define('SQL_FILE''../save/sql.xml');

    
// NOTE: Increase script time limit if operations like executing large queues of sql commands are timing out.
    //set_time_limit(300);

?>