Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > de.comp.lang.php > #4130

Re: Frage zu phpMyAdmin

Path csiph.com!fu-berlin.de!uni-berlin.de!news.dfncis.de!not-for-mail
From Peter Kiederich <kiederich@kiederich.info>
Newsgroups de.comp.lang.php
Subject Re: Frage zu phpMyAdmin
Date Mon, 19 Jun 2017 13:48:33 +0200
Lines 79
Message-ID <eqps0hFeptjU1@mid.dfncis.de> (permalink)
References <eqplsoFddlfU1@mid.dfncis.de> <oi893q$lir$1@news.albasani.net> <eqpp50Fe59mU1@mid.dfncis.de>
Mime-Version 1.0
Content-Type text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding 8bit
X-Trace news.dfncis.de ZGIZ6O2HJ8mu3nWFGYYyfA/oYPfmQopBQDSujaGbc8uFgTsMbKTLNgkMz+
Cancel-Lock sha1:6DMJLGlN4LXnUVTn5/bU0QgmdGk=
User-Agent Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0
In-Reply-To <eqpp50Fe59mU1@mid.dfncis.de>
Xref csiph.com de.comp.lang.php:4130

Show key headers only | View raw


Am 19.06.2017 um 12:59 schrieb Peter Kiederich:
> Am 19.06.2017 um 12:30 schrieb Gerome Muent:
>> Am 19.06.2017 um 12:04 schrieb Peter Kiederich:
>>
>>
>>> Ich möchte die verschiednen MySql Server auf der Loginseite von php
>>> auswählen können.
>>> Frage wo kann man das in den php Scripen und wie muss man es machen ?
>>>
>>> Beispiel siehe https://www.uni-due.de/phpmyadmin/
>>
>> Du meist die Login-Seite von phpmyadmin?
>>
>> Hier genau beschrieben:
>> https://tecadmin.net/add-multiple-hosts-in-phpmyadmin/
> Sorry das habe ich doch gemacht : Siehe hier ..
>
> $i = 0;
> $i++;
> $cfg[Servers][$i]['auth_type']          = 'cokie';
> $cfg['Servers'][$i]['verbose']          = 'small.fritz.box';
> $cfg[Servers][$i]['host']               = 'localhost';
> $cfg['Servers'][$i]['port']             = '3306';
> $cfg['Servers'][$i]['socket']           = '';
> $cfg['Servers'][$i]['user']             = '*****';
> $cfg['Servers'][$i]['password']         = '';
> $cfg['Servers'][$i]['extension']        = 'mysqli';
> $cfg[Servers][$i]['compress']           = false;
> $cfg[Servers][$i]['AllowNoPassword']    = false;
> /**
>  * Second server
>  */
> $i++;
> $cfg[Servers][$i]['auth_type']          = 'cokie';
> $cfg['Servers'][$i]['verbose']          = 'bigmamma.fritz.box';
> $cfg[Servers][$i]['host']               = '10.0.1.2';
> $cfg['Servers'][$i]['port']             = '3306';
> $cfg['Servers'][$i]['socket']           = '';
> $cfg['Servers'][$i]['user']             = '*****';
> $cfg['Servers'][$i]['password']         = '';
> $cfg['Servers'][$i]['extension']        = 'mysqli';
> $cfg[Servers][$i]['compress']           = false;
> $cfg[Servers][$i]['AllowNoPassword']    = false;
> /**
> * Second Server
> $i++;
> $cfg[Servers][$i]['auth_type']          = 'cokie';
> $cfg['Servers'][$i]['verbose']          = 'small.fritz.box';
> $cfg[Servers][$i]['host']               = 'localhost';
> $cfg['Servers'][$i]['port']             = '3306';
> $cfg['Servers'][$i]['socket']           = '';
> $cfg['Servers'][$i]['user']             = 'root';
> $cfg['Servers'][$i]['password']         = '';
> $cfg['Servers'][$i]['extension']        = 'mysqli';
> $cfg[Servers][$i]['compress']           = false;
> $cfg[Servers][$i]['AllowNoPassword']    = false;
> /**
>  * Third server
>  */
> $i++;
> $cfg[Servers][$i]['auth_type']          = 'cokie';
> $cfg['Servers'][$i]['verbose']          = 'oldman.fritz.box';
> $cfg[Servers][$i]['host']               = '10.0.1.7';
> $cfg['Servers'][$i]['port']             = '3306';
> $cfg['Servers'][$i]['socket']           = '';
> $cfg['Servers'][$i]['user']             = '***';
> $cfg['Servers'][$i]['password']         = '';
> $cfg['Servers'][$i]['extension']        = 'mysqli';
> $cfg[Servers][$i]['compress']           = false;
> $cfg[Servers][$i]['AllowNoPassword']    = false;
>
> Aber trotzdem erscheint es nicht Hast Du da noch eine Idee ?
>
> Lg Peter
>
>
hat sich erledigt habe das falsche config file bearbeitet (SRV) statt (ETC)

lg Peter

Back to de.comp.lang.php | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Frage zu phpMyAdmin Peter Kiederich <kiederich@kiederich.info> - 2017-06-19 12:04 +0200
  Re: Frage zu phpMyAdmin Gerome Muent <kontakt@bmservices.de> - 2017-06-19 12:30 +0200
    Re: Frage zu phpMyAdmin Peter Kiederich <kiederich@kiederich.info> - 2017-06-19 12:59 +0200
      Re: Frage zu phpMyAdmin Peter Kiederich <kiederich@kiederich.info> - 2017-06-19 13:48 +0200
        Re: Frage zu phpMyAdmin Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2017-06-20 18:34 +0200
          Re: Frage zu phpMyAdmin Peter Kiederich <kiederich@kiederich.info> - 2017-06-26 21:11 +0200
            Re: Frage zu phpMyAdmin Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2017-06-26 22:09 +0200
      Re: Frage zu phpMyAdmin Thomas Hochstein <thh@inter.net> - 2017-06-25 13:28 +0200
        Re: Frage zu phpMyAdmin Arno Welzel <usenet@arnowelzel.de> - 2017-06-25 16:45 +0200
  Re: Frage zu phpMyAdmin Arno Welzel <usenet@arnowelzel.de> - 2017-06-24 18:18 +0200

csiph-web