PSD-Tutorials.de
Forum für Design, Fotografie & Bildbearbeitung
Tutkit
Agentur
Hilfe
Kontakt
Start
Forum
Aktuelles
Besonderer Inhalt
Foren durchsuchen
Tutorials
News
Anmelden
Kostenlos registrieren
Aktuelles
Suche
Suche
Nur Titel durchsuchen
Von:
Menü
Anmelden
Kostenlos registrieren
App installieren
Installieren
JavaScript ist deaktiviert. Für eine bessere Darstellung aktiviere bitte JavaScript in deinem Browser, bevor du fortfährst.
Du verwendest einen veralteten Browser. Es ist möglich, dass diese oder andere Websites nicht korrekt angezeigt werden.
Du solltest ein Upgrade durchführen oder einen
alternativen Browser
verwenden.
Antworten auf deine Fragen:
Neues Thema erstellen
Start
Forum
Sonstiges
Webdesign, Webentwicklung & Programmierung
Webdesign: HTML/CSS, Responsive Design, Sass...
XAMPP/MySQL Login Problem
Beitrag
<blockquote data-quote="Skizer" data-source="post: 1592200" data-attributes="member: 149171"><p><strong>AW: XAMPP/MySQL Login Problem</strong></p><p></p><p></p><p></p><p>ist alles genau so da drinne</p><p></p><p>hab hier mal meine ganze config.inc.php datei</p><p></p><p>[php]<?php</p><p>/*</p><p> * This is needed for cookie based authentication to encrypt password in</p><p> * cookie</p><p> */</p><p>$cfg['blowfish_secret'] = 'xampp'; /* YOU SHOULD CHANGE THIS FOR A MORE SECURE COOKIE AUTH! */</p><p></p><p>/*</p><p> * Servers configuration</p><p> */</p><p>$i = 0;</p><p></p><p>/*</p><p> * First server</p><p> */</p><p>$i++;</p><p></p><p>/* Authentication type and info */</p><p>$cfg['Servers'][$i]['auth_type'] = 'config';</p><p>$cfg['Servers'][$i]['user'] = 'root';</p><p>$cfg['Servers'][$i]['password'] = '';</p><p>$cfg['Servers'][$i]['AllowNoPassword'] = true;</p><p></p><p>/* Server parameters */</p><p>$cfg['Servers'][$i]['host'] = 'localhost';</p><p>$cfg['Servers'][$i]['connect_type'] = 'tcp';</p><p>$cfg['Servers'][$i]['compress'] = false;</p><p></p><p>/* Select mysqli if your server has it */</p><p>$cfg['Servers'][$i]['extension'] = 'mysqli';</p><p></p><p>/* User for advanced features */</p><p>$cfg['Servers'][$i]['controluser'] = 'pma';</p><p>$cfg['Servers'][$i]['controlpass'] = '';</p><p></p><p>/* Advanced phpMyAdmin features */</p><p>$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';</p><p>$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';</p><p>$cfg['Servers'][$i]['relation'] = 'pma_relation';</p><p>$cfg['Servers'][$i]['table_info'] = 'pma_table_info';</p><p>$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';</p><p>$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';</p><p>$cfg['Servers'][$i]['column_info'] = 'pma_column_info';</p><p>$cfg['Servers'][$i]['history'] = 'pma_history';</p><p>$cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';</p><p></p><p>/*</p><p> * End of servers configuration</p><p> */</p><p></p><p>/*</p><p> * Directories for saving/loading files from server</p><p> */</p><p>$cfg['UploadDir'] = '';</p><p>$cfg['SaveDir'] = '';</p><p></p><p>$cfg['AllowAnywhereRecoding'] = true;</p><p>$cfg['DefaultCharset'] = 'utf-8';</p><p>$cfg['DefaultLang'] = 'en-utf-8';</p><p>$cfg['DefaultConnectionCollation'] = 'utf8_general_ci';</p><p></p><p>$cfg['MySQLManualBase'] = 'http://dev.mysql.com/doc/refman/5.1/en';</p><p>$cfg['MySQLManualType'] = 'searchable';</p><p></p><p>?></p><p>[/php]</p><p></p><p>gibt es irgendwie eine methode mit der man komplett xampp mit mysql reseten kann oder komplett vom system entfernen?</p></blockquote><p></p>
[QUOTE="Skizer, post: 1592200, member: 149171"] [b]AW: XAMPP/MySQL Login Problem[/b] ist alles genau so da drinne hab hier mal meine ganze config.inc.php datei [php]<?php /* * This is needed for cookie based authentication to encrypt password in * cookie */ $cfg['blowfish_secret'] = 'xampp'; /* YOU SHOULD CHANGE THIS FOR A MORE SECURE COOKIE AUTH! */ /* * Servers configuration */ $i = 0; /* * First server */ $i++; /* Authentication type and info */ $cfg['Servers'][$i]['auth_type'] = 'config'; $cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = ''; $cfg['Servers'][$i]['AllowNoPassword'] = true; /* Server parameters */ $cfg['Servers'][$i]['host'] = 'localhost'; $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['compress'] = false; /* Select mysqli if your server has it */ $cfg['Servers'][$i]['extension'] = 'mysqli'; /* User for advanced features */ $cfg['Servers'][$i]['controluser'] = 'pma'; $cfg['Servers'][$i]['controlpass'] = ''; /* Advanced phpMyAdmin features */ $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin'; $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark'; $cfg['Servers'][$i]['relation'] = 'pma_relation'; $cfg['Servers'][$i]['table_info'] = 'pma_table_info'; $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords'; $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages'; $cfg['Servers'][$i]['column_info'] = 'pma_column_info'; $cfg['Servers'][$i]['history'] = 'pma_history'; $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords'; /* * End of servers configuration */ /* * Directories for saving/loading files from server */ $cfg['UploadDir'] = ''; $cfg['SaveDir'] = ''; $cfg['AllowAnywhereRecoding'] = true; $cfg['DefaultCharset'] = 'utf-8'; $cfg['DefaultLang'] = 'en-utf-8'; $cfg['DefaultConnectionCollation'] = 'utf8_general_ci'; $cfg['MySQLManualBase'] = 'http://dev.mysql.com/doc/refman/5.1/en'; $cfg['MySQLManualType'] = 'searchable'; ?> [/php] gibt es irgendwie eine methode mit der man komplett xampp mit mysql reseten kann oder komplett vom system entfernen? [/QUOTE]
Bilder bitte
hier hochladen
und danach über das Bild-Icon (Direktlink vorher kopieren) platzieren.
Zitate einfügen…
Authentifizierung
Wenn ★ = 12, ◇ = 4 und die Hälfte von ★ zu ◇ addiert wird, was ist das Ergebnis?
Antworten
Start
Forum
Sonstiges
Webdesign, Webentwicklung & Programmierung
Webdesign: HTML/CSS, Responsive Design, Sass...
XAMPP/MySQL Login Problem
Oben