Search
 
SCRIPT & CODE EXAMPLE
 

SQL

how to check xampp mysql password

Open the file C:xamppphpMyAdminconfig.inc.php in your favorite text editor. Search for the string:

$cfg['Servers'][$i]['password'] = ''; and change it to like this, 
$cfg['Servers'][$i]['password'] = 'password'; Here the ‘password’ is what we set to the root user using the SQL query.
$cfg['Servers'][$i]['AllowNoPassword'] = false; // set to false for password required
$cfg['Servers'][$i]['auth_type'] = 'cookie'; // web cookie auth
Comment

PREVIOUS NEXT
Code Example
Sql :: how to use a database to see tables mysql 
Sql :: SQL: merging multiple row data in string 
Sql :: how to remove a column from a table in MySQL 
Sql :: grant all privileges mysql 
Sql :: postgresql get last 10 records 
Sql :: oracle auto_increment 
Sql :: docker open terminal mysql server 
Sql :: contains word in sql 
Sql :: oracle pl sql source 
Sql :: postgres group by 10 minute intervals 
Sql :: date formats in sql server 
Sql :: insert data in pgsql 
Sql :: select index table oracle 
Sql :: restore postgres database from dump 
Sql :: mysql inner join 3 tables 
Sql :: sql backup database statement 
Sql :: mysql docker image for macbook m1 
Sql :: mysql trim 
Sql :: oracle sql date get month 
Sql :: pl/sql loop example 
Sql :: Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates. 
Sql :: snowflake datetrunc month 
Sql :: sql delete row with auto increment 
Sql :: postgresql insert column 
Sql :: mysql change password 
Sql :: sql select into 
Sql :: select into temp table 
Sql :: mysql datetime to date 
Sql :: where id is in list sql 
Sql :: show all event schedular on mysql 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =