Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
197 views
in Q2A Core by

i dont know how to install my q2a please someone can help me ???

 

 
define('QA_MYSQL_HOSTNAME', '127.0.0.1'); // try '127.0.0.1' or 'localhost' if MySQL on same server
define('QA_MYSQL_USERNAME', 'your-mysql-username');
define('QA_MYSQL_PASSWORD', 'your-mysql-password');
define('QA_MYSQL_DATABASE', 'your-mysql-db-name');
 
 
 
what i put there !!??
 

1 Answer

0 votes
by
If you are using typical web hosting, you can probably leave the first line as it is.

The remaining lines are for the database you must set up for Q2A to work - the username, password and database name.

If your hosting provider gives you a way to create MySQL databases, you should create one. Perhaps call it "myq2a". Then when it asks for a username and password, choose one: maybe "q2a" for the username, and something secret for the password.

Then you put these entries in your qa-config.php, and that is pretty much all you will need to do. If you visit the homepage of the site where you have installed Q2A, the installation process will do the rest.
...