Last active
April 20, 2021 16:04
-
-
Save punit5658/cb5326f321f3b7d4a85c9b71eccc78a9 to your computer and use it in GitHub Desktop.
Revisions
-
punit5658 renamed this gist
Apr 20, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ Open Location of phpMyAdmin and edit : config.inc.php ( Command : sudo vi config.inc.php ) Add following line to end of the file : <?php -
punit5658 revised this gist
Apr 20, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,4 +12,4 @@ $cfg['TempDir'] = 'tmp'; ?> create directory 'tmp' at same directory if not exist(Command: mkdir tmp ) Allow access permission : 0777 ( Command : chown -R 777 tmp ) -
punit5658 renamed this gist
Apr 20, 2021 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
punit5658 created this gist
Apr 20, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ Open Location of phpMyAdmin and edit : config.inc.php Add following line to end of the file : <?php $i++; $cfg['Servers'][$i]['host'] = '192.168.1.133'; $cfg['Servers'][$i]['user'] = 'username'; $cfg['Servers'][$i]['password'] = 'password'; $cfg['Servers'][$i]['auth_type'] = 'config'; $cfg['Servers'][$i]['compress'] = false; $cfg['Servers'][$i]['AllowNoPassword'] = false; $cfg['TempDir'] = 'tmp'; ?> create directory 'tmp' at same directory if not exist(Command: mkdir tmp ) Allow access permission : 0777 ( Command : chown -R 777 tmp )