Bài viết này thực hiện (hoặc lụm bài về đăng câu like từ các trang khác) bởi Việt Lâm Coder một YOUTUBER có tâm và đẹp trai siêu cấp vô địch zũ trụ.
MacOS
1 |
/usr/local/share/phpmyadmin/config.inc.php |
1 2 |
$sessionValidity = 3600 * 24 * 365; // one year $cfg['LoginCookieValidity'] = $sessionValidity; |
1 2 |
php.ini /usr/local/etc/php/7.4/php.ini |
1 |
session.gc_maxlifetime = 31536000 |
1 2 |
E:\OSPanel\modules\system\html\openserver\phpmyadmin\libraries\config.default.php $cfg['LoginCookieValidity'] = 99999; |
Just need to edit /etc/phpmyadmin/config.inc.php Open this file. find /* Authentication type */
add
1 2 3 4 5 |
$cfg['Servers'][$i]['auth_type'] = 'config'; $cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = ''; $cfg['Servers'][$i]['AllowNoPassword'] = TRUE; $cfg['Servers'][$i]['AllowRoot'] = TRUE; |
OSPanel (Open Server)
Step 1 : Open \OSPanel\userdata\config\phpmyadmin_config.inc.php
Step 2 : Find $cfg['Servers'][1]['auth_type'] = 'cookie'
Step 3 : Replace with this code
1 2 3 4 |
//$cfg['Servers'][1]['auth_type'] = 'cookie'; $cfg['Servers'][1]['auth_type'] = 'config'; $cfg['Servers'][1]['user'] = 'root'; //edit this line $cfg['Servers'][1]['password'] = ''; // edit this line |
Bài viết này thực hiện (hoặc lụm bài về đăng câu like từ các trang khác) bởi Việt Lâm Coder một YOUTUBER có tâm và đẹp trai siêu cấp vô địch zũ trụ.