Page 1 of 1

windows 10

PostPosted: 25. August 2015 18:51
by mauritius123
ver 3.2.1

Hey guys just a quick help from you. I have been having problems with the port and I adopted the 8080 and 4433 solutions. then I go to localhost:8080 but i do not have the options for security. any hints guys?

Re: windows 10

PostPosted: 25. August 2015 21:29
by Nobbie
The old menu (including the "security") has been removed. Xampp is secured out of the box for development.

Re: windows 10

PostPosted: 26. August 2015 03:49
by mauritius123
thanks for the reply. so, how do i get the same option to work out the security? for instance, if i need to work out the password for the database.

Re: windows 10

PostPosted: 26. August 2015 08:14
by Altrea

Re: windows 10

PostPosted: 26. August 2015 19:13
by mauritius123
thank you very much.

one another question. if i follow the steps which I have already done it'll be for only 1 website.
what if i want to work different websites within the xampp folder for different projects and i need different database. how would i be able to put a password/login for each and every database through this steps. as in this link i haven't created any database yet.

Re: windows 10

PostPosted: 26. August 2015 20:23
by Altrea
Databases don't have Passwords, Users have Passwords and Users can have permissions on Databases.

To create a database you could use this MySQL CLI command
Code: Select all
CREATE DATABASE mynewdatabase;


Instead of the SET PASSWORD command you can use a CREATE USER command, like so
Code: Select all
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';


after that you would GRANT him access to a database like so
Code: Select all
GRANT USAGE ON mynewdatabase.* TO 'newuser'@'localhost';


If the commandline is not your best friend all of this is maybe easier for you with phpmyadmin.