-
Notifications
You must be signed in to change notification settings - Fork 30
/
config.php
65 lines (47 loc) · 2.06 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/*
SQL Buddy - Web based MySQL administration
http://interruptorgeek.com/sql-buddy-ig-review/
config.php
- options for customizing sql buddy
MIT license
Original : 2008 Calvin Lough <http://calv.in>
Reviewed : 2016 Carlos Martín Arnillas <https://interruptorgeek.com>
*/
/* The values below are for the login.php page */
$sbconfig['DefaultAdapter'] = "mysql";
$sbconfig['DefaultHost'] = "localhost";
$sbconfig['DefaultUser'] = "root";
/*
* If you want to enable automatic login, you can include your password below. To
* automatically connect to SQLite, include the filename of the database instead.
* Note: This is generally not recommended because it means that anyone with the
* proper url will have access to your data. It should only be used on machines
* that are not accessible from the internet (local testing boxes) or if you have
* set up some other form of authentication. Use as your own discretion.
*/
// MySQL
// $sbconfig['DefaultPass'] = "";
// SQLite
// $sbconfig['DefaultDatabase'] = "";
/*
* By default, when you view the homepage of your SQL Buddy installation, a check is
* performed to see if a newer version of the application is available. No personal
* information is sent about your installation and the response from the server is sent
* as plain text. If, for some reason, you want to disable this behaviour, set this option
* to true to disable automatic checking for updates. To learn about new versions, you can
* always check the projects website at http://www.sqlbuddy.com/
*/
$sbconfig['EnableUpdateCheck'] = true;
/*
* This controls how many rows are displayed at once on the browse tab. If you are on a local
* machine or have a fast internet connection, you could increase this value.
*/
$sbconfig['RowsPerPage'] = 100;
/*
* When set to true, the server will attempt to compress all content before it is sent to the
* browser. Although unlikely, there is a chance that using gzip will cause issues on certain setups.
* If you are having trouble getting pages to load properly, you could try disabling gzip.
*/
$sbconfig['EnableGzip'] = true;
?>