mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-20 05:17:53 +00:00
Merge pull request #347 from cytopia/phpmyadmin-settings
Fix #342 phpMyAdmin config permission error
This commit is contained in:
commit
8c2362e719
@ -15,6 +15,8 @@
|
||||
* cookie. Needs to be 32 chars long.
|
||||
*/
|
||||
$cfg['blowfish_secret'] = 'GObO60^(04#^5637%fdUGo(*6$%6#dy4'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
|
||||
$cfg['CheckConfigurationPermissions'] = false;
|
||||
|
||||
|
||||
/**
|
||||
* Servers configuration
|
||||
|
@ -14,6 +14,8 @@
|
||||
* Custom overwrites
|
||||
*/
|
||||
$cfg['TempDir'] = '/tmp';
|
||||
$cfg['CheckConfigurationPermissions'] = false;
|
||||
|
||||
|
||||
/**
|
||||
* This is needed for cookie based authentication to encrypt password in
|
||||
|
@ -21,3 +21,19 @@ Please see [ROADMAP](https://github.com/cytopia/devilbox/issues/23) for what is
|
||||
* [ ] Better layout
|
||||
* [ ] Better logos
|
||||
* [ ] Try to remove as much vendor dependencies as possible
|
||||
|
||||
## Updating Vendors
|
||||
|
||||
#### phpMyAdmin
|
||||
|
||||
The following settings must be applied to `config.inc.php`:
|
||||
```php
|
||||
<?php
|
||||
$cfg['TempDir'] = '/tmp';
|
||||
$cfg['CheckConfigurationPermissions'] = false;
|
||||
|
||||
$cfg['blowfish_secret'] = 'add whatever value here';
|
||||
|
||||
$cfg['Servers'][$i]['host'] = 'mysql';
|
||||
$cfg['Servers'][$i]['AllowNoPassword'] = true;
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user